2014-10-09 22:39:34 +02:00
|
|
|
|
|
|
|
<script type="text/x-red" data-template-name="base64">
|
2018-02-03 16:08:05 +01:00
|
|
|
<div class="form-row">
|
2019-10-28 18:40:41 +01:00
|
|
|
<label for="node-input-action"><i class="fa fa-dot-circle-o"></i> <span data-i18n="base64.label.action"></span></label>
|
2018-02-03 16:08:05 +01:00
|
|
|
<select style="width:70%" id="node-input-action">
|
2019-10-28 18:40:41 +01:00
|
|
|
<option value="" data-i18n="base64.convert.buffer"></option>
|
|
|
|
<option value="str" data-i18n="base64.convert.encode"></option>
|
|
|
|
<option value="b64" data-i18n="base64.convert.decode"></option>
|
2018-02-03 16:08:05 +01:00
|
|
|
</select>
|
|
|
|
</div>
|
2018-01-30 22:42:14 +01:00
|
|
|
<div class="form-row">
|
|
|
|
<label for="node-input-property"><i class="fa fa-ellipsis-h"></i> <span data-i18n="node-red:common.label.property"></span></label>
|
|
|
|
<input type="text" id="node-input-property" style="width:70%;"/>
|
|
|
|
</div>
|
2014-10-09 22:39:34 +02:00
|
|
|
<div class="form-row">
|
2017-11-10 16:17:05 +01:00
|
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="node-red:common.label.name"></span></label>
|
|
|
|
<input type="text" id="node-input-name" data-i18n="[placeholder]node-red:common.label.name">
|
2014-10-09 22:39:34 +02:00
|
|
|
</div>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
RED.nodes.registerType('base64',{
|
|
|
|
category: 'function',
|
|
|
|
color:"#DEBD5C",
|
|
|
|
defaults: {
|
2018-01-30 22:42:14 +01:00
|
|
|
name: {value:""},
|
2018-02-03 16:08:05 +01:00
|
|
|
action: {value:""},
|
2018-01-30 22:42:14 +01:00
|
|
|
property: {value:"payload",required:true}
|
2014-10-09 22:39:34 +02:00
|
|
|
},
|
|
|
|
inputs:1,
|
|
|
|
outputs:1,
|
2018-02-08 16:52:30 +01:00
|
|
|
icon: "parser-base64.png",
|
2014-10-09 22:39:34 +02:00
|
|
|
label: function() {
|
|
|
|
return this.name||"base64";
|
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name?"node_label_italic":"";
|
2018-01-30 22:42:14 +01:00
|
|
|
},
|
|
|
|
oneditprepare: function() {
|
|
|
|
if (this.property === undefined) {
|
|
|
|
$("#node-input-property").val("payload");
|
|
|
|
}
|
|
|
|
$("#node-input-property").typedInput({default:'msg',types:['msg']});
|
2014-10-09 22:39:34 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|