mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
fix debug undo/redo by introducing a sideEffectCallback in history object
This commit is contained in:
parent
a69db4d572
commit
a6a781f67c
@ -452,6 +452,11 @@ RED.history = (function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(ev.sideEffectCallback && typeof ev.sideEffectCallback === 'function') {
|
||||||
|
inverseEv.sideEffectCallback = ev.sideEffectCallback;
|
||||||
|
ev.sideEffectCallback(ev);
|
||||||
|
}
|
||||||
|
|
||||||
Object.keys(modifiedTabs).forEach(function(id) {
|
Object.keys(modifiedTabs).forEach(function(id) {
|
||||||
var subflow = RED.nodes.subflow(id);
|
var subflow = RED.nodes.subflow(id);
|
||||||
if (subflow) {
|
if (subflow) {
|
||||||
|
@ -36,6 +36,25 @@
|
|||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
(function() {
|
(function() {
|
||||||
var subWindow = null;
|
var subWindow = null;
|
||||||
|
|
||||||
|
function activateAjaxCall(node, active, successCallback) {
|
||||||
|
$.ajax({
|
||||||
|
url: "debug/"+node.id+"/"+(active?"enable":"disable"),
|
||||||
|
type: "POST",
|
||||||
|
success: successCallback,
|
||||||
|
error: function(jqXHR,textStatus,errorThrown) {
|
||||||
|
if (jqXHR.status == 404) {
|
||||||
|
RED.notify(node._("common.notification.error", {message: node._("common.notification.errors.not-deployed")}),"error");
|
||||||
|
} else if (jqXHR.status === 0) {
|
||||||
|
RED.notify(node._("common.notification.error", {message: node._("common.notification.errors.no-response")}),"error");
|
||||||
|
} else {
|
||||||
|
// TODO where is the err.status comming from?
|
||||||
|
RED.notify(node._("common.notification.error",{message:node._("common.notification.errors.unexpected",{status:err.status,message:err.response})}),"error");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
RED.nodes.registerType('debug',{
|
RED.nodes.registerType('debug',{
|
||||||
category: 'common',
|
category: 'common',
|
||||||
defaults: {
|
defaults: {
|
||||||
@ -73,38 +92,28 @@
|
|||||||
onclick: function() {
|
onclick: function() {
|
||||||
var label = this.name||"debug";
|
var label = this.name||"debug";
|
||||||
var node = this;
|
var node = this;
|
||||||
$.ajax({
|
activateAjaxCall(node, node.active, function(resp, textStatus, xhr) {
|
||||||
url: "debug/"+this.id+"/"+(this.active?"enable":"disable"),
|
var historyEvent = {
|
||||||
type: "POST",
|
t:'edit',
|
||||||
success: function(resp, textStatus, xhr) {
|
node:node,
|
||||||
var historyEvent = {
|
changes:{
|
||||||
t:'edit',
|
active:!node.active
|
||||||
node:node,
|
},
|
||||||
changes:{
|
dirty:node.dirty,
|
||||||
active:!node.active
|
changed:node.changed,
|
||||||
},
|
sideEffectCallback: function(ev) {
|
||||||
dirty:node.dirty,
|
activateAjaxCall(ev.node, ev.node.active);
|
||||||
changed:node.changed
|
|
||||||
};
|
|
||||||
node.changed = true;
|
|
||||||
node.dirty = true;
|
|
||||||
RED.nodes.dirty(true);
|
|
||||||
RED.history.push(historyEvent);
|
|
||||||
RED.view.redraw();
|
|
||||||
if (xhr.status == 200) {
|
|
||||||
RED.notify(node._("debug.notification.activated",{label:label}),"success");
|
|
||||||
} else if (xhr.status == 201) {
|
|
||||||
RED.notify(node._("debug.notification.deactivated",{label:label}),"success");
|
|
||||||
}
|
|
||||||
},
|
|
||||||
error: function(jqXHR,textStatus,errorThrown) {
|
|
||||||
if (jqXHR.status == 404) {
|
|
||||||
RED.notify(node._("common.notification.error", {message: node._("common.notification.errors.not-deployed")}),"error");
|
|
||||||
} else if (jqXHR.status === 0) {
|
|
||||||
RED.notify(node._("common.notification.error", {message: node._("common.notification.errors.no-response")}),"error");
|
|
||||||
} else {
|
|
||||||
RED.notify(node._("common.notification.error",{message:node._("common.notification.errors.unexpected",{status:err.status,message:err.response})}),"error");
|
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
node.changed = true;
|
||||||
|
node.dirty = true;
|
||||||
|
RED.nodes.dirty(true);
|
||||||
|
RED.history.push(historyEvent);
|
||||||
|
RED.view.redraw();
|
||||||
|
if (xhr.status == 200) {
|
||||||
|
RED.notify(node._("debug.notification.activated",{label:label}),"success");
|
||||||
|
} else if (xhr.status == 201) {
|
||||||
|
RED.notify(node._("debug.notification.deactivated",{label:label}),"success");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -281,11 +290,15 @@
|
|||||||
changed: n.changed,
|
changed: n.changed,
|
||||||
changes: {
|
changes: {
|
||||||
active: n.active
|
active: n.active
|
||||||
|
},
|
||||||
|
sideEffectCallback: function() {
|
||||||
|
activateAjaxCall(n, n.active);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
n.active = false;
|
n.active = false;
|
||||||
n.changed = true;
|
n.changed = true;
|
||||||
n.dirty = true;
|
n.dirty = true;
|
||||||
|
activateAjaxCall(n, n.active);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user