mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Merge branch 'master' into repackage
This commit is contained in:
commit
6b79c6135f
8
packages/node_modules/@node-red/editor/src/js/ui/diff.js
generated
vendored
8
packages/node_modules/@node-red/editor/src/js/ui/diff.js
generated
vendored
@ -881,7 +881,6 @@ RED.diff = (function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var properties = Object.keys(node).filter(function(p) { return p!='inputLabels'&&p!='outputLabels'&&p!='z'&&p!='wires'&&p!=='x'&&p!=='y'&&p!=='id'&&p!=='type'&&(!def.defaults||!def.defaults.hasOwnProperty(p))});
|
var properties = Object.keys(node).filter(function(p) { return p!='inputLabels'&&p!='outputLabels'&&p!='z'&&p!='wires'&&p!=='x'&&p!=='y'&&p!=='id'&&p!=='type'&&(!def.defaults||!def.defaults.hasOwnProperty(p))});
|
||||||
if (def.defaults) {
|
if (def.defaults) {
|
||||||
properties = properties.concat(Object.keys(def.defaults));
|
properties = properties.concat(Object.keys(def.defaults));
|
||||||
@ -889,6 +888,13 @@ RED.diff = (function() {
|
|||||||
if (node.type !== 'tab') {
|
if (node.type !== 'tab') {
|
||||||
properties = properties.concat(['inputLabels','outputLabels']);
|
properties = properties.concat(['inputLabels','outputLabels']);
|
||||||
}
|
}
|
||||||
|
if ( ((localNode && localNode.hasOwnProperty('icon')) || (remoteNode && remoteNode.hasOwnProperty('icon'))) &&
|
||||||
|
properties.indexOf('icon') === -1
|
||||||
|
) {
|
||||||
|
properties.unshift('icon');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
properties.forEach(function(d) {
|
properties.forEach(function(d) {
|
||||||
localChanged = false;
|
localChanged = false;
|
||||||
remoteChanged = false;
|
remoteChanged = false;
|
||||||
|
2
packages/node_modules/@node-red/editor/src/js/ui/editor.js
generated
vendored
2
packages/node_modules/@node-red/editor/src/js/ui/editor.js
generated
vendored
@ -1110,7 +1110,7 @@ RED.editor = (function() {
|
|||||||
changed = true;
|
changed = true;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (icon !== defaultIcon) {
|
if (icon !== "" && icon !== defaultIcon) {
|
||||||
changes.icon = editing_node.icon;
|
changes.icon = editing_node.icon;
|
||||||
editing_node.icon = icon;
|
editing_node.icon = icon;
|
||||||
changed = true;
|
changed = true;
|
||||||
|
3
packages/node_modules/@node-red/nodes/core/logic/15-change.js
generated
vendored
3
packages/node_modules/@node-red/nodes/core/logic/15-change.js
generated
vendored
@ -283,6 +283,9 @@ module.exports = function(RED) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
function applyRules(msg, currentRule) {
|
function applyRules(msg, currentRule) {
|
||||||
|
if (currentRule >= node.rules.length) {
|
||||||
|
return Promise.resolve(msg);
|
||||||
|
}
|
||||||
var r = node.rules[currentRule];
|
var r = node.rules[currentRule];
|
||||||
var rulePromise;
|
var rulePromise;
|
||||||
if (r.t === "move") {
|
if (r.t === "move") {
|
||||||
|
4
packages/node_modules/@node-red/runtime/index.js
generated
vendored
4
packages/node_modules/@node-red/runtime/index.js
generated
vendored
@ -166,12 +166,10 @@ function start() {
|
|||||||
if (settings.httpStatic) {
|
if (settings.httpStatic) {
|
||||||
log.info(log._("runtime.paths.httpStatic",{path:path.resolve(settings.httpStatic)}));
|
log.info(log._("runtime.paths.httpStatic",{path:path.resolve(settings.httpStatic)}));
|
||||||
}
|
}
|
||||||
redNodes.loadContextsPlugin().then(function () {
|
return redNodes.loadContextsPlugin().then(function () {
|
||||||
redNodes.loadFlows().then(redNodes.startFlows).catch(function(err) {});
|
redNodes.loadFlows().then(redNodes.startFlows).catch(function(err) {});
|
||||||
started = true;
|
started = true;
|
||||||
});
|
});
|
||||||
}).catch(function(err) {
|
|
||||||
console.log(err);
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
7
packages/node_modules/@node-red/runtime/locales/en-US/runtime.json
generated
vendored
7
packages/node_modules/@node-red/runtime/locales/en-US/runtime.json
generated
vendored
@ -163,7 +163,12 @@
|
|||||||
"error-module-not-defined": "Context store '__storage__' missing 'module' option",
|
"error-module-not-defined": "Context store '__storage__' missing 'module' option",
|
||||||
"error-invalid-module-name": "Invalid context store name: '__name__'",
|
"error-invalid-module-name": "Invalid context store name: '__name__'",
|
||||||
"error-invalid-default-module": "Default context store unknown: '__storage__'",
|
"error-invalid-default-module": "Default context store unknown: '__storage__'",
|
||||||
"unknown-store": "Unknown context store '__name__' specified. Using default store."
|
"unknown-store": "Unknown context store '__name__' specified. Using default store.",
|
||||||
|
"error-loading-module": "Error loading context store: __message__",
|
||||||
|
"localfilesystem": {
|
||||||
|
"error-circular": "Context __scope__ contains a circular reference that cannot be persisted",
|
||||||
|
"error-write": "Error writing context: __message__"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
2
packages/node_modules/@node-red/runtime/nodes/context/index.js
generated
vendored
2
packages/node_modules/@node-red/runtime/nodes/context/index.js
generated
vendored
@ -170,6 +170,8 @@ function load() {
|
|||||||
defaultStore = "memory";
|
defaultStore = "memory";
|
||||||
}
|
}
|
||||||
return resolve(Promise.all(promises));
|
return resolve(Promise.all(promises));
|
||||||
|
}).catch(function(err) {
|
||||||
|
throw new Error(log._("context.error-loading-module",{message:err.toString()}));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
32
packages/node_modules/@node-red/runtime/nodes/context/localfilesystem.js
generated
vendored
32
packages/node_modules/@node-red/runtime/nodes/context/localfilesystem.js
generated
vendored
@ -104,8 +104,6 @@ function loadFile(storagePath){
|
|||||||
}else{
|
}else{
|
||||||
return Promise.resolve(undefined);
|
return Promise.resolve(undefined);
|
||||||
}
|
}
|
||||||
}).catch(function(err){
|
|
||||||
throw Promise.reject(err);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -113,9 +111,21 @@ function listFiles(storagePath) {
|
|||||||
var promises = [];
|
var promises = [];
|
||||||
return fs.readdir(storagePath).then(function(files) {
|
return fs.readdir(storagePath).then(function(files) {
|
||||||
files.forEach(function(file) {
|
files.forEach(function(file) {
|
||||||
promises.push(fs.readdir(path.join(storagePath,file)).then(function(subdirFiles) {
|
if (!/^\./.test(file)) {
|
||||||
return subdirFiles.map(subfile => path.join(file,subfile));
|
var fullPath = path.join(storagePath,file);
|
||||||
}))
|
var stats = fs.statSync(fullPath);
|
||||||
|
if (stats.isDirectory()) {
|
||||||
|
promises.push(fs.readdir(fullPath).then(function(subdirFiles) {
|
||||||
|
var result = [];
|
||||||
|
subdirFiles.forEach(subfile => {
|
||||||
|
if (/\.json$/.test(subfile)) {
|
||||||
|
result.push(path.join(file,subfile))
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return result;
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
return Promise.all(promises);
|
return Promise.all(promises);
|
||||||
}).then(dirs => dirs.reduce((acc, val) => acc.concat(val), []));
|
}).then(dirs => dirs.reduce((acc, val) => acc.concat(val), []));
|
||||||
@ -172,7 +182,7 @@ LocalFileSystem.prototype.open = function(){
|
|||||||
if(err.code == 'ENOENT') {
|
if(err.code == 'ENOENT') {
|
||||||
return fs.ensureDir(self.storageBaseDir);
|
return fs.ensureDir(self.storageBaseDir);
|
||||||
}else{
|
}else{
|
||||||
return Promise.reject(err);
|
throw err;
|
||||||
}
|
}
|
||||||
}).then(function() {
|
}).then(function() {
|
||||||
self._flushPendingWrites = function() {
|
self._flushPendingWrites = function() {
|
||||||
@ -185,7 +195,7 @@ LocalFileSystem.prototype.open = function(){
|
|||||||
var context = newContext[scope];
|
var context = newContext[scope];
|
||||||
var stringifiedContext = stringify(context);
|
var stringifiedContext = stringify(context);
|
||||||
if (stringifiedContext.circular && !self.knownCircularRefs[scope]) {
|
if (stringifiedContext.circular && !self.knownCircularRefs[scope]) {
|
||||||
log.warn("Context "+scope+" contains a circular reference that cannot be persisted");
|
log.warn(log._("error-circular",{scope:scope}));
|
||||||
self.knownCircularRefs[scope] = true;
|
self.knownCircularRefs[scope] = true;
|
||||||
} else {
|
} else {
|
||||||
delete self.knownCircularRefs[scope];
|
delete self.knownCircularRefs[scope];
|
||||||
@ -249,7 +259,11 @@ LocalFileSystem.prototype.set = function(scope, key, value, callback) {
|
|||||||
// there's a pending write which will handle this
|
// there's a pending write which will handle this
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
this._pendingWriteTimeout = setTimeout(function() { self._flushPendingWrites.call(self)}, this.flushInterval);
|
this._pendingWriteTimeout = setTimeout(function() {
|
||||||
|
self._flushPendingWrites.call(self).catch(function(err) {
|
||||||
|
log.error(log._("context.localfilesystem.error-write",{message:err.toString()}))
|
||||||
|
});
|
||||||
|
}, this.flushInterval);
|
||||||
}
|
}
|
||||||
} else if (callback && typeof callback !== 'function') {
|
} else if (callback && typeof callback !== 'function') {
|
||||||
throw new Error("Callback must be a function");
|
throw new Error("Callback must be a function");
|
||||||
@ -272,7 +286,7 @@ LocalFileSystem.prototype.set = function(scope, key, value, callback) {
|
|||||||
}
|
}
|
||||||
var stringifiedContext = stringify(obj);
|
var stringifiedContext = stringify(obj);
|
||||||
if (stringifiedContext.circular && !self.knownCircularRefs[scope]) {
|
if (stringifiedContext.circular && !self.knownCircularRefs[scope]) {
|
||||||
log.warn("Context "+scope+" contains a circular reference that cannot be persisted");
|
log.warn(log._("error-circular",{scope:scope}));
|
||||||
self.knownCircularRefs[scope] = true;
|
self.knownCircularRefs[scope] = true;
|
||||||
} else {
|
} else {
|
||||||
delete self.knownCircularRefs[scope];
|
delete self.knownCircularRefs[scope];
|
||||||
|
@ -78,6 +78,24 @@ describe('change Node', function() {
|
|||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
it('should no-op if there are no rules', function(done) {
|
||||||
|
var flow = [{"id":"changeNode1","type":"change","rules":[],"action":"","property":"","from":"","to":"","reg":false,"name":"changeNode","wires":[["helperNode1"]]},
|
||||||
|
{id:"helperNode1", type:"helper", wires:[]}];
|
||||||
|
helper.load(changeNode, flow, function() {
|
||||||
|
var changeNode1 = helper.getNode("changeNode1");
|
||||||
|
var helperNode1 = helper.getNode("helperNode1");
|
||||||
|
helperNode1.on("input", function(msg) {
|
||||||
|
try {
|
||||||
|
msg.should.eql(sentMsg);
|
||||||
|
done();
|
||||||
|
} catch(err) {
|
||||||
|
done(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
var sentMsg = {payload:"leaveMeAlong"};
|
||||||
|
changeNode1.receive(sentMsg);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
describe('#set' , function() {
|
describe('#set' , function() {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user