Last active
September 28, 2018 00:34
-
-
Save jonpitch/0b324bad7a2b52d856543f991cb1dc45 to your computer and use it in GitHub Desktop.
new build notifier
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Component from '@ember/component'; | |
import layout from '../templates/components/new-build-notifier'; | |
import { MDCSnackbar } from '@material/snackbar'; | |
import { inject as service } from '@ember/service'; | |
import { set } from '@ember/object'; | |
import { task, timeout } from 'ember-concurrency'; | |
import config from 'ember-get-config'; | |
import { isEmpty } from '@ember/utils'; | |
export default Component.extend({ | |
layout, | |
intl: service(), | |
init() { | |
this._super(...arguments); | |
set(this, 'pollingInterval', config.APP.newBuildPollingInterval); | |
}, | |
/** | |
* Delay attaching the updateHandler to prevent users from | |
* seeing a new build notification immediately on page load. | |
*/ | |
setupTask: task(function*() { | |
const env = config.environment; | |
const serviceWorkerEnabled = ['staging', 'production'].indexOf(env) !== -1; | |
const hasServiceWorker = 'serviceWorker' in navigator; | |
const supportsPromises = 'Promise' in window; | |
if (serviceWorkerEnabled && hasServiceWorker && supportsPromises) { | |
yield timeout(this.pollingInterval); | |
this._attachUpdateHandler(); | |
const polling = this.pollingTask.perform(); | |
set(this, 'polling', polling); | |
} | |
}).on('didInsertElement'), | |
pollingTask: task(function*() { | |
while (true) { | |
yield navigator.serviceWorker.register('/sw.js', { | |
scope: '/' | |
}).then((reg) => { | |
reg.update(); | |
}); | |
yield timeout(this.pollingInterval); | |
} | |
}), | |
_attachUpdateHandler() { | |
window.isUpdateAvailable.then(() => { | |
if (!isEmpty(this.polling)) { | |
this.polling.cancel(); | |
} | |
const intl = this.intl; | |
const element = this.element.querySelector('.mdc-snackbar'); | |
const snackbar = new MDCSnackbar(element); | |
const data = { | |
message: intl.t('components.new-build-notifier.text'), | |
actionText: intl.t('components.new-build-notifier.action'), | |
// setTimeout uses 32 bit int | |
// so Number.MAX_SAFE_INTEGER would not work | |
timeout: 2147483647, | |
actionHandler: function () { | |
window.location.reload(true); | |
} | |
}; | |
snackbar.show(data); | |
}); | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { addSuccessHandler } from 'ember-service-worker/service-worker-registration'; | |
window.isUpdateAvailable = | |
'Promise' in window | |
? new Promise(function(resolve) { | |
addSuccessHandler(function(reg) { | |
reg.onupdatefound = function() { | |
const { installing } = reg; | |
installing.onstatechange = function() { | |
if (installing.state === 'activated') { | |
resolve(navigator.serviceWorker.controller !== null); | |
} | |
}; | |
}; | |
}); | |
}) | |
: { | |
then: function () { | |
return false; | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment