mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-10 21:22:35 +01:00
1e62aa976d
this should greatly reduce the complexity of the l10n code and build pipeline and eliminate the most common error seen in sentry logs (no translate function)
72 lines
2.0 KiB
JavaScript
72 lines
2.0 KiB
JavaScript
/* global LOCALE */
|
|
import 'core-js';
|
|
import 'fast-text-encoding'; // MS Edge support
|
|
import 'fluent-intl-polyfill';
|
|
import choo from 'choo';
|
|
import nanotiming from 'nanotiming';
|
|
import routes from './routes';
|
|
import capabilities from './capabilities';
|
|
import controller from './controller';
|
|
import dragManager from './dragManager';
|
|
import pasteManager from './pasteManager';
|
|
import storage from './storage';
|
|
import metrics from './metrics';
|
|
import experiments from './experiments';
|
|
import Raven from 'raven-js';
|
|
import './main.css';
|
|
import User from './user';
|
|
import { getTranslator } from './locale';
|
|
|
|
(async function start() {
|
|
const app = routes(choo());
|
|
if (process.env.NODE_ENV === 'production') {
|
|
nanotiming.disabled = true;
|
|
}
|
|
if (navigator.doNotTrack !== '1' && window.RAVEN_CONFIG) {
|
|
Raven.config(window.SENTRY_ID, window.RAVEN_CONFIG).install();
|
|
}
|
|
const capa = await capabilities();
|
|
if (capa.streamDownload) {
|
|
navigator.serviceWorker.register('/serviceWorker.js');
|
|
}
|
|
|
|
const translate = await getTranslator(LOCALE);
|
|
|
|
app.use((state, emitter) => {
|
|
state.capabilities = capa;
|
|
state.transfer = null;
|
|
state.fileInfo = null;
|
|
state.translate = translate;
|
|
state.storage = storage;
|
|
state.raven = Raven;
|
|
state.user = new User(storage);
|
|
window.appState = state;
|
|
window.appEmit = emitter.emit.bind(emitter);
|
|
let unsupportedReason = null;
|
|
|
|
if (
|
|
// Firefox < 50
|
|
/firefox/i.test(navigator.userAgent) &&
|
|
parseInt(navigator.userAgent.match(/firefox\/*([^\n\r]*)\./i)[1], 10) < 50
|
|
) {
|
|
unsupportedReason = 'outdated';
|
|
}
|
|
if (!state.capabilities.crypto) {
|
|
unsupportedReason = /firefox/i.test(navigator.userAgent)
|
|
? 'outdated'
|
|
: 'gcm';
|
|
}
|
|
if (unsupportedReason) {
|
|
setTimeout(() =>
|
|
emitter.emit('replaceState', `/unsupported/${unsupportedReason}`)
|
|
);
|
|
}
|
|
});
|
|
app.use(metrics);
|
|
app.use(controller);
|
|
app.use(dragManager);
|
|
app.use(experiments);
|
|
app.use(pasteManager);
|
|
app.mount('body');
|
|
})();
|