Parse on load add using declaratively ChildWidget.

master
Tomasz Półgrabia 2021-12-19 15:05:22 +01:00
parent 1a2b04bd6c
commit 4407cd934d
5 changed files with 31 additions and 15 deletions

View File

@ -8,12 +8,12 @@
<!--dojoConfig--> <!--dojoConfig-->
<script> <script>
var dojoConfig = { var dojoConfig = {
parseOnLoad: false, parseOnLoad: true,
async: true, async: true,
cacheBust: true, // Get "fresh" resources, cacheBust: true, // Get "fresh" resources,
baseUrl: "/app", baseUrl: "/app",
packages: [ packages: [
{name: "dojo", location: "/node_modules/dojo"} {name: "dojo", location: "/node_modules/dojo"},
{name: "dojox", location: "/node_modules/dojox"}, {name: "dojox", location: "/node_modules/dojox"},
{name: "dijit", location: "/node_modules/dijit"}, {name: "dijit", location: "/node_modules/dijit"},
] ]

View File

@ -0,0 +1,11 @@
define([
"dijit/_TemplatedMixin",
"dijit/_WidgetBase",
"dojo/_base/declare"
], function(_TemplatedMixin, _WidgetBase, declare, template) {
return declare("app/widgets/ChildWidget", [_WidgetBase, _TemplatedMixin], {
templateString: "<div>"
+ "ChildWidget!!!"
+ "</div>"
});
});

View File

@ -1,3 +0,0 @@
<div>
Hello World!!!
</div>

View File

@ -1,10 +1,16 @@
define([ define([
"dijit/_TemplatedMixin", "dijit/_TemplatedMixin",
"dijit/_AttachMixin",
"dijit/_WidgetBase", "dijit/_WidgetBase",
"dojo/_base/declare", "dojo/_base/declare"
"dojo/text!./MainWidget.html" ], function(_TemplatedMixin, _AttachMixin, _WidgetBase, declare, template) {
], function(_TemplatedMixin, _WidgetBase, declare, template) { return declare("app/widgets/MainWidget", [_WidgetBase, _AttachMixin, _TemplatedMixin], {
return declare("app/widgets/MainWidget", [_WidgetBase, _TemplatedMixin], { templateString: "<div>"
templateString: template // + "Hello World!!! <input data-dojo-type=\"dijit/form/TextBox\" />"
// this works as it's dijit
+ "<div data-dojo-type=\"./ChildWidget\"></div>"
// this doesn't work as it's trying to fetch ./node_modules/dojo/ChildWidget which seems to be
// relative to dojo/parser dojo/parser
+ "</div>"
}); });
}); });

View File

@ -8,14 +8,14 @@
<!--dojoConfig--> <!--dojoConfig-->
<script> <script>
var dojoConfig = { var dojoConfig = {
parseOnLoad: false, parseOnLoad: true,
async: true, async: true,
cacheBust: true, // Get "fresh" resources, cacheBust: true, // Get "fresh" resources,
baseUrl: "/app", baseUrl: "/app",
packages: [ packages: [
{name: "dojo", location: "/node_modules/dojo"} {name: "dojo", location: "/node_modules/dojo"},
{name: "dojox", location: "/node_modules/x/dojox"}, {name: "dojox", location: "/node_modules/dojox"},
{name: "dijit", location: "/node_modules/x/dijit"}, {name: "dijit", location: "/node_modules/dijit"}
] ]
}; };
</script> </script>
@ -26,9 +26,11 @@
<script> <script>
require([ require([
"dojo/dom", "dojo/dom",
"dojo/parser",
"app/widgets/MainWidget.js", "app/widgets/MainWidget.js",
"dojo/domReady!" "dojo/domReady!"
], function (dom, MainWidget) { ], function (dom, parser, MainWidget) {
parser.parse(); // parseOnLoad: true doesn't run this. Why???
var greeting = dom.byId('root'); var greeting = dom.byId('root');
var widget = new MainWidget(); var widget = new MainWidget();
widget.placeAt(greeting); widget.placeAt(greeting);