Hi everyone,
I have been a bit slack on maintaining this node as it has been doing what I need but I noticed some outstanding issues I have some time to sort...
-
Resetting/cancelling schedules
As it stands until a schedule runs once you can't cancel it. Two options I can see here. Add another output that sends the id of the schedule on creation that could be captured and saved to remove the timer before firing. Maybe a checkbox option to enable it....
The other is check formsg.later.reset
boolean on input that would clear all of the current schedules. This is the easiest to implement, and keeps the node 'clean', one input one output, downside for those feeding multiple schedules no selectivity. Thoughts, comments, other options most welcome. -
Sunset/sunrise option
I like the idea of this, BUT it involves introducing another dependancy (like suncalc), location or at least lattitude config and some sort of hack/fudge to make it work with the underlying later lib. Is it worth it? I am on the side of just closing off this issue, as there are other solutions for anyone needing this. Again all inputs welcome... -
Error handling
I wrote this node before the 'catch' node existed so I usednode.warn()
to indicate errors as I didn't want to throw an error that would stop the runtime. Now we have a catch system, does it make more sense to throw an error that a user can catch and respond to? I am thinking of just upgrading the error calls tonode.error()
and users can deal with that using catch.
Looking forward to your thoughts.