pinafore/templates/main.js

21 lines
785 B
JavaScript
Raw Normal View History

2018-01-15 01:13:42 +00:00
import { init } from 'sapper/runtime.js'
2018-01-15 17:43:48 +00:00
import { importURLSearchParams } from '../routes/_utils/asyncModules'
import { importIntersectionObserver } from '../routes/_utils/asyncModules'
2018-01-06 23:51:25 +00:00
2018-01-08 07:00:15 +00:00
// polyfills
Promise.all([
typeof URLSearchParams === 'undefined' && importURLSearchParams(),
typeof IntersectionObserver === 'undefined' && importIntersectionObserver()
2018-01-08 07:00:15 +00:00
]).then(() => {
// `routes` is an array of route objects injected by Sapper
init(document.querySelector('#sapper'), __routes__)
2018-01-15 01:13:42 +00:00
if (navigator.serviceWorker && navigator.serviceWorker.controller) {
navigator.serviceWorker.controller.onstatechange = (e) => {
if (e.target.state === 'redundant') {
importToast().then(toast => toast.say('App update available. Reload to update.'));
2018-01-15 01:13:42 +00:00
}
}
}
2018-01-08 07:00:15 +00:00
})