mirror of
https://github.com/farcasclaudiu/node-red-contrib-couchdb.git
synced 2026-06-22 05:01:41 +03:00
178 lines
5.3 KiB
HTML
178 lines
5.3 KiB
HTML
<!--
|
|
Copyright 2015 Neil Kolban.
|
|
|
|
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/javascript">
|
|
RED.nodes.registerType('couchdb',{
|
|
// node definition
|
|
category: "storage",
|
|
inputs: 1,
|
|
outputs: 1,
|
|
icon: "db.png",
|
|
color: "#73c5e7",
|
|
label: function () {
|
|
return this.name || "couchdb"
|
|
},
|
|
paletteLabel: "couchdb",
|
|
defaults: {
|
|
name: {
|
|
value: ""
|
|
},
|
|
serverUrl: {
|
|
value: "",
|
|
required: true
|
|
},
|
|
database: {
|
|
value: "",
|
|
required: true
|
|
},
|
|
retrievalType: {
|
|
value: "byId"
|
|
},
|
|
designDoc: {
|
|
value: null
|
|
},
|
|
viewName: {
|
|
value: null
|
|
}
|
|
}
|
|
});
|
|
|
|
RED.nodes.registerType('couchdbinsert',{
|
|
// node definition
|
|
category: "storage",
|
|
inputs: 1,
|
|
outputs: 0,
|
|
icon: "db.png",
|
|
color: "#73c5e7",
|
|
label: function () {
|
|
return this.name || "couchdb insert"
|
|
},
|
|
paletteLabel: "couchdb insert",
|
|
align: "right",
|
|
defaults: {
|
|
name: {
|
|
value: ""
|
|
},
|
|
serverUrl: {
|
|
value: "",
|
|
required: true
|
|
},
|
|
database: {
|
|
value: "",
|
|
required: true
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<script type="text/x-red" data-help-name="couchdb">
|
|
<p>A node for searching documents in a CouchDB database.</p>
|
|
<p>Searching for documents can be done in a few modes. Directly by using the documents
|
|
<b>_id</b> or by using a key lookup in a view.</p>
|
|
<p>When querying using the <b>by Id</b> option, the value for the documents <code>_id</code>
|
|
should be passed in the <code>msg.payload</code> as a string.</p>
|
|
<p>When querying using <b>by view</b> option, the value for the search key should
|
|
be passed in the <code>msg.payload</code>.</p>
|
|
<p>The database name must follow these rules:
|
|
<ul>
|
|
<li>No spaces</li>
|
|
<li>All letters in lower case</li>
|
|
<li>The first character must not be <code>_</code></li>
|
|
</ul>
|
|
</p>
|
|
</script>
|
|
|
|
<script type="text/x-red" data-help-name="couchdbinsert">
|
|
<p>A node for inserting documents in a CouchDB database.</p>
|
|
<p>The document to be insert will be the JavaScript object found in <code>msg.payload</code>.
|
|
To update an existing document, a valid <code>_rev</code> must also be present in the object.
|
|
Before you use this node, make sure you understand the principles of working with CouchDB.</p>
|
|
|
|
<p>The database name must follow these rules:
|
|
<ul>
|
|
<li>No spaces</li>
|
|
<li>All letters in lower case</li>
|
|
<li>The first character must not be <code>_</code></li>
|
|
</ul>
|
|
</p>
|
|
</script>
|
|
|
|
<!--
|
|
*
|
|
* couchdb
|
|
*
|
|
-->
|
|
<script type="text/x-red" data-template-name="couchdb">
|
|
<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-serverUrl"><i class="fa fa-server"></i> Server URL</label>
|
|
<input type="text" id="node-input-serverUrl" placeholder="Server URL">
|
|
</div>
|
|
<div class="form-row">
|
|
<label for="node-input-database"><i class="fa fa-database"></i> Database</label>
|
|
<input type="text" id="node-input-database" placeholder="Database">
|
|
</div>
|
|
<div class="form-row">
|
|
<label for="node-input-retrievalType"><i class="fa fa-random"></i> Type</label>
|
|
<select type="text" id="node-input-retrievalType">
|
|
<option value="byId">... by Id</option>
|
|
<option value="byView">... by View</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-row node-input-designDoc">
|
|
<label for="node-input-designDoc"><i class="fa fa-book"></i> Design doc</label>
|
|
<input type="text" id="node-input-designDoc" placeholder="Design doc">
|
|
</div>
|
|
<div class="form-row node-input-viewName">
|
|
<label for="node-input-viewName"><i class="fa fa-binoculars"></i> View name</label>
|
|
<input type="text" id="node-input-viewName" placeholder="View name">
|
|
</div>
|
|
|
|
<script>
|
|
$("#node-input-retrievalType").change(function() {
|
|
var type = $("#node-input-retrievalType").val();
|
|
if (type == "byId") {
|
|
$(".node-input-designDoc").hide();
|
|
$(".node-input-viewName").hide();
|
|
} else {
|
|
$(".node-input-designDoc").show();
|
|
$(".node-input-viewName").show();
|
|
}
|
|
});
|
|
</script>
|
|
</script>
|
|
|
|
<!--
|
|
*
|
|
* couchdbinsert
|
|
*
|
|
-->
|
|
<script type="text/x-red" data-template-name="couchdbinsert">
|
|
<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-serverUrl"><i class="fa fa-server"></i> Server URL</label>
|
|
<input type="text" id="node-input-serverUrl" placeholder="Server URL">
|
|
</div>
|
|
<div class="form-row">
|
|
<label for="node-input-database"><i class="fa fa-database"></i> Database</label>
|
|
<input type="text" id="node-input-database" placeholder="Database">
|
|
</div>
|
|
</script> |