mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Merge pull request #1557 from node-red/inject-node-spinner-and-hours-fixes
remove inject node at specific time spinner
This commit is contained in:
		| @@ -30,7 +30,7 @@ | |||||||
|         <label for="node-input-once"> </label> |         <label for="node-input-once"> </label> | ||||||
|         <input type="checkbox" id="node-input-once" style="display:inline-block; width:15px; vertical-align:baseline;"> |         <input type="checkbox" id="node-input-once" style="display:inline-block; width:15px; vertical-align:baseline;"> | ||||||
|         <span data-i18n="inject.onstart"></span>  |         <span data-i18n="inject.onstart"></span>  | ||||||
|         <input type="text" id="node-input-onceDelay" placeholder="0.1" style="width:45px">  |         <input type="text" id="node-input-onceDelay" placeholder="0.1" style="width:45px; height:28px;">  | ||||||
|         <span data-i18n="inject.onceDelay"></span> |         <span data-i18n="inject.onceDelay"></span> | ||||||
|     </div> |     </div> | ||||||
|  |  | ||||||
| @@ -57,7 +57,7 @@ | |||||||
|     </div> |     </div> | ||||||
|  |  | ||||||
|     <div class="form-row inject-time-row hidden" id="inject-time-row-interval-time"> |     <div class="form-row inject-time-row hidden" id="inject-time-row-interval-time"> | ||||||
|         <span data-i18n="inject.every"></span> <select style="width:90px" id="inject-time-interval-time-units" class="inject-time-int-count" value="1"> |         <span data-i18n="inject.every"></span> <select style="width:90px; margin-left:20px;" id="inject-time-interval-time-units" class="inject-time-int-count" value="1"> | ||||||
|             <option value="1">1</option> |             <option value="1">1</option> | ||||||
|             <option value="2">2</option> |             <option value="2">2</option> | ||||||
|             <option value="3">3</option> |             <option value="3">3</option> | ||||||
| @@ -73,7 +73,7 @@ | |||||||
|         </select> <span data-i18n="inject.minutes"></span><br/> |         </select> <span data-i18n="inject.minutes"></span><br/> | ||||||
|         <span data-i18n="inject.between"></span> <select id="inject-time-interval-time-start" class="inject-time-times"></select> |         <span data-i18n="inject.between"></span> <select id="inject-time-interval-time-start" class="inject-time-times"></select> | ||||||
|         <span data-i18n="inject.and"></span> <select id="inject-time-interval-time-end" class="inject-time-times"></select><br/> |         <span data-i18n="inject.and"></span> <select id="inject-time-interval-time-end" class="inject-time-times"></select><br/> | ||||||
|         <div id="inject-time-interval-time-days" class="inject-time-days"> |         <div id="inject-time-interval-time-days" class="inject-time-days" style="margin-top:5px"> | ||||||
|             <div style="display:inline-block; vertical-align:top; margin-right:5px;" data-i18n="inject.on">on</div> |             <div style="display:inline-block; vertical-align:top; margin-right:5px;" data-i18n="inject.on">on</div> | ||||||
|             <div style="display:inline-block;"> |             <div style="display:inline-block;"> | ||||||
|                 <div> |                 <div> | ||||||
| @@ -94,7 +94,7 @@ | |||||||
|     </div> |     </div> | ||||||
|  |  | ||||||
|     <div class="form-row inject-time-row hidden" id="inject-time-row-time"> |     <div class="form-row inject-time-row hidden" id="inject-time-row-time"> | ||||||
|         <span data-i18n="inject.at"></span> <input id="inject-time-time" value="12:00"></input><br/> |         <span data-i18n="inject.at"></span> <input type="text" id="inject-time-time" value="12:00"></input><br/> | ||||||
|         <div id="inject-time-time-days" class="inject-time-days"> |         <div id="inject-time-time-days" class="inject-time-days"> | ||||||
|             <div style="display:inline-block; vertical-align:top; margin-right:5px;" data-i18n="inject.on"></div> |             <div style="display:inline-block; vertical-align:top; margin-right:5px;" data-i18n="inject.on"></div> | ||||||
|             <div style="display:inline-block;"> |             <div style="display:inline-block;"> | ||||||
| @@ -134,17 +134,20 @@ | |||||||
|         -moz-user-select: none; |         -moz-user-select: none; | ||||||
|         -ms-user-select: none; |         -ms-user-select: none; | ||||||
|         user-select: none; |         user-select: none; | ||||||
|         vertical-align: top; |         vertical-align: baseline; | ||||||
|         width: 100px; |         width: 100px; | ||||||
|     } |     } | ||||||
|     .inject-time-days input { |     .inject-time-days input { | ||||||
|         width: auto; |         width: auto; | ||||||
|  |         vertical-align: baseline; | ||||||
|     } |     } | ||||||
|     .inject-time-times { |     .inject-time-times { | ||||||
|         width: 90px; |         width: 90px; | ||||||
|     } |     } | ||||||
|     #inject-time-time { |     #inject-time-time { | ||||||
|         width: 75px; |         width: 75px; | ||||||
|  |         margin-left: 8px; | ||||||
|  |         margin-bottom: 8px; | ||||||
|     } |     } | ||||||
|     .inject-time-count { |     .inject-time-count { | ||||||
|         width: 40px !important; |         width: 40px !important; | ||||||
| @@ -167,6 +170,8 @@ The default payload is a timestamp of the current time in millisecs since Januar | |||||||
| <p>By default, the node is triggered manually by clicking on its button within the editor. It can also be set to | <p>By default, the node is triggered manually by clicking on its button within the editor. It can also be set to | ||||||
| inject at regular intervals or according to a schedule.</p> | inject at regular intervals or according to a schedule.</p> | ||||||
| <p>It can also be configured to inject once each time the flows are started.</p> | <p>It can also be configured to inject once each time the flows are started.</p> | ||||||
|  | <p>The maximum <i>Interval</i> that can be specified is about 596 hours / 24 days. However if you are looking at intervals | ||||||
|  | greater than one day you should consider using a scheduler node that can cope with power outages and restarts.</p> | ||||||
| <p><b>Note</b>: The <i>"Interval between times"</i> and <i>"at a specific time"</i> options use the standard cron system. | <p><b>Note</b>: The <i>"Interval between times"</i> and <i>"at a specific time"</i> options use the standard cron system. | ||||||
| This means that 20 minutes will be at the next hour, 20 minutes past and 40 minutes past - not in 20 minutes time. | This means that 20 minutes will be at the next hour, 20 minutes past and 40 minutes past - not in 20 minutes time. | ||||||
| If you want every 20 minutes from now - use the <i>"interval"</i> option.</p> | If you want every 20 minutes from now - use the <i>"interval"</i> option.</p> | ||||||
| @@ -182,7 +187,7 @@ If you want every 20 minutes from now - use the <i>"interval"</i> option.</p> | |||||||
|             topic: {value:""}, |             topic: {value:""}, | ||||||
|             payload: {value:"", validate: RED.validators.typedInput("payloadType")}, |             payload: {value:"", validate: RED.validators.typedInput("payloadType")}, | ||||||
|             payloadType: {value:"date"}, |             payloadType: {value:"date"}, | ||||||
|             repeat: {value:"", validate:function(v) { return ((v === "") || (RED.validators.number(v) && (v >= 0))) }}, |             repeat: {value:"", validate:function(v) { return ((v === "") || (RED.validators.number(v) && (v >= 0) && (v <= 2147483))) }}, | ||||||
|             crontab: {value:""}, |             crontab: {value:""}, | ||||||
|             once: {value:false}, |             once: {value:false}, | ||||||
|             onceDelay: {value:0.1} |             onceDelay: {value:0.1} | ||||||
| @@ -275,6 +280,10 @@ If you want every 20 minutes from now - use the <i>"interval"</i> option.</p> | |||||||
|                 } |                 } | ||||||
|             }); |             }); | ||||||
|  |  | ||||||
|  |             $("#node-input-once").change(function() { | ||||||
|  |                 $("#node-input-onceDelay").attr('disabled', !$("#node-input-once").prop('checked')); | ||||||
|  |             }) | ||||||
|  |  | ||||||
|             $(".inject-time-times").each(function() { |             $(".inject-time-times").each(function() { | ||||||
|                 for (var i=0; i<24; i++) { |                 for (var i=0; i<24; i++) { | ||||||
|                     var l = (i<10?"0":"")+i+":00"; |                     var l = (i<10?"0":"")+i+":00"; | ||||||
| @@ -303,35 +312,6 @@ If you want every 20 minutes from now - use the <i>"interval"</i> option.</p> | |||||||
|                 min:1 |                 min:1 | ||||||
|             }); |             }); | ||||||
|  |  | ||||||
|             $.widget( "ui.injecttimespinner", $.ui.spinner, { |  | ||||||
|                 options: { |  | ||||||
|                     // seconds |  | ||||||
|                     step: 60 * 1000, |  | ||||||
|                     // hours |  | ||||||
|                     page: 60 |  | ||||||
|                 }, |  | ||||||
|                 _parse: function( value ) { |  | ||||||
|                     if ( typeof value === "string" ) { |  | ||||||
|                         // already a timestamp |  | ||||||
|                         if ( Number( value ) == value ) { |  | ||||||
|                             return Number( value ); |  | ||||||
|                         } |  | ||||||
|                         var p = value.split(":"); |  | ||||||
|                         var offset = new Date().getTimezoneOffset(); |  | ||||||
|                         return ((Number(p[0])*60)+Number(p[1])+offset)*60*1000; |  | ||||||
|                     } |  | ||||||
|                     return value; |  | ||||||
|                 }, |  | ||||||
|                 _format: function( value ) { |  | ||||||
|                     var d = new Date(value); |  | ||||||
|                     var h = d.getHours(); |  | ||||||
|                     var m = d.getMinutes(); |  | ||||||
|                     return ((h < 10)?"0":"")+h+":"+((m < 10)?"0":"")+m; |  | ||||||
|                 } |  | ||||||
|             }); |  | ||||||
|  |  | ||||||
|             $("#inject-time-time").injecttimespinner(); |  | ||||||
|  |  | ||||||
|             var repeattype = "none"; |             var repeattype = "none"; | ||||||
|             if (this.repeat != "" && this.repeat != 0) { |             if (this.repeat != "" && this.repeat != 0) { | ||||||
|                 repeattype = "interval"; |                 repeattype = "interval"; | ||||||
| @@ -501,9 +481,14 @@ If you want every 20 minutes from now - use the <i>"interval"</i> option.</p> | |||||||
|                         days = days.join(","); |                         days = days.join(","); | ||||||
|                     } |                     } | ||||||
|                     var parts = time.split(":"); |                     var parts = time.split(":"); | ||||||
|  |                     if (parts.length === 2) { | ||||||
|                         repeat = ""; |                         repeat = ""; | ||||||
|  |                         parts[1] = ("00" + (parseInt(parts[1]) % 60)).substr(-2); | ||||||
|  |                         parts[0] = ("00" + (parseInt(parts[0]) % 24)).substr(-2); | ||||||
|                         crontab = parts[1]+" "+parts[0]+" * * "+days; |                         crontab = parts[1]+" "+parts[0]+" * * "+days; | ||||||
|                     } |                     } | ||||||
|  |                     else { crontab = ""; } | ||||||
|  |                 } | ||||||
|             } |             } | ||||||
|  |  | ||||||
|             $("#node-input-repeat").val(repeat); |             $("#node-input-repeat").val(repeat); | ||||||
|   | |||||||
| @@ -27,9 +27,14 @@ module.exports = function(RED) { | |||||||
|         this.crontab = n.crontab; |         this.crontab = n.crontab; | ||||||
|         this.once = n.once; |         this.once = n.once; | ||||||
|         this.onceDelay = (n.onceDelay || 0.1) * 1000; |         this.onceDelay = (n.onceDelay || 0.1) * 1000; | ||||||
|         var node = this; |  | ||||||
|         this.interval_id = null; |         this.interval_id = null; | ||||||
|         this.cronjob = null; |         this.cronjob = null; | ||||||
|  |         var node = this; | ||||||
|  |  | ||||||
|  |         if (node.repeat > 2147483) { | ||||||
|  |             node.error(RED._("inject.errors.toolong", this)); | ||||||
|  |             delete node.repeat; | ||||||
|  |         } | ||||||
|  |  | ||||||
|         node.repeaterSetup = function () { |         node.repeaterSetup = function () { | ||||||
|           if (this.repeat && !isNaN(this.repeat) && this.repeat > 0) { |           if (this.repeat && !isNaN(this.repeat) && this.repeat > 0) { | ||||||
|   | |||||||
| @@ -62,10 +62,11 @@ | |||||||
|         "on": "on", |         "on": "on", | ||||||
|         "onstart": "Inject once after", |         "onstart": "Inject once after", | ||||||
|         "onceDelay": "seconds, then", |         "onceDelay": "seconds, then", | ||||||
|         "tip": "<b>Note:</b> \"interval between times\" and \"at a specific time\" will use cron.<br/>See info box for details.", |         "tip": "<b>Note:</b> \"interval between times\" and \"at a specific time\" will use cron.<br/>\"interval\" should be less than 596 hours.<br/>See info box for details.", | ||||||
|         "success": "Successfully injected: __label__", |         "success": "Successfully injected: __label__", | ||||||
|         "errors": { |         "errors": { | ||||||
|             "failed": "inject failed, see log for details" |             "failed": "inject failed, see log for details", | ||||||
|  |             "toolong": "Interval too large" | ||||||
|         } |         } | ||||||
|     }, |     }, | ||||||
|     "catch": { |     "catch": { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user