2018-07-19 13:39:07 +02:00
|
|
|
<script type="text/x-red" data-template-name="sentiment">
|
|
|
|
<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>
|
|
|
|
<div class="form-row">
|
2019-07-20 10:58:13 +02: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">
|
2018-07-19 13:39:07 +02:00
|
|
|
</div>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
RED.nodes.registerType('sentiment',{
|
|
|
|
category: 'analysis-function',
|
|
|
|
color:"#E6E0F8",
|
|
|
|
defaults: {
|
|
|
|
name: {value:""},
|
2019-03-13 15:25:23 +01:00
|
|
|
property: {value:"payload",required:true}
|
2018-07-19 13:39:07 +02:00
|
|
|
},
|
|
|
|
inputs:1,
|
|
|
|
outputs:1,
|
|
|
|
icon: "arrow-in.png",
|
|
|
|
label: function() {
|
|
|
|
return this.name||"sentiment";
|
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name?"node_label_italic":"";
|
|
|
|
},
|
|
|
|
oneditprepare: function() {
|
|
|
|
if (this.property === undefined) {
|
|
|
|
$("#node-input-property").val("payload");
|
|
|
|
}
|
|
|
|
$("#node-input-property").typedInput({default:'msg',types:['msg']});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|