Read the statement by Michael Teeuw here.
Hello-Lucy
-
@mykle1: Very nice module! Works really good, and it’s easy to add more and more modules. unfortunately, with one of them, I have a problem: https://github.com/eouia/MMM-CalendarExt.
I found the wrapper part, but it doesn’t work. The other modules are still working. Do you have an idea?
getDom: function() { if (this.isInit) { R = new Render () R.drawViews( this.CurrentConfigs, this.getEventsToDraw() ) } var wrapper = null wrapper = document.createElement("div") wrapper.id = 'CALEXT_proxy' wrapper.className = 'proxy' return wrapper }, notificationReceived: function(notification, payload) { if (notification === 'HIDE_WORK') { this.hide(1000); } else if (notification === 'SHOW_WORK') { this.show(1000); } },
Thank you!
-
That looks right.
Have you made the other changes that you need to make, according to the readme? That is not the only modification you need to perform.
If you issue the “SHOW MODULES” command, does it show then?
Is there another " notificationReceived: function" within the MMM-CalendarExt.js file? -
@Mykle1 said in Hello-Lucy:
That looks right.
Have you made the other changes that you need to make, according to the readme? That is not the only modification you need to perform.
If you issue the “SHOW MODULES” command, does it show then?
Is there another " notificationReceived: function" within the MMM-CalendarExt.js file?Yes, all other Lucy / Voice modules are still working. I made all changes (accordingly your read me). Within the MMM-CalendarExt.js file are more than one “notificationReceived: function” functions:
notificationReceived: function(notification, payload, sender) { var sessionId = moment().valueOf() if (typeof payload !== 'undefined' && payload !== null) { if (typeof payload.sessionId !== 'undefined') { sessionId = payload.sessionId } } switch (notification) { case 'DOM_OBJECTS_CREATED': if(typeof sender == 'undefined') { this.loadCSS() this.initAfterLoading() } break case 'CHANGED_PROFILE': this.showing = 0 this.isInit = 0 this.initAfterLoading(payload.to) this.sendNotification('CALEXT_SAYS_PROFILE_CHANGED', payload) break case 'CALEXT_ADD_EVENT': if(typeof payload.event !== 'undefined') { this.addInstantEvent(payload.event, sender.name, sessionId) } break case 'CALEXT_REMOVE_EVENT': if(typeof payload.uid !== 'undefined') { this.removeInstantEvent(payload.uid, sender.name, sessionId) } break case 'CALEXT_TELL_SCHEDULE': if(typeof payload.filter !== 'undefined') { this.saySchedule(payload.filter, sender.name, sessionId) } break case 'CALEXT_MODIFY_CONFIG': this.modifyConfiguration(payload.config, sender.name, sessionId) } }, socketNotificationReceived: function(notification, payload) { switch (notification) { case 'CALENDAR_MODIFIED': this.sendNotification("CALEXT_SAYS_CALENDAR_MODIFIED") this.events = payload this.makeIndex() this.draw() break case 'READY_TO_ADD_CALENDAR': this.addCalendars() break; } },
Should I put your function after one of these?
-
I haven’t tested this because I don’t use CalendarExt. Couldn’t get it to work for me :-/
However, please remove the entry you made after the return wrapper and make the entry as I have shown below
notificationReceived: function(notification, payload, sender) { if (notification === 'HIDE_WORK') { this.hide(1000); } else if (notification === 'SHOW_WORK') { this.show(1000); } var sessionId = moment().valueOf() if (typeof payload !== 'undefined' && payload !== null) { if (typeof payload.sessionId !== 'undefined') { sessionId = payload.sessionId } }
-
@Mykle1 That’s it! Thank you! Again :)!
-
@djsunrise19 said in Hello-Lucy:
That’s it! Thank you! Again :)!
You’re welcome, my friend. I’m glad that you find Lucy useful. I don’t think I could live without it now. :-)
-
https://www.youtube.com/watch?v=Ez8axz9bwUg&feature=youtu.be
Thanks Lucy for the to-do list :)
-
No, thank you my friend. I am honored that you use something of mine when you are capable of such greatness.
-
Added 4 new modules to the Hello-Lucy defaults.
-
So, all the credit for this goes to @cowboysdude. I immediately added it to my “must have” list. Yesterday, I had the movie “Predator” playing fullscreen as my live desktop on my MM. The possibilities are endless. Just amazing. Modules look amazing on top of it. This is like “Shock and awe” for MM. Kudos bro!