mirror of
https://github.com/edward-shen/MMM-pages.git
synced 2024-11-21 17:54:29 -08:00
92c4be1973
typo fixes
147 lines
4.8 KiB
JavaScript
147 lines
4.8 KiB
JavaScript
Module.register('MMM-pages', {
|
|
|
|
// We require the older style of function declaration for compatibility
|
|
// reasons.
|
|
|
|
/**
|
|
* By default, we have don't pseudo-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.
|
|
*/
|
|
getStyles: function () {
|
|
return ['pages.css'];
|
|
},
|
|
|
|
|
|
/**
|
|
* Modulo that also works with negative numbers.
|
|
* @param {number} x The dividend
|
|
* @param {number} n The divisor
|
|
*/
|
|
mod: function (x, n) {
|
|
return ((x % n) + n) % n;
|
|
},
|
|
|
|
/**
|
|
* Pseudo-constructor for our module. Makes sure that values aren't negative,
|
|
* and sets the default current page to 0.
|
|
*/
|
|
start: function () {
|
|
this.curPage = 0;
|
|
|
|
// 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);
|
|
},
|
|
|
|
/**
|
|
* Handles incoming notifications. Responds 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.
|
|
* 'REQUEST_CURRENT_PAGE' - Requests the current page number
|
|
* @param {string} notification the notification ID
|
|
* @param {number} payload the page to change to
|
|
*/
|
|
notificationReceived: function (notification, payload) {
|
|
switch (notification) {
|
|
case 'PAGE_CHANGED':
|
|
Log.log(`${this.name} received a notification`
|
|
+ `to change to page ${payload} of type ${typeof payload}`);
|
|
if (typeof payload === 'number') {
|
|
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}`);
|
|
}
|
|
this.updatePages(true);
|
|
break;
|
|
case 'PAGE_INCREMENT':
|
|
Log.log(`${this.name} received a notification to increment pages!`);
|
|
this.curPage = this.mod(this.curPage + 1, this.config.modules.length);
|
|
this.updatePages(true);
|
|
break;
|
|
case 'PAGE_DECREMENT':
|
|
Log.log(`${this.name} received a notification to decrement pages!`);
|
|
this.curPage = this.mod(this.curPage - 1, this.config.modules.length);
|
|
this.updatePages(true);
|
|
break;
|
|
case 'DOM_OBJECTS_CREATED':
|
|
Log.log(`${this.name} received that all objects are created;`
|
|
+ 'will now hide things!');
|
|
this.updatePages(true);
|
|
this.sendNotification('MAX_PAGES_CHANGED', this.config.modules.length);
|
|
break;
|
|
case 'QUERY_PAGE_NUMBER':
|
|
this.sendNotification('PAGE_NUMBER_IS', this.curPage);
|
|
break;
|
|
default:
|
|
}
|
|
},
|
|
|
|
// TODO: Add slide-left/right animation
|
|
/**
|
|
* Handles hiding the current page's elements and showing the next page's
|
|
* elements.
|
|
* @param {boolean} manuallyCalled whether or not to add in an extended delay.
|
|
*/
|
|
updatePages: function (manuallyCalled) {
|
|
if (this.config.modules.length !== 0) {
|
|
// We need to use self because upstream uses an older electron and thus
|
|
// older version of node
|
|
const self = this;
|
|
|
|
Log.log(`updatePages was ${manuallyCalled ? '' : 'not'} manually called`);
|
|
|
|
// Hides the current page's elements.
|
|
MM.getModules()
|
|
.exceptWithClass(this.config.excludes)
|
|
.exceptWithClass(this.config.modules[this.curPage])
|
|
.enumerate((module) => {
|
|
module.hide(
|
|
self.config.animationTime / 2,
|
|
{ lockString: self.identifier }
|
|
);
|
|
});
|
|
|
|
// Shows the next page's elements
|
|
setTimeout(() => MM.getModules()
|
|
.withClass(self.config.modules[self.curPage])
|
|
.enumerate(module => module.show(
|
|
self.config.animationTime / 2,
|
|
{ lockString: self.identifier },
|
|
)), this.config.animationTime / 2);
|
|
|
|
if (manuallyCalled && this.config.rotationTime > 0) {
|
|
Log.log('Manually updated page! setting delay before resuming timer!');
|
|
|
|
clearInterval(this.timer);
|
|
|
|
setTimeout(() => {
|
|
self.timer = setInterval(() => {
|
|
// Incrementing page
|
|
self.curPage = self.mod(
|
|
self.curPage + 1,
|
|
self.config.modules.length
|
|
);
|
|
self.sendNotification('PAGE_INCREMENT');
|
|
self.updatePages(false);
|
|
}, self.config.rotationTime, false);
|
|
}, this.config.rotationDelay);
|
|
}
|
|
} else { Log.error("Pages aren't properly defined!"); }
|
|
},
|
|
});
|