node-red-contrib-postgres-l.../pglisten.html

114 lines
4.3 KiB
HTML

<!--
Copyright 2017 Vincent Schoonenburg.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<script type="text/x-red" data-template-name="postgresdb">
<p>Connection can be set up by either defining a full or partial connection string, or specific connection parameters</p>
<div class="form-row">
<label for="node-config-input-connectionstring"><i class="fa fa-bookmark"></i> Connection String</label>
<input class="input-append-left" type="text" id="node-config-input-connectionstring" >
</div>
<div class="form-row">
<label for="node-config-input-hostname"><i class="fa fa-bookmark"></i> Host</label>
<input class="input-append-left" type="text" id="node-config-input-hostname" placeholder="localhost" style="width: 40%;" >
<label for="node-config-input-port" style="margin-left: 10px; width: 35px; "> Port</label>
<input type="text" id="node-config-input-port" placeholder="5432" style="width:45px">
</div>
<div class="form-row">
<label for="node-config-input-db"><i class="fa fa-briefcase"></i> Database</label>
<input type="text" id="node-config-input-db" placeholder="test">
</div>
<div class="form-row">
<label for="node-config-input-user"><i class="fa fa-user"></i> Username</label>
<input type="text" id="node-config-input-user" placeholder="postgres">
</div>
<div class="form-row">
<label for="node-config-input-password"><i class="fa fa-lock"></i> Password</label>
<input type="password" id="node-config-input-password" placeholder="postgres">
</div>
<div class="form-row">
<label>&nbsp;</label>
<input type="checkbox" id="node-config-input-ssl" style="display: inline-block; width: auto; vertical-align: top;">
<label for="node-config-input-ssl" style="width: 70%;">Use SSL</label>
</div>
</script>
<script type="text/javascript">
(function() {
RED.nodes.registerType('postgresdb',{
category: 'config',
color:"rgb(218, 196, 180)",
defaults: {
connectionstring : {value:""},
hostname: { value:"localhost"},
port: { value: 5432},
db: { value:"postgres"},
ssl: { value:false }
},
credentials: {
user: {type: "text"},
password: {type: "password"}
},
label: function() {
return this.name|| this.connectionstring || this.hostname+":"+this.port+"/"+this.db;
}
});
})();
</script>
<script type="text/x-red" data-template-name="PG Listen">
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
<div class="form-row">
<label for="node-input-channel"><i class="fa fa-tag"></i> Channel name</label>
<input type="text" id="node-input-channel" placeholder="Channel name">
</div>
<div class="form-row">
<label for="node-input-postgresdb"><i class="fa fa-tag"></i> Server</label>
<input type="text" id="node-input-postgresdb">
</div>
</script>
<script type="text/x-red" data-help-name="PG Listen">
<p>A PostgreSql pg_notify LISTEN node. </p>
<p></p>
<p></p>
</script>
<script type="text/javascript">
(function() {
RED.nodes.registerType('PG Listen',{
category: 'storage-input',
color:"rgb(148, 226, 252)",
defaults: {
postgresdb: { type:"postgresdb",required:true},
name: {value:""},
channel: { value:"", required : true }
},
inputs: 0,
outputs: 1,
icon: "postgres.png",
align: "right",
label: function() {
return this.name||(this.sqlquery?this.sqlquery:"postgres");
}
});
})();
</script>