add validation to physical web node fields

This commit is contained in:
Dave Conway-Jones 2016-03-03 09:18:57 +00:00
parent ae670f0e69
commit ea9c5f8474
4 changed files with 11 additions and 11 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 829 B

After

Width:  |  Height:  |  Size: 614 B

View File

@ -1,7 +1,7 @@
{ {
"name": "node-red-node-physical-web", "name": "node-red-node-physical-web",
"version": "0.0.6", "version": "0.0.7",
"description": "A set of nodes to interact with the Phyical Web", "description": "Node-RED nodes to interact with the Physical Web",
"main": "physical-web.js", "main": "physical-web.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"

View File

@ -69,7 +69,7 @@
RED.nodes.registerType('PhysicalWeb in',{ RED.nodes.registerType('PhysicalWeb in',{
category: 'Physical_Web', category: 'Physical_Web',
defaults: { defaults: {
name: {value:"Eddystone"}, name: {value:""},
topic: {value:"eddystone"} topic: {value:"eddystone"}
}, },
color: "#2F7ACD", color: "#2F7ACD",
@ -88,9 +88,9 @@
<script type="text/x-red" data-template-name="PhysicalWeb out"> <script type="text/x-red" data-template-name="PhysicalWeb out">
<div class="form-row"> <div class="form-row">
<label for="node-input-url"><i class="fa fa-link"></i> URL</label> <label for="node-input-url"><i class="fa fa-link"></i> URL</label>
<input type="text" id="node-input-url" placeholder="http://..."> <input type="text" id="node-input-url" style="width:250px;" placeholder="http://...">
<!--<button type="button" id="node-input-url-shorten" disabled=true>Shorten</button> --> <!--<button type="button" id="node-input-url-shorten" disabled=true>Shorten</button> -->
<p style="margin-left:100px;width: 70%">This URL needs to be shorter than 18 bytes <p style="margin-left:100px; width:70%">This URL needs to be shorter than 18 bytes
in length to meet Eddystone spec</p> in length to meet Eddystone spec</p>
</div> </div>
<div class="form-row"> <div class="form-row">
@ -121,10 +121,10 @@
RED.nodes.registerType('PhysicalWeb out',{ RED.nodes.registerType('PhysicalWeb out',{
category: 'Physical_Web', category: 'Physical_Web',
defaults: { defaults: {
name: {value:"Eddystone"}, name: {value:""},
url: {value:""}, url: {value:"",validate:function(v) {return v.length<19; }},
power: {value:"-21"}, power: {value:"-21",validate:RED.validators.number()},
period: {value:"10"} period: {value:"10",validate:RED.validators.number()}
}, },
color: "#2F7ACD", color: "#2F7ACD",
inputs:1, inputs:1,

View File

@ -30,7 +30,7 @@ module.exports = function(RED) {
txPowerLevel: node.power, txPowerLevel: node.power,
tlmPeriod: node.period, tlmPeriod: node.period,
tlmCount: 2 tlmCount: 2
} };
if (node.url) { if (node.url) {
try { try {
@ -53,7 +53,7 @@ module.exports = function(RED) {
eddystoneBeacon.stop(); eddystoneBeacon.stop();
done(); done();
} catch(e) { } catch(e) {
node.error('error shuttingdown beacon', e); node.error('error shutting down beacon', e);
} }
}); });