2014-01-27 20:23:35 +01:00
|
|
|
|
|
|
|
<script type="text/x-red" data-template-name="range">
|
2018-01-16 11:59:44 +01:00
|
|
|
<div class="form-row">
|
|
|
|
<label for="node-input-property"><i class="fa fa-ellipsis-h"></i> <span data-i18n="common.label.property"></span></label>
|
|
|
|
<input type="text" id="node-input-property" style="width:calc(70% - 1px)"/>
|
|
|
|
</div>
|
2014-01-27 20:23:35 +01:00
|
|
|
<div class="form-row">
|
2015-05-10 22:47:22 +02:00
|
|
|
<label for="node-input-action"><i class="fa fa-dot-circle-o"></i> <span data-i18n="range.label.action"></span></label>
|
2016-06-27 00:48:59 +02:00
|
|
|
<select id="node-input-action" style="width:70%;">
|
2015-05-28 00:07:31 +02:00
|
|
|
<option value="scale" data-i18n="range.scale.payload"></option>
|
|
|
|
<option value="clamp" data-i18n="range.scale.limit"></option>
|
|
|
|
<option value="roll" data-i18n="range.scale.wrap"></option>
|
2014-03-30 00:05:46 +01:00
|
|
|
</select>
|
2014-01-27 20:23:35 +01:00
|
|
|
</div>
|
2014-03-30 00:05:46 +01:00
|
|
|
<br/>
|
2015-05-10 22:47:22 +02:00
|
|
|
<div class="form-row"><i class="fa fa-sign-in"></i> <span data-i18n="range.label.inputrange"></span>:</div>
|
2014-09-07 23:13:10 +02:00
|
|
|
<div class="form-row"><label></label>
|
2015-05-28 00:07:31 +02:00
|
|
|
<span data-i18n="range.label.from"></span>: <input type="text" id="node-input-minin" data-i18n="[placeholder]range.placeholder.min" style="width:100px;"/>
|
|
|
|
<span data-i18n="range.label.to"></span>: <input type="text" id="node-input-maxin" data-i18n="[placeholder]range.placeholder.maxin" style="width:100px;"/>
|
2014-03-30 00:05:46 +01:00
|
|
|
</div>
|
2015-05-10 22:47:22 +02:00
|
|
|
<div class="form-row"><i class="fa fa-sign-out"></i> <span data-i18n="range.label.resultrange"></span>:</div>
|
2014-09-07 23:13:10 +02:00
|
|
|
<div class="form-row"><label></label>
|
2015-05-28 00:07:31 +02:00
|
|
|
<span data-i18n="range.label.from"></span>: <input type="text" id="node-input-minout" data-i18n="[placeholder]range.placeholder.min" style="width:100px;"/>
|
|
|
|
<span data-i18n="range.label.to"></span>: <input type="text" id="node-input-maxout" data-i18n="[placeholder]range.placeholder.maxout" style="width:100px;"/>
|
2014-01-27 20:23:35 +01:00
|
|
|
</div>
|
2014-03-30 00:05:46 +01:00
|
|
|
<br/>
|
2014-09-07 23:13:10 +02:00
|
|
|
<div class="form-row"><label></label>
|
|
|
|
<input type="checkbox" id="node-input-round" style="display: inline-block; width: auto; vertical-align: top;">
|
2015-05-10 22:47:22 +02:00
|
|
|
<label style="width: auto;" for="node-input-round"><span data-i18n="range.label.roundresult"></span></label></input>
|
2014-01-27 20:23:35 +01:00
|
|
|
</div>
|
|
|
|
<br/>
|
|
|
|
<div class="form-row">
|
2015-05-10 22:47:22 +02:00
|
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="common.label.name"></span></label>
|
2015-05-26 22:11:14 +02:00
|
|
|
<input type="text" id="node-input-name" data-i18n="[placeholder]common.label.name">
|
2014-01-27 20:23:35 +01:00
|
|
|
</div>
|
2015-05-10 22:47:22 +02:00
|
|
|
<div class="form-tips" id="node-tip"><span data-i18n="range.tip"></span></div>
|
2014-01-27 20:23:35 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/x-red" data-help-name="range">
|
2017-05-26 15:27:53 +02:00
|
|
|
<p>Maps a numeric value to a different range.</p>
|
2017-04-26 22:52:33 +02:00
|
|
|
<h3>Inputs</h3>
|
|
|
|
<dl class="message-properties">
|
|
|
|
<dt>payload <span class="property-type">number</span></dt>
|
2017-05-26 15:27:53 +02:00
|
|
|
<dd>The payload <i>must</i> be a number. Anything else will try to be
|
2017-04-26 22:52:33 +02:00
|
|
|
parsed into a number and rejected if that fails.</dd>
|
|
|
|
</dl>
|
|
|
|
<h3>Outputs</h3>
|
|
|
|
<dl class="message-properties">
|
|
|
|
<dt>payload <span class="property-type">number</span></dt>
|
2017-05-26 15:27:53 +02:00
|
|
|
<dd>The value mapped to the new range.</dd>
|
2017-04-26 22:52:33 +02:00
|
|
|
</dl>
|
|
|
|
<h3>Details</h3>
|
2017-05-26 15:27:53 +02:00
|
|
|
<p>This node will linearly scale the received value. By default, the result
|
|
|
|
is not constrained to the range defined in the node.</p>
|
2017-04-26 22:52:33 +02:00
|
|
|
<p><i>Scale and limit to target range</i> means that the result will never be outside
|
|
|
|
the range specified within the result range.</p>
|
|
|
|
<p><i>Scale and wrap within the target range</i> means that the result will
|
2017-05-26 15:27:53 +02:00
|
|
|
be wrapped within the result range.</p>
|
2014-01-27 20:23:35 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
RED.nodes.registerType('range', {
|
|
|
|
color: "#E2D96E",
|
|
|
|
category: 'function',
|
|
|
|
defaults: {
|
|
|
|
minin: {value:"",required:true,validate:RED.validators.number()},
|
|
|
|
maxin: {value:"",required:true,validate:RED.validators.number()},
|
|
|
|
minout: {value:"",required:true,validate:RED.validators.number()},
|
|
|
|
maxout: {value:"",required:true,validate:RED.validators.number()},
|
|
|
|
action: {value:"scale"},
|
|
|
|
round: {value:false},
|
2018-01-16 11:59:44 +01:00
|
|
|
property: {value:"payload",required:true},
|
2014-01-27 20:23:35 +01:00
|
|
|
name: {value:""}
|
|
|
|
},
|
|
|
|
inputs: 1,
|
|
|
|
outputs: 1,
|
|
|
|
icon: "range.png",
|
|
|
|
label: function() {
|
2018-03-30 15:31:59 +02:00
|
|
|
if (this.minout !== "" && this.maxout !== "") { return this.name||this.minout + " - " + this.maxout; }
|
|
|
|
else { return this.name||this._("range.range"); }
|
2014-01-27 20:23:35 +01:00
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name ? "node_label_italic" : "";
|
2018-01-16 11:59:44 +01:00
|
|
|
},
|
|
|
|
oneditprepare: function() {
|
|
|
|
if (this.property === undefined) {
|
|
|
|
$("#node-input-property").val("payload");
|
|
|
|
}
|
|
|
|
$("#node-input-property").typedInput({default:'msg',types:['msg']});
|
2014-01-27 20:23:35 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|