|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- Module.register('MMM-page-indicator', {
-
- /**
- * By default, we should try to make the configuration match the demo
- * implementation. This means 3 pages, and some default enabled styles.
- */
- defaults: {
- pages: 3,
- activeBright: false,
- inactiveDimmed: true,
- inactiveHollow: true,
- },
-
- /**
- * Apply any styles, if we have any.
- */
- getStyles() {
- return ['font-awesome.css', 'page-indicators.css'];
- },
-
- /**
- * Pseudo-constructor for our module. Sets the default current page to 0.
- */
- start() {
- this.curPage = 0;
- },
-
- /**
- * Render the cicles for each page, and highlighting the page we're on.
- */
- getDom() {
- const wrapper = document.createElement('div');
-
- for (let i = 0; i < this.config.pages; i += 1) {
- const circle = document.createElement('i');
-
- if (this.curPage === i) {
- circle.className = 'fa fa-circle indicator';
- if (this.config.activeBright) {
- circle.className += ' bright';
- }
- } else {
- circle.className = 'fa indicator';
-
- if (this.config.inactiveDimmed) {
- circle.className += ' dimmed';
- }
-
- if (this.config.inactiveHollow) {
- circle.className += ' fa-circle-thin';
- } else {
- circle.className += ' fa-circle';
- }
- }
- wrapper.appendChild(circle);
-
- const self = this;
-
- // Lets people change the page by clicking on the respective circle.
- // So apparently this doesn't work if we don't call the last two methods,
- // despite those methods being called in when calling sendNotification.
- // This is likely a bug (because spamming a single button) causes rapid-
- // fire page changing, but for most cases that shouldn't be a problem.
- circle.onclick = () => {
- self.sendNotification('PAGE_CHANGED', i);
- self.curPage = i;
- self.updateDom();
- };
- }
-
- return wrapper;
- },
-
- /**
- * If we recieve a notification that we can respond to, update which page
- * we're suppose to show as active.
- * @param {string} notification The notification ID
- * @param {number} payload the payload type.
- */
- notificationReceived(notification, payload) {
- /**
- * Modulo that also works with negative numbers.
- * @param {number} x The dividend
- * @param {number} n The divisor
- */
- const mod = (x, n) => ((x % n) + n) % n;
-
- if (notification === 'PAGE_CHANGED') {
- Log.log(`[${this.name}]: changing pages to ${payload}`);
- this.curPage = mod(payload, this.config.pages);
- this.updateDom();
- } else if (notification === 'MAX_PAGES_CHANGED') {
- Log.log(`[${this.name}]: Changing maximum pages to ${payload}`);
- this.config.pages = payload;
- if (payload - 1 < this.curPage) {
- this.curPage = payload - 1;
- }
- this.updateDom();
- } else if (notification === 'PAGE_INCREMENT') {
- this.curPage = mod(this.curPage + 1, this.config.pages);
- Log.log(`[${this.name}]: Incrementing page; new page is ${this.curPage}`);
- this.updateDom();
- } else if (notification === 'PAGE_DECREMENT') {
- this.curPage = mod(this.curPage - 1, this.config.pages);
- Log.log(`[${this.name}]: Decrementing page; new page is ${this.curPage}`);
- this.updateDom();
- } else if (notification === 'NEW_PAGE') {
- Log.log(`[${this.name}]: Setting page to ${payload}`);
- this.curPage = payload;
- this.updateDom();
- }
- },
-
- });
|