2013-09-05 16:02:48 +02:00
|
|
|
|
|
|
|
<script type="text/x-red" data-template-name="sentiment">
|
2018-01-16 22:43:37 +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>
|
2013-09-05 16:02:48 +02:00
|
|
|
<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">
|
2013-09-05 16:02:48 +02:00
|
|
|
</div>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/x-red" data-help-name="sentiment">
|
2018-01-16 22:43:37 +01:00
|
|
|
<p>Analyses the chosen property, default <code>payload</code>, and adds a <code>sentiment</code> object.</p>
|
2017-04-26 22:52:33 +02:00
|
|
|
<h3>Outputs</h3>
|
|
|
|
<dl class="message-properties">
|
|
|
|
<dt>sentiment <span class="property-type">object</span></dt>
|
|
|
|
<dd>contains the resulting AFINN-111 sentiment.</dd>
|
|
|
|
<dt>sentiment.score <span class="property-type">number</span></dt>
|
|
|
|
<dd>the sentiment score.</dd>
|
|
|
|
</dl>
|
|
|
|
<h3>Inputs</h3>
|
|
|
|
<dl class="message-properties">
|
|
|
|
<dt>overrides <span class="property-type">object</span></dt>
|
|
|
|
<dd>an object of word score overrides can be supplied - <code>{ word:score,... }</code>.</dd>
|
|
|
|
</dl>
|
|
|
|
<h3>Details</h3>
|
2013-11-21 09:47:34 +01:00
|
|
|
<p>A score greater than zero is positive and less than zero is negative.</p>
|
|
|
|
<p>The score typically ranges from -5 to +5, but can go higher and lower.</p>
|
2016-10-12 18:53:27 +02:00
|
|
|
<p>See <a href="https://github.com/thisandagain/sentiment/blob/master/README.md" target="_blank">the Sentiment docs here</a>.</p>
|
2013-09-05 16:02:48 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
RED.nodes.registerType('sentiment',{
|
|
|
|
category: 'analysis-function',
|
|
|
|
color:"#E6E0F8",
|
|
|
|
defaults: {
|
|
|
|
name: {value:""},
|
2018-01-16 22:43:37 +01:00
|
|
|
property: {value:"payload",required:true}
|
2013-09-05 16:02:48 +02:00
|
|
|
},
|
|
|
|
inputs:1,
|
|
|
|
outputs:1,
|
|
|
|
icon: "arrow-in.png",
|
|
|
|
label: function() {
|
2015-05-28 00:07:31 +02:00
|
|
|
return this.name||"sentiment";
|
2013-09-05 16:02:48 +02:00
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name?"node_label_italic":"";
|
2018-01-16 22:43:37 +01:00
|
|
|
},
|
|
|
|
oneditprepare: function() {
|
|
|
|
if (this.property === undefined) {
|
|
|
|
$("#node-input-property").val("payload");
|
|
|
|
}
|
|
|
|
$("#node-input-property").typedInput({default:'msg',types:['msg']});
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|