Read the statement by Michael Teeuw here.
Not updating at midnight...
-
@BKeyport I’d be interested in the functions that you are having trouble with, as there are very few.
-
I think I got it figured out - Based on research elsewhere - if I’m correct:
start: function()
is only called upon load, correct?ASSUMING that’s the case, this seems to work better:
start: function () { function scheduleMidnightUpdate() { const now = new Date(); const nextMidnight = new Date(now); // Set the time to midnight nextMidnight.setHours(24, 0, 0, 0); // Calculate the time remaining until the next midnight const timeUntilMidnight = nextMidnight - now; // Schedule the updateDom method to be called at midnight setTimeout(() => { this.updateDom(); // Reschedule the update for the next midnight scheduleMidnightUpdate.call(this); }, timeUntilMidnight); } // Call the function to start the first schedule scheduleMidnightUpdate.call(this); },
Now, This seems to work on testing - but it will fail in testing if I change the clock after starting MM.
Is there anyway y’all can see to improve this, or am I good?
-
@BKeyport
Your DOM might not be rendered yet on “start” imo. I think manipulating DOM after “DOM_OBJECT_CREATED” notification would be safer. -
Yes the documented flow is, as I recall on my phone,
Init
Getstyles
Getscripts
GetTemplates
Start
Notification received
AllModulesStarted
DOMobjectsCreated
getDOM -
-
@BKeyport after the notification
From the doc
DOM_OBJECTS_CREATED - All dom objects are created. The system is now ready to perform visual changes.
-
@sdetweil said in Not updating at midnight...:
DOM_OBJECTS_CREATED - All dom objects are created. The system is now ready to perform visual changes
start: function () { function scheduleMidnightUpdate() { const now = new Date(); const nextMidnight = new Date(now); // Set the time to midnight nextMidnight.setHours(24, 0, 0, 0); // Calculate the time remaining until the next midnight const timeUntilMidnight = nextMidnight - now; // Schedule the updateDom method to be called at midnight setTimeout(() => { this.updateDom(); // Reschedule the update for the next midnight scheduleMidnightUpdate.call(this); }, timeUntilMidnight); } }, notificationReceived: function (notification, payload, sender) { if (notification === 'CALENDAR_EVENTS') { this.storedEvents = JSON.parse(JSON.stringify(payload)) this.updateDom(); } else if (notification === 'DOM_OBJECTS_CREATED') { // Call the function to start the first schedule scheduleMidnightUpdate.call(this); }
This is the only source I see in the docs of that - a notification. Is that correct?
Thanks for the patience after the double misunderstanding.
-
https://docs.magicmirror.builders/development/core-module-file.html
you could have done all the initial event calculating in one function
used interval for the midnights (as it’s a fixed number)
-
@BKeyport MODULE_DOM_CREATED means YOUR getDom()/getTemplateData() has been called
-
@sdetweil yeah, doing it that way just throws headers with “Undefined” until it triggers. I’m not gonna go down that rabbit hole. It seems to work as is, so I’m gonna release for now.