mirror of
				https://github.com/node-red/node-red-nodes.git
				synced 2025-03-01 10:37:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
 | |
| <script type="text/html" data-template-name="exif">
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-mode"><i class="fa fa-dot-circle-o"></i> Mode</label>
 | |
|         <select style="width:70%" id="node-input-mode">
 | |
|             <option value="normal">Standard node</option>
 | |
|             <option value="worldmap">Use with Worldmap-in node</option>
 | |
|         </select>
 | |
|     </div>
 | |
|     <div class="form-row" id="node-exif-prop-select">
 | |
|         <label for="node-input-property"><i class="fa fa-ellipsis-h"></i> <span data-i18n="node-red:common.label.property"></span></label>
 | |
|         <input type="text" id="node-input-property" style="width:70%;"/>
 | |
|     </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/javascript">
 | |
|     RED.nodes.registerType('exif',{
 | |
|         category: 'utility',
 | |
|         color:"#f1c2f0",
 | |
|         defaults: {
 | |
|             name: {value:""},
 | |
|             mode: {value:"normal"},
 | |
|             property: {value:"payload",required:true}
 | |
|         },
 | |
|         inputs:1,
 | |
|         outputs:1,
 | |
|         icon: "watch.png",
 | |
|         label: function() {
 | |
|             return this.name||"exif";
 | |
|         },
 | |
|         labelStyle: function() {
 | |
|             return this.name?"node_label_italic":"";
 | |
|         },
 | |
|         oneditprepare: function() {
 | |
|             if (this.property === undefined) { $("#node-input-property").val("payload"); }
 | |
|             $("#node-input-property").typedInput({default:'msg',types:['msg']});
 | |
| 
 | |
|             $("#node-input-mode").change(function() {
 | |
|                 if ($("#node-input-mode").val() === "worldmap") {
 | |
|                     $("#node-exif-prop-select").hide();
 | |
|                 }
 | |
|                 else { $("#node-exif-prop-select").show(); }
 | |
|             });
 | |
|         }
 | |
|     });
 | |
| </script>
 |