MMM-pages/MMM-pages.js

145 lines
4.6 KiB
JavaScript
Raw Normal View History

2018-04-26 00:25:40 -07:00
Module.register('MMM-pages', {
2018-04-26 00:25:40 -07:00
/**
* By default, we have don't psuedo-paginate any modules. We also exclude
* the page indicator by default, in case people actually want to use the
* sister module. We also don't rotate out modules by default.
*/
defaults: {
modules: [],
excludes: ['MMM-page-indicator'],
animationTime: 1000,
rotationTime: 0,
rotationDelay: 10000,
},
/**
* Apply any styles, if we have any.
*/
2018-04-26 00:25:40 -07:00
getStyles() {
return ['pages.css'];
},
/**
* Modulo that also works with negative numbers.
* @param {number} x The dividend
* @param {number} n The divisor
*/
mod(x, n) {
return ((x % n) + n) % n;
},
2018-04-26 00:25:40 -07:00
/**
* Pseudo-constructor for our module. Makes sure that values aren't negative,
* and sets the default current page to 0.
*/
start() {
this.curPage = 0;
2018-04-26 00:25:40 -07:00
// Disable rotation if an invalid input is given
this.config.rotationTime = Math.max(this.config.rotationTime, 0);
this.config.rotationDelay = Math.max(this.config.rotationDelay, 0);
},
2018-04-26 00:25:40 -07:00
/**
* Handles incoming notifications. Repsonds to the following:
* 'PAGE_CHANGED' - Set the page to the specified payload page.
* 'PAGE_INCREMENT' - Move to the next page.
* 'PAGE_DECREMENT' - Move to the previous page.
* 'DOM_OBJECTS_CREATED' - Starts the module.
* @param {string} notification the notification ID
* @param {number} payload the page to change to
*/
notificationReceived(notification, payload) {
switch (notification) {
case 'PAGE_CHANGED':
Log.log(`${this.name} recieved a notification`
+ `to change to page ${payload} of type ${typeof payload}`);
2018-04-28 17:44:44 -07:00
if (typeof payload === 'number') {
2018-04-26 00:25:40 -07:00
this.curPage = payload;
} else {
Log.error('Was asked to change to an invalid number!');
Log.error(`Payload=${payload}, type=${typeof payload},
maxPageIndex=${this.config.modules.length - 1}`);
2017-06-18 13:24:04 -07:00
}
2018-04-26 00:25:40 -07:00
this.updatePages(true);
break;
case 'PAGE_INCREMENT':
Log.log(`${this.name} recieved a notification to increment pages!`);
this.curPage = this.mod(this.curPage + 1, this.config.modules.length);
2018-04-26 00:25:40 -07:00
this.updatePages(true);
break;
case 'PAGE_DECREMENT':
Log.log(`${this.name} recieved a notification to decrement pages!`);
this.curPage = this.mod(this.curPage - 1, this.config.modules.length);
2018-04-26 00:25:40 -07:00
this.updatePages(true);
break;
case 'DOM_OBJECTS_CREATED':
Log.log(`${this.name} recieved that all objects are created;`
+ 'will now hide things!');
this.updatePages(true);
this.sendNotification('MAX_PAGES_CHANGED', this.config.modules.length);
2018-04-26 00:25:40 -07:00
break;
default:
}
},
2018-04-26 00:25:40 -07:00
// TODO: Add slide-left/right animation
/**
* Handles hiding the current page's elements and unhinding the next page's
* elements.
* @param {boolean} manuallyCalled whether or not to add in an extended delay.
*/
updatePages(manuallyCalled) {
if (this.config.modules.length !== 0) {
2018-05-05 19:19:51 -07:00
// We need to use self because upstream uses an older electron and thus
// older version of node
const self = this;
2018-04-26 00:25:40 -07:00
Log.log(`updatePages was ${manuallyCalled ? '' : 'not'} manually called`);
2018-04-26 00:25:40 -07:00
// Hides the current page's elements.
MM.getModules()
.exceptWithClass(this.config.excludes)
.exceptWithClass(this.config.modules[this.curPage])
.enumerate((module) => {
module.hide(
2018-05-05 19:19:51 -07:00
self.config.animationTime / 2,
{ lockString: self.identifier },
2018-04-26 00:25:40 -07:00
);
});
2018-04-26 00:25:40 -07:00
// Shows the next page's elements
setTimeout(() => {
MM.getModules()
2018-05-05 19:19:51 -07:00
.withClass(self.config.modules[self.curPage])
2018-04-26 00:25:40 -07:00
.enumerate((module) => {
module.show(
2018-05-05 19:19:51 -07:00
self.config.animationTime / 2,
{ lockString: self.identifier },
2018-04-26 00:25:40 -07:00
);
});
}, this.config.animationTime / 2);
2018-04-28 15:50:07 -07:00
if (manuallyCalled && this.config.rotationTime > 0) {
2018-04-26 00:25:40 -07:00
Log.log('Manually updated page! setting delay before resuming timer!');
2018-04-26 00:25:40 -07:00
clearInterval(this.timer);
2018-04-26 00:25:40 -07:00
setTimeout(() => {
2018-05-05 19:19:51 -07:00
self.timer = setInterval(() => {
2018-04-26 00:25:40 -07:00
// Incrementing page
2018-05-05 19:19:51 -07:00
self.curPage = self.mod(
self.curPage + 1,
self.config.modules.length,
);
2018-05-05 19:19:51 -07:00
self.sendNotification('PAGE_INCREMENT');
self.updatePages(false);
}, self.config.rotationTime, false);
2018-04-26 00:25:40 -07:00
}, this.config.rotationDelay);
}
} else { Log.error("Pages aren't properly defined!"); }
},
2017-06-18 13:24:04 -07:00
});