mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
update mongodb to fa-icons and fix name position in edit config...
This commit is contained in:
parent
cb854c40ba
commit
8b6c14b05d
@ -1,5 +1,5 @@
|
|||||||
<!--
|
<!--
|
||||||
Copyright 2013 IBM Corp.
|
Copyright 2013,2014 IBM Corp.
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -16,27 +16,27 @@
|
|||||||
|
|
||||||
<script type="text/x-red" data-template-name="mongodb">
|
<script type="text/x-red" data-template-name="mongodb">
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="node-config-input-hostname"><i class="icon-bookmark"></i> Host</label>
|
<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%;" >
|
<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>
|
<label for="node-config-input-port" style="margin-left: 10px; width: 35px; "> Port</label>
|
||||||
<input type="text" id="node-config-input-port" placeholder="27017" style="width:45px">
|
<input type="text" id="node-config-input-port" placeholder="27017" style="width:45px">
|
||||||
</div>
|
</div>
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="node-config-input-db"><i class="icon-briefcase"></i> Database</label>
|
<label for="node-config-input-db"><i class="fa fa-database"></i> Database</label>
|
||||||
<input type="text" id="node-config-input-db" placeholder="test">
|
<input type="text" id="node-config-input-db" placeholder="test">
|
||||||
</div>
|
</div>
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="node-config-input-name"><i class="icon-tag"></i> Name</label>
|
<label for="node-config-input-user"><i class="fa fa-user"></i> Username</label>
|
||||||
<input type="text" id="node-config-input-name" placeholder="Name">
|
|
||||||
</div>
|
|
||||||
<div class="form-row">
|
|
||||||
<label for="node-config-input-user"><i class="icon-user"></i> Username</label>
|
|
||||||
<input type="text" id="node-config-input-user">
|
<input type="text" id="node-config-input-user">
|
||||||
</div>
|
</div>
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="node-config-input-pass"><i class="icon-lock"></i> Password</label>
|
<label for="node-config-input-pass"><i class="fa fa-lock"></i> Password</label>
|
||||||
<input type="password" id="node-config-input-pass">
|
<input type="password" id="node-config-input-pass">
|
||||||
</div>
|
</div>
|
||||||
|
<div class="form-row">
|
||||||
|
<label for="node-config-input-name"><i class="fa fa-tag"></i> Name</label>
|
||||||
|
<input type="text" id="node-config-input-name" placeholder="Name">
|
||||||
|
</div>
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
@ -47,7 +47,7 @@
|
|||||||
hostname: { value:"127.0.0.1",required:true},
|
hostname: { value:"127.0.0.1",required:true},
|
||||||
port: { value: 27017,required:true},
|
port: { value: 27017,required:true},
|
||||||
db: { value:"",required:true},
|
db: { value:"",required:true},
|
||||||
name: { value:"" },
|
name: { value:"" }
|
||||||
//user -> credentials
|
//user -> credentials
|
||||||
//pass -> credentials
|
//pass -> credentials
|
||||||
},
|
},
|
||||||
@ -95,15 +95,15 @@
|
|||||||
|
|
||||||
<script type="text/x-red" data-template-name="mongodb out">
|
<script type="text/x-red" data-template-name="mongodb out">
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="node-input-mongodb"><i class="icon-tag"></i> Server</label>
|
<label for="node-input-mongodb"><i class="fa fa-bookmark"></i> Server</label>
|
||||||
<input type="text" id="node-input-mongodb">
|
<input type="text" id="node-input-mongodb">
|
||||||
</div>
|
</div>
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="node-input-collection"><i class="icon-briefcase"></i> Collection</label>
|
<label for="node-input-collection"><i class="fa fa-briefcase"></i> Collection</label>
|
||||||
<input type="text" id="node-input-collection" placeholder="collection">
|
<input type="text" id="node-input-collection" placeholder="collection">
|
||||||
</div>
|
</div>
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="node-input-operation"><i class="icon-wrench"></i> Operation</label>
|
<label for="node-input-operation"><i class="fa fa-wrench"></i> Operation</label>
|
||||||
<select type="text" id="node-input-operation" style="display: inline-block; vertical-align: top;">
|
<select type="text" id="node-input-operation" style="display: inline-block; vertical-align: top;">
|
||||||
<option value="store">save</option>
|
<option value="store">save</option>
|
||||||
<option value="insert">insert</option>
|
<option value="insert">insert</option>
|
||||||
@ -167,15 +167,15 @@
|
|||||||
|
|
||||||
<script type="text/x-red" data-template-name="mongodb in">
|
<script type="text/x-red" data-template-name="mongodb in">
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="node-input-mongodb"><i class="icon-tag"></i> Server</label>
|
<label for="node-input-mongodb"><i class="fa fa-bookmark"></i> Server</label>
|
||||||
<input type="text" id="node-input-mongodb">
|
<input type="text" id="node-input-mongodb">
|
||||||
</div>
|
</div>
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="node-input-collection"><i class="icon-briefcase"></i> Collection</label>
|
<label for="node-input-collection"><i class="fa fa-briefcase"></i> Collection</label>
|
||||||
<input type="text" id="node-input-collection" placeholder="collection">
|
<input type="text" id="node-input-collection" placeholder="collection">
|
||||||
</div>
|
</div>
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="node-input-name"><i class="icon-tag"></i> Name</label>
|
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
|
||||||
<input type="text" id="node-input-name" placeholder="Name">
|
<input type="text" id="node-input-name" placeholder="Name">
|
||||||
</div>
|
</div>
|
||||||
</script>
|
</script>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright 2013 IBM Corp.
|
* Copyright 2013,2014 IBM Corp.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@ -47,7 +47,7 @@ module.exports = function(RED) {
|
|||||||
RED.httpAdmin.get('/mongodb/:id',function(req,res) {
|
RED.httpAdmin.get('/mongodb/:id',function(req,res) {
|
||||||
var credentials = RED.nodes.getCredentials(req.params.id);
|
var credentials = RED.nodes.getCredentials(req.params.id);
|
||||||
if (credentials) {
|
if (credentials) {
|
||||||
res.send(JSON.stringify({user:credentials.user,hasPassword:(credentials.password&&credentials.password!="")}));
|
res.send(JSON.stringify({user:credentials.user,hasPassword:(credentials.password&&credentials.password!=="")}));
|
||||||
} else {
|
} else {
|
||||||
res.send(JSON.stringify({}));
|
res.send(JSON.stringify({}));
|
||||||
}
|
}
|
||||||
@ -127,7 +127,7 @@ module.exports = function(RED) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (node.operation == "delete") {
|
if (node.operation == "delete") {
|
||||||
coll.remove(msg.payload, {w:1}, function(err, items){ if (err) node.error(err); });
|
coll.remove(msg.payload, {w:1}, function(err, items){ if (err) { node.error(err); } });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user