mirror of
				https://github.com/node-red/node-red-nodes.git
				synced 2025-03-01 10:37:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			145 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			145 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
 | |
| <script type="text/x-red" data-template-name="mqlight in">
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-service"><i class="fa fa-globe"></i> Service</label>
 | |
|         <input type="text" id="node-input-service">
 | |
|     </div>
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-topic"><i class="fa fa-tasks"></i> Topic</label>
 | |
|         <input type="text" id="node-input-topic" placeholder="nodered/news">
 | |
|     </div>
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-share"><i class="fa fa-tag"></i> Share</label>
 | |
|         <input type="text" id="node-input-share">
 | |
|     </div>
 | |
|     <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>
 | |
| </script>
 | |
| 
 | |
| <script type="text/x-red" data-help-name="mqlight in">
 | |
|     <p>Provides an MQ Light receive client.</p>
 | |
|     <p>Subscribes the client to a destination based on the supplied topic and (optional) share arguments.</p>
 | |
|     <p>Topic can contain any character in the Unicode character set, with # representing a multilevel wildcard
 | |
|     and + a single level wildcard as described <a href="https://developer.ibm.com/messaging/mq-light/wildcard-topicpatterns/">here</a>.
 | |
|     <p>Share identifies a shared destination for which messages are anycast between connected subscribers.
 | |
|     If left blank, it defaults to a private destination.</p>
 | |
|     <p>Received messages will be sent on in <code>msg.payload</code> with their topic sent in <code>msg.topic</code>
 | |
|     and the share, if specified, sent in <code>msg.share</code>.</p>
 | |
| </script>
 | |
| 
 | |
| <script type="text/javascript">
 | |
|     (function() {
 | |
|         RED.nodes.registerType('mqlight in', {
 | |
|             category: 'input',
 | |
|             defaults: {
 | |
|                 name: {value: ""},
 | |
|                 topic: {value: ""},
 | |
|                 share: {value:""},
 | |
|                 service: {type: "mqlight service", required: true}
 | |
|             },
 | |
|             color: "#6da7d1",
 | |
|             inputs: 0,
 | |
|             outputs: 1,
 | |
|             icon: "mqlightin.png",
 | |
|             label: function() {
 | |
|                 if (this.topic) {
 | |
|                     return this.topic+(this.share?" ["+this.share+"]":"");
 | |
|                 } else {
 | |
|                     return this.name || "mqlight";
 | |
|                 }
 | |
|             },
 | |
|             labelStyle: function() {
 | |
|                 return this.name ? "node_label_italic" : "";
 | |
|             }
 | |
|         });
 | |
|     })();
 | |
| </script>
 | |
| 
 | |
| <script type="text/x-red" data-template-name="mqlight out">
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-service"><i class="fa fa-globe"></i> Service</label>
 | |
|         <input type="text" id="node-input-service">
 | |
|     </div>
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-topic"><i class="fa fa-tasks"></i> Topic</label>
 | |
|         <input type="text" id="node-input-topic" placeholder="nodered/news">
 | |
|     </div>
 | |
|     <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>
 | |
| </script>
 | |
| 
 | |
| <script type="text/x-red" data-help-name="mqlight out">
 | |
|     <p>Provides an MQ Light send client.</p>
 | |
|     <p>Sends the value passed in on <code>msg.payload</code> to the specified topic.</p>
 | |
|     <p>The topic can be passed in on <code>msg.topic</code>, however the topic in the node
 | |
|     must be blank for this to take effect. If the topic is set in the node <code>msg.topic</code>
 | |
|     will be overridden.</p>
 | |
| </script>
 | |
| 
 | |
| <script type="text/javascript">
 | |
|     (function() {
 | |
|         RED.nodes.registerType('mqlight out', {
 | |
|             category: 'output',
 | |
|             defaults: {
 | |
|                 name: {value: ""},
 | |
|                 topic: {value: ""},
 | |
|                 service: {type: "mqlight service", required: true}
 | |
|             },
 | |
|             color: "#6da7d1",
 | |
|             inputs: 1,
 | |
|             outputs: 0,
 | |
|             align: "right",
 | |
|             icon: "mqlightin.png",
 | |
|             label: function() {
 | |
|                 return this.name || this.topic || "mqlight";
 | |
|             },
 | |
|             labelStyle: function() {
 | |
|                 return this.name ? "node_label_italic" : "";
 | |
|             }
 | |
|         });
 | |
|     })();
 | |
| </script>
 | |
| 
 | |
| <script type="text/x-red" data-template-name="mqlight service">
 | |
|     <div class="form-row node-input-service">
 | |
|         <label for="node-config-input-service"><i class="fa fa-globe"></i> Service</label>
 | |
|         <input type="text" id="node-config-input-service" placeholder="amqp://localhost">
 | |
|     </div>
 | |
|     <div class="form-row">
 | |
|         <label for="node-config-input-clientid"><i class="fa fa-tag"></i> ID</label>
 | |
|         <input type="text" id="node-config-input-clientid" placeholder="Leave blank for auto generated">
 | |
|     </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">
 | |
|     </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">
 | |
|     </div>
 | |
| </script>
 | |
| 
 | |
| <script type="text/javascript">
 | |
|     RED.nodes.registerType('mqlight service',{
 | |
|         category: 'config',
 | |
|         defaults: {
 | |
|             service: {value: "amqp://localhost", required: true},
 | |
|             clientid: {value: ""}
 | |
|         },
 | |
|         credentials: {
 | |
|             user: {type: "text"},
 | |
|             password: {type: "password"}
 | |
|         },
 | |
|         label: function() {
 | |
|             if (this.service === "") {
 | |
|                 this.service = "localhost";
 | |
|             }
 | |
|             return (this.clientid ? this.clientid + "@" : "") + this.service;
 | |
|         }
 | |
|     });
 | |
| </script>
 |