node-red/packages/node_modules/@node-red/nodes/core/storage/28-tail.html

62 lines
2.5 KiB
HTML
Raw Normal View History

2013-09-05 16:02:48 +02:00
<script type="text/x-red" data-template-name="tail">
2016-02-25 00:06:27 +01:00
<div class="form-row">
2016-09-08 21:49:44 +02:00
<label for="node-input-filename"><i class="fa fa-file"></i> <span data-i18n="tail.label.filename"></span></label>
<input id="node-input-filename" type="text">
2013-09-05 16:02:48 +02:00
</div>
<div class="form-row">
2016-02-25 00:06:27 +01:00
<label for="node-input-filetype"><i class="fa fa-file-text-o"></i> <span data-i18n="tail.label.type"></span></label>
<select type="text" id="node-input-filetype">
<option value="text" data-i18n="tail.action.text"></option>
<option value="binary" data-i18n="tail.action.binary"></option>
</select>
</div>
<div class="form-row" id="node-tail-split">
2013-09-05 16:02:48 +02:00
<label>&nbsp;</label>
<input type="checkbox" id="node-input-split" placeholder="Name" style="display: inline-block; width: auto; vertical-align: top;">
<label for="node-input-split" style="width: 70%;"><span data-i18n="tail.label.splitlines"></span></label>
2013-09-05 16:02:48 +02:00
</div>
<div class="form-row">
<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="tail">
<p>Tails (watches for things to be added) to the configured file. (Linux/Mac ONLY)</p>
2016-02-25 00:06:27 +01:00
<p>This will not work on Windows filesystems, as it relies on the <b>tail -F</b> command.</p>
<h3>Outputs</h3>
<ul>
<li>Text (UTF-8) files will be returned as strings.</li>
<li>Binary files will be returned as Buffer objects.</li>
</ul>
2013-09-05 16:02:48 +02:00
</script>
<script type="text/javascript">
RED.nodes.registerType('tail',{
category: 'storage-input',
defaults: {
name: {value:""},
2016-02-25 00:06:27 +01:00
filetype: {value:"text"},
2013-09-05 16:02:48 +02:00
split: {value:false},
filename: {value:"",required:true}
2013-09-05 16:02:48 +02:00
},
color:"BurlyWood",
inputs:0,
outputs:1,
icon: "file.png",
label: function() {
return this.name||this.filename||this._("tail.tail");
2013-09-05 16:02:48 +02:00
},
labelStyle: function() {
return this.name?"node_label_italic":"";
2016-02-25 00:06:27 +01:00
},
oneditprepare: function() {
$("#node-input-filetype").on("change",function() {
if (this.value === "text") { $("#node-tail-split").show(); }
else { $("#node-tail-split").hide(); }
});
2013-09-05 16:02:48 +02:00
}
});
</script>