node-red/nodes/core/logic/15-change.html

279 lines
13 KiB
HTML
Raw Normal View History

<!--
2015-03-18 17:20:21 +01:00
Copyright 2013, 2015 IBM Corp.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<script type="text/x-red" data-template-name="change">
2015-03-18 17:20:21 +01:00
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="common.label.name"></span></label>
<input type="text" id="node-input-name" style="width: 370px;" data-i18n="[placeholder]common.label.name">
</div>
2015-03-18 17:20:21 +01:00
<div class="form-row" style="margin-bottom:0;">
<label><i class="fa fa-list"></i> <span data-i18n="change.label.rules"></span></label>
</div>
2015-03-18 17:20:21 +01:00
<div class="form-row node-input-rule-container-row" style="margin-bottom: 0px;">
<div id="node-input-rule-container-div" style="box-sizing: border-box; border-radius: 5px; height: 300px; padding: 5px; border: 1px solid #ccc; overflow-y:scroll;">
<ol id="node-input-rule-container" style=" list-style-type:none; margin: 0;"></ol>
</div>
</div>
<div class="form-row">
2015-07-14 16:59:56 +02:00
<a href="#" class="editor-button editor-button-small" id="node-input-add-rule" style="margin-top: 4px;"><i class="fa fa-plus"></i> <span data-i18n="change.label.rule"></span></a>
</div>
</script>
<script type="text/x-red" data-help-name="change">
<p>Set, change or delete properties of a message, flow context or global context.</p>
<p>The node can specify multiple rules that will be applied in turn.</p>
2015-03-18 17:20:21 +01:00
<p>The available operations are:</p>
<ul>
<li><b>Set</b> - set a property. The value can be a variety of different types, or
can be taken from an existing message or context property.</li>
2015-03-18 17:20:21 +01:00
<li><b>Change</b> - search &amp; replace parts of the property. If regular expressions
are enabled, the <b>replace with</b> property can include capture groups, for example <code>$1</code></li>
<li><b>Delete</b> - delete a property.</li>
</ul>
</script>
<script type="text/javascript">
RED.nodes.registerType('change', {
color: "#E2D96E",
category: 'function',
defaults: {
2015-03-18 17:20:21 +01:00
name: {value:""},
rules:{value:[{t:"set",p:"payload",pt:"msg",to:"",tot:"str"}]},
2015-03-18 17:20:21 +01:00
// legacy
action: {value:""},
property: {value:""},
from: {value:""},
to: {value:""},
2015-03-18 17:20:21 +01:00
reg: {value:false}
},
inputs: 1,
outputs: 1,
icon: "swap.png",
label: function() {
2014-03-30 00:05:46 +01:00
if (this.name) {
return this.name;
}
2015-03-18 17:20:21 +01:00
if (!this.rules) {
if (this.action === "replace") {
2015-05-28 00:07:31 +02:00
return this._("change.label.set",{property:"msg."+this.property});
2015-03-18 17:20:21 +01:00
} else if (this.action === "change") {
2015-05-28 00:07:31 +02:00
return this._("change.label.change",{property:"msg."+this.property});
2015-03-18 17:20:21 +01:00
} else {
2015-05-28 00:07:31 +02:00
return this._("change.label.delete",{property:"msg."+this.property});
2015-03-18 17:20:21 +01:00
}
2014-03-30 00:05:46 +01:00
} else {
2015-03-18 17:20:21 +01:00
if (this.rules.length == 1) {
if (this.rules[0].t === "set") {
return this._("change.label.set",{property:(this.rules[0].pt||"msg")+"."+this.rules[0].p});
2015-03-18 17:20:21 +01:00
} else if (this.rules[0].t === "change") {
return this._("change.label.change",{property:(this.rules[0].pt||"msg")+"."+this.rules[0].p});
2015-03-18 17:20:21 +01:00
} else {
return this._("change.label.delete",{property:(this.rules[0].pt||"msg")+"."+this.rules[0].p});
2015-03-18 17:20:21 +01:00
}
} else {
2015-05-28 00:07:31 +02:00
return this._("change.label.changeCount",{count:this.rules.length});
2015-03-18 17:20:21 +01:00
}
2014-03-30 00:05:46 +01:00
}
},
labelStyle: function() {
return this.name ? "node_label_italic" : "";
},
oneditprepare: function() {
2015-05-28 22:55:22 +02:00
var set = this._("change.action.set");
var change = this._("change.action.change");
var del = this._("change.action.delete");
var to = this._("change.action.to");
var search = this._("change.action.search");
var replace = this._("change.action.replace");
var regex = this._("change.label.regex");
2015-07-14 00:21:03 +02:00
function resizeRule(rule,width) {
rule.find('input[type="text"]:not(.red-ui-typedInput)').width(width-180);
rule.find('.red-ui-typedInput').typedInput("width",width-180);
}
2015-03-18 17:20:21 +01:00
function generateRule(rule) {
if (rule.t === "change" && rule.re) {
rule.fromt = 're';
delete rule.re;
}
if (rule.t === "set" && !rule.tot) {
if (rule.to.indexOf("msg.") === 0 && !rule.tot) {
rule.to = rule.to.substring(4);
rule.tot = "msg";
} else {
rule.tot = "str";
}
}
2015-03-18 17:20:21 +01:00
var container = $('<li/>',{style:"background: #fff; margin:0; padding:8px 0px; border-bottom: 1px solid #ccc;"});
2015-07-14 00:21:03 +02:00
2015-03-18 17:20:21 +01:00
var row1 = $('<div/>').appendTo(container);
2015-07-14 00:21:03 +02:00
2015-03-18 17:20:21 +01:00
var row2 = $('<div/>',{style:"margin-top:8px;"}).appendTo(container);
var row3 = $('<div/>',{style:"margin-top:8px;"}).appendTo(container);
var selectField = $('<select/>',{class:"node-input-rule-type",style:"width: 110px; margin-right: 10px;"}).appendTo(row1);
var selectOptions = [{v:"set",l:set},{v:"change",l:change},{v:"delete",l:del}];
2015-03-18 17:20:21 +01:00
for (var i=0;i<3;i++) {
selectField.append($("<option></option>").val(selectOptions[i].v).text(selectOptions[i].l));
}
2015-07-14 00:21:03 +02:00
var propertyName = $('<input/>',{style:"width: 250px",class:"node-input-rule-property-name",type:"text"}).appendTo(row1).typedInput({options:['msg','flow','global']});
2015-07-14 00:21:03 +02:00
var finalspan = $('<span/>',{style:"float: right; margin-right: 10px;"}).appendTo(row1);
2015-07-14 16:59:56 +02:00
var deleteButton = $('<a/>',{href:"#",class:"editor-button editor-button-small", style:"margin-top: 7px; margin-left: 5px;"}).appendTo(finalspan);
2015-03-18 17:20:21 +01:00
$('<i/>',{class:"fa fa-remove"}).appendTo(deleteButton);
2015-07-14 00:21:03 +02:00
$('<div/>',{style:"display: inline-block;text-align:right; width:120px;padding-right: 10px; box-sizing: border-box;"}).text(to).appendTo(row2);
var propertyValue = $('<input/>',{style:"width: 250px",class:"node-input-rule-property-value",type:"text"}).appendTo(row2).typedInput({default:'str',options:['msg','flow','global','str','num','bool','json']});
2015-03-18 17:20:21 +01:00
var row3_1 = $('<div/>').appendTo(row3);
$('<div/>',{style:"display: inline-block;text-align:right; width:120px;padding-right: 10px; box-sizing: border-box;"}).text(search).appendTo(row3_1);
var fromValue = $('<input/>',{style:"width: 250px",class:"node-input-rule-property-search-value",type:"text"}).appendTo(row3_1).typedInput({default:'str',options:['msg','flow','global','str','re']});
2015-07-14 00:21:03 +02:00
2015-03-18 17:20:21 +01:00
var row3_2 = $('<div/>',{style:"margin-top:8px;"}).appendTo(row3);
$('<div/>',{style:"display: inline-block;text-align:right; width:120px;padding-right: 10px; box-sizing: border-box;"}).text(replace).appendTo(row3_2);
var toValue = $('<input/>',{style:"width: 250px",class:"node-input-rule-property-replace-value",type:"text"}).appendTo(row3_2).typedInput({default:'str',options:['msg','flow','global','str','num','json']});
2015-03-18 17:20:21 +01:00
selectField.change(function() {
var width = $("#node-input-rule-container").width();
resizeRule(container,width);
2015-03-18 17:20:21 +01:00
var type = $(this).val();
if (type == "set") {
row2.show();
row3.hide();
} else if (type == "change") {
row2.hide();
row3.show();
} else if (type == "delete") {
row2.hide();
row3.hide();
}
});
deleteButton.click(function() {
container.css({"background":"#fee"});
container.fadeOut(300, function() {
$(this).remove();
});
});
2015-07-14 00:21:03 +02:00
2015-03-18 17:20:21 +01:00
selectField.find("option").filter(function() {return $(this).val() == rule.t;}).attr('selected',true);
propertyName.val(rule.p);
propertyName.typedInput('type',rule.pt)
2015-03-18 17:20:21 +01:00
propertyValue.val(rule.to);
propertyValue.typedInput('type',rule.tot)
2015-03-18 17:20:21 +01:00
fromValue.val(rule.from);
fromValue.typedInput('type',rule.fromt)
2015-03-18 17:20:21 +01:00
toValue.val(rule.to);
toValue.typedInput('type',rule.tot)
2015-03-18 17:20:21 +01:00
selectField.change();
2015-07-14 00:21:03 +02:00
2015-03-18 17:20:21 +01:00
$("#node-input-rule-container").append(container);
}
$("#node-input-add-rule").click(function() {
generateRule({t:"replace",p:"payload"});
});
2015-07-14 00:21:03 +02:00
2015-03-18 17:20:21 +01:00
if (!this.rules) {
var rule = {
t:(this.action=="replace"?"set":this.action),
p:this.property,
pt:"msg"
2015-03-18 17:20:21 +01:00
}
2015-07-14 00:21:03 +02:00
2015-03-18 17:20:21 +01:00
if (rule.t === "set") {
rule.to = this.to;
} else if (rule.t === "change") {
rule.from = this.from;
rule.to = this.to;
rule.re = this.reg;
}
2015-07-14 00:21:03 +02:00
2015-03-18 17:20:21 +01:00
delete this.to;
delete this.from;
delete this.reg;
delete this.action;
delete this.property;
2015-07-14 00:21:03 +02:00
2015-03-18 17:20:21 +01:00
this.rules = [rule];
}
2015-07-14 00:21:03 +02:00
2015-03-18 17:20:21 +01:00
for (var i=0;i<this.rules.length;i++) {
generateRule(this.rules[i]);
}
2015-07-14 00:21:03 +02:00
2015-03-18 17:20:21 +01:00
function changeDialogResize() {
var rows = $("#dialog-form>div:not(.node-input-rule-container-row)");
var height = $("#dialog-form").height();
for (var i=0;i<rows.size();i++) {
height -= $(rows[i]).outerHeight(true);
}
2015-03-18 17:20:21 +01:00
var editorRow = $("#dialog-form>div.node-input-rule-container-row");
height -= (parseInt(editorRow.css("marginTop"))+parseInt(editorRow.css("marginBottom")));
$("#node-input-rule-container-div").css("height",height+"px");
var rules = $("#node-input-rule-container").children();
var newWidth = $("#node-input-rule-container").width();
rules.each(function(i) {
resizeRule($(this),newWidth);
})
$("#node-input-name").width(newWidth-130);
2015-03-18 17:20:21 +01:00
};
$( "#dialog" ).on("dialogresize", changeDialogResize);
$( "#dialog" ).one("dialogopen", function(ev) {
var size = $( "#dialog" ).dialog('option','sizeCache-change');
if (size) {
$("#dialog").dialog('option','width',size.width);
$("#dialog").dialog('option','height',size.height);
changeDialogResize();
} else {
setTimeout(changeDialogResize,10);
}
});
2015-03-18 17:20:21 +01:00
$( "#dialog" ).one("dialogclose", function(ev,ui) {
$( "#dialog" ).off("dialogresize",changeDialogResize);
});
},
oneditsave: function() {
var rules = $("#node-input-rule-container").children();
var ruleset;
var node = this;
node.rules= [];
rules.each(function(i) {
var rule = $(this);
var type = rule.find(".node-input-rule-type option:selected").val();
var r = {
t:type,
p:rule.find(".node-input-rule-property-name").val(),
pt:rule.find(".node-input-rule-property-name").typedInput('type')
2015-03-18 17:20:21 +01:00
};
if (type === "set") {
r.to = rule.find(".node-input-rule-property-value").val();
r.tot = rule.find(".node-input-rule-property-value").typedInput('type');
2015-03-18 17:20:21 +01:00
} else if (type === "change") {
r.from = rule.find(".node-input-rule-property-search-value").val();
r.fromt = rule.find(".node-input-rule-property-search-value").typedInput('type');
2015-03-18 17:20:21 +01:00
r.to = rule.find(".node-input-rule-property-replace-value").val();
r.tot = rule.find(".node-input-rule-property-replace-value").typedInput('type');
2015-03-18 17:20:21 +01:00
r.re = rule.find(".node-input-rule-property-re").prop('checked');
}
node.rules.push(r);
});
}
});
</script>