|
|
|
@ -2,6 +2,7 @@ import React from 'react';
|
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
|
import { setupBrowserNotifications } from 'flavours/glitch/actions/notifications';
|
|
|
|
|
import Mastodon, { store } from 'flavours/glitch/containers/mastodon';
|
|
|
|
|
import { me } from 'flavours/glitch/initial_state';
|
|
|
|
|
import ready from 'flavours/glitch/ready';
|
|
|
|
|
|
|
|
|
|
const perf = require('flavours/glitch/performance');
|
|
|
|
@ -19,23 +20,19 @@ function main() {
|
|
|
|
|
ReactDOM.render(<Mastodon {...props} />, mountNode);
|
|
|
|
|
store.dispatch(setupBrowserNotifications());
|
|
|
|
|
|
|
|
|
|
if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
|
|
|
|
|
const [{ Workbox }, { me }] = await Promise.all([
|
|
|
|
|
import('workbox-window'),
|
|
|
|
|
import('flavours/glitch/initial_state'),
|
|
|
|
|
]);
|
|
|
|
|
if (process.env.NODE_ENV === 'production' && me && 'serviceWorker' in navigator) {
|
|
|
|
|
const { Workbox } = await import('workbox-window');
|
|
|
|
|
const wb = new Workbox('/sw.js');
|
|
|
|
|
/** @type {ServiceWorkerRegistration} */
|
|
|
|
|
let registration;
|
|
|
|
|
|
|
|
|
|
if (me) {
|
|
|
|
|
const wb = new Workbox('/sw.js');
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
await wb.register();
|
|
|
|
|
} catch (err) {
|
|
|
|
|
console.error(err);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
try {
|
|
|
|
|
registration = await wb.register();
|
|
|
|
|
} catch (err) {
|
|
|
|
|
console.error(err);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (registration) {
|
|
|
|
|
const registerPushNotifications = await import('flavours/glitch/actions/push_notifications');
|
|
|
|
|
|
|
|
|
|
store.dispatch(registerPushNotifications.register());
|
|
|
|
|