|
@@ -42,8 +42,8 @@ class VWF {
|
|
|
this.isLuminary = connectionConf.luminary;
|
|
|
this.isLuminaryGlobalHB = connectionConf.luminaryHB;
|
|
|
this.luminaryGlobalHBPath = connectionConf.luminaryGlobalHBPath;
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
this.luminary = new Luminary;
|
|
|
this.reflectorClient = new ReflectorClient;
|
|
|
this.virtualTime = new VirtualTime;
|
|
@@ -62,7 +62,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- this.configuration = {
|
|
|
+ this.configuration = {
|
|
|
"log-level": "info",
|
|
|
"random-seed": +new Date,
|
|
|
"randomize-ids": true,
|
|
@@ -71,7 +71,7 @@ class VWF {
|
|
|
"load-timeout": 30
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -88,11 +88,11 @@ class VWF {
|
|
|
this.utility = new Utility;
|
|
|
|
|
|
this.viewModule = new Fabric({
|
|
|
- id:"vwf/view"
|
|
|
+ id: "vwf/view"
|
|
|
}, 'View');
|
|
|
|
|
|
this.modelModule = new Fabric({
|
|
|
- id:"vwf/model"
|
|
|
+ id: "vwf/model"
|
|
|
}, 'Model');
|
|
|
|
|
|
|
|
@@ -102,7 +102,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- this.logger = (new Logger).for("vwf", this, this.configuration["log-level"] );
|
|
|
+ this.logger = (new Logger).for("vwf", this, this.configuration["log-level"]);
|
|
|
|
|
|
|
|
|
|
|
@@ -823,6 +823,10 @@ class VWF {
|
|
|
this.globals[nodeID] = undefined;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
return this.existing[nodeID] = {
|
|
@@ -1047,7 +1051,7 @@ class VWF {
|
|
|
|
|
|
var initializers = {
|
|
|
model: [
|
|
|
- {
|
|
|
+ {
|
|
|
library: "/core/vwf/model/ohm",
|
|
|
active: true
|
|
|
},
|
|
@@ -1107,71 +1111,71 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- let configLibraries = this.driverConfiguration;
|
|
|
+ let configLibraries = this.driverConfiguration;
|
|
|
|
|
|
- if (configLibraries && typeof configLibraries == "object") {
|
|
|
- if (typeof configLibraries.configuration == "object") {
|
|
|
- applicationConfig = configLibraries.configuration;
|
|
|
+ if (configLibraries && typeof configLibraries == "object") {
|
|
|
+ if (typeof configLibraries.configuration == "object") {
|
|
|
+ applicationConfig = configLibraries.configuration;
|
|
|
+ }
|
|
|
+ Object.keys(configLibraries).forEach(function (libraryType) {
|
|
|
+ if (libraryType == 'info' && configLibraries[libraryType]["title"]) {
|
|
|
+
|
|
|
+ document.querySelector('title').innerHTML = configLibraries[libraryType]["title"]
|
|
|
}
|
|
|
- Object.keys(configLibraries).forEach(function (libraryType) {
|
|
|
- if (libraryType == 'info' && configLibraries[libraryType]["title"]) {
|
|
|
-
|
|
|
- document.querySelector('title').innerHTML = configLibraries[libraryType]["title"]
|
|
|
- }
|
|
|
- if (!userLibraries[libraryType]) {
|
|
|
- userLibraries[libraryType] = {};
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- Object.keys(configLibraries[libraryType]).forEach(function (libraryName) {
|
|
|
- var disabled = false;
|
|
|
- if (!disabled) {
|
|
|
- if (userLibraries[libraryType][libraryName] == undefined) {
|
|
|
- userLibraries[libraryType][libraryName] = configLibraries[libraryType][libraryName];
|
|
|
- } else if (typeof userLibraries[libraryType][libraryName] == "object" && typeof configLibraries[libraryType][libraryName] == "object") {
|
|
|
- userLibraries[libraryType][libraryName] = Object.assign({}, configLibraries[libraryType][libraryName], userLibraries[libraryType][libraryName]);
|
|
|
- }
|
|
|
+ if (!userLibraries[libraryType]) {
|
|
|
+ userLibraries[libraryType] = {};
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ Object.keys(configLibraries[libraryType]).forEach(function (libraryName) {
|
|
|
+ var disabled = false;
|
|
|
+ if (!disabled) {
|
|
|
+ if (userLibraries[libraryType][libraryName] == undefined) {
|
|
|
+ userLibraries[libraryType][libraryName] = configLibraries[libraryType][libraryName];
|
|
|
+ } else if (typeof userLibraries[libraryType][libraryName] == "object" && typeof configLibraries[libraryType][libraryName] == "object") {
|
|
|
+ userLibraries[libraryType][libraryName] = Object.assign({}, configLibraries[libraryType][libraryName], userLibraries[libraryType][libraryName]);
|
|
|
}
|
|
|
- });
|
|
|
+ }
|
|
|
});
|
|
|
- }
|
|
|
+ });
|
|
|
+ }
|
|
|
|
|
|
|
|
|
- Object.keys(userLibraries).forEach(function (libraryType) {
|
|
|
- if (initializers[libraryType]) {
|
|
|
- Object.keys(userLibraries[libraryType]).forEach(function (libraryName) {
|
|
|
-
|
|
|
-
|
|
|
+ Object.keys(userLibraries).forEach(function (libraryType) {
|
|
|
+ if (initializers[libraryType]) {
|
|
|
+ Object.keys(userLibraries[libraryType]).forEach(function (libraryName) {
|
|
|
+
|
|
|
+
|
|
|
|
|
|
- if(!initializers[libraryType][libraryName]){
|
|
|
+ if (!initializers[libraryType][libraryName]) {
|
|
|
|
|
|
- initializers[libraryType].unshift({'library': libraryName});
|
|
|
- initializers[libraryType][libraryName] = initializers[libraryType][0];
|
|
|
+ initializers[libraryType].unshift({ 'library': libraryName });
|
|
|
+ initializers[libraryType][libraryName] = initializers[libraryType][0];
|
|
|
|
|
|
- }
|
|
|
- initializers[libraryType][libraryName].active = true;
|
|
|
- if (userLibraries[libraryType][libraryName] && userLibraries[libraryType][libraryName] != "") {
|
|
|
- if (typeof initializers[libraryType][libraryName].parameters == "object") {
|
|
|
+ }
|
|
|
+ initializers[libraryType][libraryName].active = true;
|
|
|
+ if (userLibraries[libraryType][libraryName] && userLibraries[libraryType][libraryName] != "") {
|
|
|
+ if (typeof initializers[libraryType][libraryName].parameters == "object") {
|
|
|
|
|
|
- initializers[libraryType][libraryName].parameters = Object.assign({}, initializers[libraryType][libraryName].parameters, userLibraries[libraryType][libraryName]);
|
|
|
+ initializers[libraryType][libraryName].parameters = Object.assign({}, initializers[libraryType][libraryName].parameters, userLibraries[libraryType][libraryName]);
|
|
|
|
|
|
- } else {
|
|
|
- initializers[libraryType][libraryName].parameters = userLibraries[libraryType][libraryName];
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
- })
|
|
|
+ } else {
|
|
|
+ initializers[libraryType][libraryName].parameters = userLibraries[libraryType][libraryName];
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ })
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
self.initialize(self.applicationLoad, getActiveLibraries(initializers["model"], true), getActiveLibraries(initializers["view"], true), callback);
|
|
|
|
|
@@ -1267,7 +1271,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
let modelKernel = new ModelKernel({
|
|
|
- id:"vwf/kernel/model"
|
|
|
+ id: "vwf/kernel/model"
|
|
|
}).factory();
|
|
|
this.models.kernel = modelKernel.create(vwf);
|
|
|
|
|
@@ -1276,7 +1280,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
for (let modelInitializer of modelInitializers) {
|
|
|
-
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -1294,25 +1298,25 @@ class VWF {
|
|
|
}
|
|
|
|
|
|
let log = new Log({
|
|
|
- id:"vwf/model/stage/log"
|
|
|
+ id: "vwf/model/stage/log"
|
|
|
}).factory();
|
|
|
|
|
|
|
|
|
- var modelMod = undefined;
|
|
|
- await import(modelName+'.js').then(m=>{
|
|
|
- modelMod = (new m.default({
|
|
|
- id: modelName
|
|
|
- }).factory())
|
|
|
- });
|
|
|
-
|
|
|
-
|
|
|
- var model = modelMod.create(
|
|
|
- this.models.kernel,
|
|
|
- [log],
|
|
|
-
|
|
|
- {},
|
|
|
- [].concat(modelArguments || [])
|
|
|
- );
|
|
|
+ var modelMod = undefined;
|
|
|
+ await import(modelName + '.js').then(m => {
|
|
|
+ modelMod = (new m.default({
|
|
|
+ id: modelName
|
|
|
+ }).factory())
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
+ var model = modelMod.create(
|
|
|
+ this.models.kernel,
|
|
|
+ [log],
|
|
|
+
|
|
|
+ {},
|
|
|
+ [].concat(modelArguments || [])
|
|
|
+ );
|
|
|
|
|
|
|
|
|
if (model) {
|
|
@@ -1348,7 +1352,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
let viewKernel = new ViewKernel({
|
|
|
- id:"vwf/kernel/view"
|
|
|
+ id: "vwf/kernel/view"
|
|
|
}).factory();
|
|
|
|
|
|
this.views.kernel = viewKernel.create(vwf);
|
|
@@ -1357,8 +1361,8 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- for( let viewInitializer of viewInitializers) {
|
|
|
-
|
|
|
+ for (let viewInitializer of viewInitializers) {
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -1396,39 +1400,39 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
- var modelPeer = this.models.actual[viewName.replace("view/", "model/")];
|
|
|
-
|
|
|
-
|
|
|
- var viewMod = undefined;
|
|
|
- await import(viewName +'.js').then(m=>{
|
|
|
- viewMod = (new m.default({
|
|
|
- id: viewName
|
|
|
- }).factory())
|
|
|
- })
|
|
|
-
|
|
|
- var view = viewMod.create(
|
|
|
- this.views.kernel,
|
|
|
- [],
|
|
|
- modelPeer && modelPeer.state || {},
|
|
|
- [].concat(viewArguments || [])
|
|
|
- );
|
|
|
+
|
|
|
|
|
|
+ var modelPeer = this.models.actual[viewName.replace("view/", "model/")];
|
|
|
|
|
|
|
|
|
- if (view) {
|
|
|
- this.views.push(view);
|
|
|
- this.views[viewName] = view;
|
|
|
+ var viewMod = undefined;
|
|
|
+ await import(viewName + '.js').then(m => {
|
|
|
+ viewMod = (new m.default({
|
|
|
+ id: viewName
|
|
|
+ }).factory())
|
|
|
+ })
|
|
|
|
|
|
- if (view.compatibilityStatus) {
|
|
|
- if (!view.compatibilityStatus.compatible) {
|
|
|
- compatibilityStatus.compatible = false;
|
|
|
- Object.assign(compatibilityStatus.errors, view.compatibilityStatus.errors);
|
|
|
-
|
|
|
- }
|
|
|
+ var view = viewMod.create(
|
|
|
+ this.views.kernel,
|
|
|
+ [],
|
|
|
+ modelPeer && modelPeer.state || {},
|
|
|
+ [].concat(viewArguments || [])
|
|
|
+ );
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ if (view) {
|
|
|
+ this.views.push(view);
|
|
|
+ this.views[viewName] = view;
|
|
|
+
|
|
|
+ if (view.compatibilityStatus) {
|
|
|
+ if (!view.compatibilityStatus.compatible) {
|
|
|
+ compatibilityStatus.compatible = false;
|
|
|
+ Object.assign(compatibilityStatus.errors, view.compatibilityStatus.errors);
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
|
@@ -1480,8 +1484,8 @@ class VWF {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- this.luminary.subscribeOnHeartbeat(heartbeat);
|
|
|
- this.luminary.subscribeOnMessages();
|
|
|
+ this.luminary.subscribeOnHeartbeat(heartbeat);
|
|
|
+ this.luminary.subscribeOnMessages();
|
|
|
|
|
|
|
|
|
} else {
|
|
@@ -1517,7 +1521,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- setState(appState, callback_async ) {
|
|
|
+ setState(appState, callback_async ) {
|
|
|
let self = this;
|
|
|
|
|
|
this.logger.debuggx("setState");
|
|
@@ -1548,7 +1552,7 @@ class VWF {
|
|
|
|
|
|
var nodeIndex = 0;
|
|
|
|
|
|
- async.forEachSeries(nodes, function (nodeComponent, each_callback_async /* ( err ) */ ) {
|
|
|
+ async.forEachSeries(nodes, function (nodeComponent, each_callback_async /* ( err ) */) {
|
|
|
|
|
|
|
|
|
|
|
@@ -1710,7 +1714,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- createNode (nodeComponent, nodeAnnotation, baseURI, callback_async ) {
|
|
|
+ createNode(nodeComponent, nodeAnnotation, baseURI, callback_async ) {
|
|
|
|
|
|
let self = this;
|
|
|
|
|
@@ -1751,7 +1755,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- function (series_callback_async /* ( err, results ) */ ) {
|
|
|
+ function (series_callback_async /* ( err, results ) */) {
|
|
|
|
|
|
if (self.componentIsURI(nodeComponent)) {
|
|
|
|
|
@@ -1818,7 +1822,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- function (series_callback_async /* ( err, results ) */ ) {
|
|
|
+ function (series_callback_async /* ( err, results ) */) {
|
|
|
|
|
|
if (self.componentIsDescriptor(nodeComponent) && nodeComponent.includes && self.componentIsURI(nodeComponent.includes)) {
|
|
|
|
|
@@ -1842,7 +1846,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- function (series_callback_async /* ( err, results ) */ ) {
|
|
|
+ function (series_callback_async /* ( err, results ) */) {
|
|
|
|
|
|
if (self.componentIsDescriptor(nodeComponent)) {
|
|
|
|
|
@@ -1863,7 +1867,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- function (series_callback_async /* ( err, results ) */ ) {
|
|
|
+ function (series_callback_async /* ( err, results ) */) {
|
|
|
|
|
|
if (self.componentIsID(nodeComponent) || self.components[nodeComponent] instanceof Array) {
|
|
|
|
|
@@ -1916,7 +1920,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- deleteNode (nodeID) {
|
|
|
+ deleteNode(nodeID, replaceFlag) {
|
|
|
let self = this;
|
|
|
|
|
|
this.logger.debuggx("deleteNode", nodeID);
|
|
@@ -1952,8 +1956,7 @@ class VWF {
|
|
|
});
|
|
|
|
|
|
|
|
|
- self.children(nodeID).forEach(function(child)
|
|
|
- {
|
|
|
+ self.children(nodeID).forEach(function (child) {
|
|
|
self.deleteNode(child);
|
|
|
});
|
|
|
|
|
@@ -1962,7 +1965,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
this.models.forEach(function (model) {
|
|
|
- model.deletingNode && model.deletingNode(nodeID);
|
|
|
+ model.deletingNode && model.deletingNode(nodeID, replaceFlag);
|
|
|
});
|
|
|
|
|
|
|
|
@@ -1990,7 +1993,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- setNode (nodeID, nodeComponent, callback_async ) {
|
|
|
+ setNode(nodeID, nodeComponent, callback_async ) {
|
|
|
|
|
|
let self = this;
|
|
|
self.logger.debuggx("setNode", function () {
|
|
@@ -2023,6 +2026,11 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
var creating = !node.properties.has(propertyName);
|
|
|
|
|
|
|
|
@@ -2084,13 +2092,13 @@ class VWF {
|
|
|
|
|
|
async.series([
|
|
|
|
|
|
- function (series_callback_async /* ( err, results ) */ ) {
|
|
|
+ function (series_callback_async /* ( err, results ) */) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- async.forEach(Object.keys(nodeComponent.children || {}), function (childName, each_callback_async /* ( err ) */ ) {
|
|
|
+ async.forEach(Object.keys(nodeComponent.children || {}), function (childName, each_callback_async /* ( err ) */) {
|
|
|
|
|
|
var creating = !self.nodeHasOwnChild.call(self, nodeID, childName);
|
|
|
if (creating) {
|
|
@@ -2105,23 +2113,47 @@ class VWF {
|
|
|
});
|
|
|
}
|
|
|
}, function (err) /* async */ {
|
|
|
- let deletedProtoNodes = nodeComponent.childrenDeleted;
|
|
|
-
|
|
|
- if (deletedProtoNodes) {
|
|
|
- let childNames = Object.keys(nodeComponent.childrenDeleted)
|
|
|
- if (childNames) {
|
|
|
- childNames.forEach(el => {
|
|
|
- console.log("DELETE CHILD HERE!: ", el);
|
|
|
- self.deleteChild(nodeID, el);
|
|
|
- });
|
|
|
- }
|
|
|
+ let deletedProtoNodes = nodeComponent.childrenDeleted;
|
|
|
+
|
|
|
+ if (deletedProtoNodes) {
|
|
|
+ let childNames = Object.keys(nodeComponent.childrenDeleted)
|
|
|
+ if (childNames) {
|
|
|
+ childNames.forEach(el => {
|
|
|
+ console.log("DELETE CHILD HERE!: ", el);
|
|
|
+
|
|
|
+
|
|
|
+ var indm = false;
|
|
|
+ for (const prop in nodeComponent.children) {
|
|
|
+ if (nodeComponent.children[prop].properties && nodeComponent.children[prop].properties.displayName) {
|
|
|
+
|
|
|
+ if (nodeComponent.children[prop].properties.displayName == el ||
|
|
|
+ nodeComponent.children[prop].properties.displayName.value == el) {
|
|
|
+ indm = true;
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ } else {
|
|
|
+ indm = false;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ if (nodeComponent.children && !nodeComponent.children[el] && indm) {
|
|
|
+ self.deleteChild(nodeID, el, true)
|
|
|
+ } else {
|
|
|
+ self.deleteChild(nodeID, el)
|
|
|
+ }
|
|
|
+
|
|
|
+ });
|
|
|
}
|
|
|
+ }
|
|
|
series_callback_async(err, undefined);
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
- function (series_callback_async /* ( err, results ) */ ) {
|
|
|
+ function (series_callback_async /* ( err, results ) */) {
|
|
|
|
|
|
|
|
|
|
|
@@ -2133,7 +2165,7 @@ class VWF {
|
|
|
|
|
|
var baseURI = self.uri(nodeID, true);
|
|
|
|
|
|
- async.map(scripts, function (script, map_callback_async /* ( err, result ) */ ) {
|
|
|
+ async.map(scripts, function (script, map_callback_async /* ( err, result ) */) {
|
|
|
|
|
|
if (self.valueHasType(script)) {
|
|
|
if (script.source) {
|
|
@@ -2298,6 +2330,14 @@ class VWF {
|
|
|
prop.set = ""
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ if(prop.get == "" && prop.set == ""){
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ prop = prop.value;
|
|
|
+ }
|
|
|
+
|
|
|
nodeComponent.properties[el] = prop
|
|
|
}
|
|
|
})
|
|
@@ -2402,13 +2442,13 @@ class VWF {
|
|
|
delete nodeComponent.children[childName];
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
|
|
|
|
|
|
nodeComponent.childrenDeleted = {};
|
|
|
|
|
|
Object.keys(node.childsDeleted).forEach((childName) => {
|
|
|
- nodeComponent.childrenDeleted[childName] = null;
|
|
|
+ nodeComponent.childrenDeleted[childName] = null
|
|
|
patched = true;
|
|
|
});
|
|
|
|
|
@@ -2521,7 +2561,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- createChild(nodeID, childName, childComponent, childURI, callback_async ) {
|
|
|
+ createChild(nodeID, childName, childComponent, childURI, callback_async ) {
|
|
|
|
|
|
let self = this;
|
|
|
|
|
@@ -2582,7 +2622,7 @@ class VWF {
|
|
|
|
|
|
async.series([
|
|
|
|
|
|
- function (series_callback_async /* ( err, results ) */ ) {
|
|
|
+ function (series_callback_async /* ( err, results ) */) {
|
|
|
|
|
|
|
|
|
|
|
@@ -2642,14 +2682,14 @@ class VWF {
|
|
|
|
|
|
},
|
|
|
|
|
|
- function (series_callback_async /* ( err, results ) */ ) {
|
|
|
+ function (series_callback_async /* ( err, results ) */) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async.parallel([
|
|
|
|
|
|
- function (parallel_callback_async /* ( err, results ) */ ) {
|
|
|
+ function (parallel_callback_async /* ( err, results ) */) {
|
|
|
|
|
|
|
|
|
|
|
@@ -2685,13 +2725,13 @@ class VWF {
|
|
|
|
|
|
},
|
|
|
|
|
|
- function (parallel_callback_async /* ( err, results ) */ ) {
|
|
|
+ function (parallel_callback_async /* ( err, results ) */) {
|
|
|
|
|
|
|
|
|
|
|
|
var behaviorComponents = childComponent.implements ? [].concat(childComponent.implements) : [];
|
|
|
|
|
|
- async.map(behaviorComponents, function (behaviorComponent, map_callback_async /* ( err, result ) */ ) {
|
|
|
+ async.map(behaviorComponents, function (behaviorComponent, map_callback_async /* ( err, result ) */) {
|
|
|
self.createNode(behaviorComponent, undefined, baseURI, function (behaviorID) /* async */ {
|
|
|
map_callback_async(undefined, behaviorID);
|
|
|
});
|
|
@@ -2708,7 +2748,7 @@ class VWF {
|
|
|
|
|
|
},
|
|
|
|
|
|
- function (series_callback_async /* ( err, results ) */ ) {
|
|
|
+ function (series_callback_async /* ( err, results ) */) {
|
|
|
|
|
|
|
|
|
|
|
@@ -2743,7 +2783,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- async.forEachSeries(self.models, function (model, each_callback_async /* ( err ) */ ) {
|
|
|
+ async.forEachSeries(self.models, function (model, each_callback_async /* ( err ) */) {
|
|
|
|
|
|
var driver_ready = true;
|
|
|
var timeoutID;
|
|
@@ -2788,12 +2828,12 @@ class VWF {
|
|
|
|
|
|
},
|
|
|
|
|
|
- function (series_callback_async /* ( err, results ) */ ) {
|
|
|
+ function (series_callback_async /* ( err, results ) */) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- async.forEach(self.views, function (view, each_callback_async /* ( err ) */ ) {
|
|
|
+ async.forEach(self.views, function (view, each_callback_async /* ( err ) */) {
|
|
|
|
|
|
var driver_ready = true;
|
|
|
var timeoutID;
|
|
@@ -2834,7 +2874,7 @@ class VWF {
|
|
|
|
|
|
},
|
|
|
|
|
|
- function (series_callback_async /* ( err, results ) */ ) {
|
|
|
+ function (series_callback_async /* ( err, results ) */) {
|
|
|
|
|
|
|
|
|
|
|
@@ -2927,7 +2967,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- async.forEach(Object.keys(childComponent.children || {}), function (childName, each_callback_async /* ( err ) */ ) {
|
|
|
+ async.forEach(Object.keys(childComponent.children || {}), function (childName, each_callback_async /* ( err ) */) {
|
|
|
var childValue = childComponent.children[childName];
|
|
|
|
|
|
self.createChild(childID, childName, childValue, undefined, function (childID) /* async */ {
|
|
@@ -2940,7 +2980,7 @@ class VWF {
|
|
|
|
|
|
},
|
|
|
|
|
|
- function (series_callback_async /* ( err, results ) */ ) {
|
|
|
+ function (series_callback_async /* ( err, results ) */) {
|
|
|
|
|
|
|
|
|
|
|
@@ -2950,7 +2990,7 @@ class VWF {
|
|
|
|
|
|
var scripts = childComponent.scripts ? [].concat(childComponent.scripts) : [];
|
|
|
|
|
|
- async.map(scripts, function (script, map_callback_async /* ( err, result ) */ ) {
|
|
|
+ async.map(scripts, function (script, map_callback_async /* ( err, result ) */) {
|
|
|
|
|
|
if (self.valueHasType(script)) {
|
|
|
if (script.source) {
|
|
@@ -3022,7 +3062,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
async.forEachSeries(self.prototypes(childID, true).reverse().concat(childID),
|
|
|
- function (childInitializingNodeID, each_callback_async /* err */ ) {
|
|
|
+ function (childInitializingNodeID, each_callback_async /* err */) {
|
|
|
|
|
|
|
|
|
|
|
@@ -3127,14 +3167,14 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- deleteChild(nodeID, childName) {
|
|
|
+ deleteChild(nodeID, childName, replaceFlag) {
|
|
|
|
|
|
var childID = this.children(nodeID).filter(function (childID) {
|
|
|
return this.name(childID) === childName;
|
|
|
}, this)[0];
|
|
|
|
|
|
if (childID !== undefined) {
|
|
|
- return this.deleteNode(childID);
|
|
|
+ return this.deleteNode(childID, replaceFlag);
|
|
|
}
|
|
|
|
|
|
}
|
|
@@ -3730,23 +3770,23 @@ class VWF {
|
|
|
|
|
|
if (propertyValue === undefined && !ignorePrototype) {
|
|
|
|
|
|
- if(this.behaviors(nodeID)){
|
|
|
-
|
|
|
- this.behaviors(nodeID).reverse().concat(this.prototype(nodeID)).
|
|
|
- some(function (prototypeID, prototypeIndex, prototypeArray) {
|
|
|
+ if (this.behaviors(nodeID)) {
|
|
|
|
|
|
- if (prototypeIndex < prototypeArray.length - 1) {
|
|
|
- propertyValue = this.getProperty(prototypeID, propertyName, true);
|
|
|
- } else if (prototypeID !== this.kutility.protoNodeURI) {
|
|
|
- propertyValue = this.getProperty(prototypeID, propertyName);
|
|
|
- }
|
|
|
+ this.behaviors(nodeID).reverse().concat(this.prototype(nodeID)).
|
|
|
+ some(function (prototypeID, prototypeIndex, prototypeArray) {
|
|
|
|
|
|
- return propertyValue !== undefined;
|
|
|
+ if (prototypeIndex < prototypeArray.length - 1) {
|
|
|
+ propertyValue = this.getProperty(prototypeID, propertyName, true);
|
|
|
+ } else if (prototypeID !== this.kutility.protoNodeURI) {
|
|
|
+ propertyValue = this.getProperty(prototypeID, propertyName);
|
|
|
+ }
|
|
|
|
|
|
- }, this);
|
|
|
+ return propertyValue !== undefined;
|
|
|
+
|
|
|
+ }, this);
|
|
|
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
|
|
|
|
|
|
|
|
@@ -4524,7 +4564,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- execute(nodeID, scriptText, scriptType, callback_async ) {
|
|
|
+ execute(nodeID, scriptText, scriptType, callback_async ) {
|
|
|
|
|
|
let self = this;
|
|
|
|
|
@@ -4942,7 +4982,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- find(nodeID, matchPattern, initializedOnly, callback ) {
|
|
|
+ find(nodeID, matchPattern, initializedOnly, callback ) {
|
|
|
|
|
|
|
|
|
|
|
@@ -4996,7 +5036,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- findClients(nodeID, matchPattern, callback ) {
|
|
|
+ findClients(nodeID, matchPattern, callback ) {
|
|
|
|
|
|
this.logger.warn("`kernel.findClients` is deprecated. Use " +
|
|
|
"`kernel.find( nodeID, \"doc('proxy/clients.vwf')/pattern\" )`" +
|
|
@@ -5050,7 +5090,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- loadComponent(nodeURI, baseURI, callback_async , errback_async ) {
|
|
|
+ loadComponent(nodeURI, baseURI, callback_async , errback_async ) {
|
|
|
|
|
|
let self = this;
|
|
|
|
|
@@ -5116,14 +5156,14 @@ class VWF {
|
|
|
} else {
|
|
|
var worldName = dbName.split('/')[1];
|
|
|
var fileName = dbName.split('/')[2];
|
|
|
-
|
|
|
+
|
|
|
|
|
|
- if(!fileName) {
|
|
|
+ if (!fileName) {
|
|
|
worldName = self.helpers.appPath
|
|
|
fileName = dbName + '_json';
|
|
|
- } else {
|
|
|
+ } else {
|
|
|
fileName = fileName + '_json';
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
let dbNode = _LCSDB.user(_LCS_WORLD_USER.pub).get('worlds').path(worldName).get(fileName);
|
|
|
|
|
@@ -5155,7 +5195,7 @@ class VWF {
|
|
|
|
|
|
|
|
|
|
|
|
- loadScript(scriptURI, baseURI, callback_async , errback_async ) {
|
|
|
+ loadScript(scriptURI, baseURI, callback_async , errback_async ) {
|
|
|
|
|
|
let self = this;
|
|
|
if (scriptURI.match(RegExp("^data:application/javascript;base64,"))) {
|
|
@@ -5198,8 +5238,13 @@ class VWF {
|
|
|
if (dbName.includes("proxy")) {
|
|
|
let proxyDB = self.proxy ? _LCSDB.user(self.proxy) : _LCSDB.user(_LCS_WORLD_USER.pub);
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+ let url = scriptURI.startsWith('/') ? scriptURI.substring(1) : fetchUrl;
|
|
|
+ let scrName = scriptURI.startsWith('/') ? url.split(".").join("_") : dbName;
|
|
|
+
|
|
|
|
|
|
- let fileName = dbName;
|
|
|
+ let fileName = scrName;
|
|
|
let dbNode = proxyDB.get('proxy').get(fileName);
|
|
|
let nodeProm = new Promise(res => dbNode.once(res))
|
|
|
|
|
@@ -5214,12 +5259,12 @@ class VWF {
|
|
|
} else {
|
|
|
var fileName = dbName.split('/')[2];
|
|
|
|
|
|
- if(!fileName) {
|
|
|
+ if (!fileName) {
|
|
|
worldName = self.helpers.appPath
|
|
|
fileName = dbName;
|
|
|
- } else {
|
|
|
+ } else {
|
|
|
fileName = fileName;
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
let dbNode = _LCSDB.user(_LCS_WORLD_USER.pub).get('worlds').path(worldName).get(fileName);
|
|
@@ -5822,10 +5867,11 @@ class VWF {
|
|
|
|
|
|
resolvedDescriptor(component, baseURI) {
|
|
|
|
|
|
+ let selfKernel = this;
|
|
|
return this.utility.transform(component, resolvedDescriptorTransformationWithBaseURI);
|
|
|
|
|
|
function resolvedDescriptorTransformationWithBaseURI(object, names, depth) {
|
|
|
- return resolvedDescriptorTransformation.call(this, object, names, depth, baseURI);
|
|
|
+ return selfKernel.resolvedDescriptorTransformation.call(selfKernel, object, names, depth, baseURI);
|
|
|
}
|
|
|
|
|
|
}
|
|
@@ -6183,8 +6229,8 @@ class VWF {
|
|
|
);
|
|
|
break;
|
|
|
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
|
|
|
case "attribute":
|
|
|
if (resolveAttributes) {
|
|
@@ -6192,8 +6238,8 @@ class VWF {
|
|
|
}
|
|
|
break;
|
|
|
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
|
|
|
}
|
|
|
|
|
@@ -6213,7 +6259,7 @@ class VWF {
|
|
|
|
|
|
break;
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
case "element":
|
|
|
|
|
@@ -6230,7 +6276,7 @@ class VWF {
|
|
|
|
|
|
break;
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
case "attribute":
|
|
|
|
|
@@ -6240,8 +6286,8 @@ class VWF {
|
|
|
|
|
|
break;
|
|
|
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
|
|
|
case "doc":
|
|
|
|
|
@@ -6254,13 +6300,13 @@ class VWF {
|
|
|
|
|
|
break;
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
case "node":
|
|
|
|
|
|
break;
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
default:
|
|
|
|
|
@@ -6355,7 +6401,7 @@ class VWF {
|
|
|
|
|
|
if (nodeDescriptor.implements) {
|
|
|
prototypeDescriptor.implements = (prototypeDescriptor.implements || []).
|
|
|
- concat(nodeDescriptor.implements);
|
|
|
+ concat(nodeDescriptor.implements);
|
|
|
}
|
|
|
|
|
|
if (nodeDescriptor.source) {
|
|
@@ -6405,7 +6451,7 @@ class VWF {
|
|
|
|
|
|
if (nodeDescriptor.scripts) {
|
|
|
prototypeDescriptor.scripts = (prototypeDescriptor.scripts || []).
|
|
|
- concat(nodeDescriptor.scripts);
|
|
|
+ concat(nodeDescriptor.scripts);
|
|
|
}
|
|
|
|
|
|
return prototypeDescriptor;
|
|
@@ -6468,11 +6514,11 @@ class VWF {
|
|
|
|
|
|
async chooseConnection(data) {
|
|
|
if (this.isLuminary) {
|
|
|
- return await this.luminary.connect(data)
|
|
|
+ return await this.luminary.connect(data)
|
|
|
} else {
|
|
|
- return data
|
|
|
+ return data
|
|
|
}
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
}
|