2015-06-23 11:41:25 -04:00
|
|
|
/*
|
2016-01-06 23:17:56 -05:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2017-02-24 06:45:28 -05:00
|
|
|
Copyright 2017 Vector Creations Ltd
|
2018-09-03 08:01:52 -04:00
|
|
|
Copyright 2018 New Vector Ltd
|
2015-06-23 11:41:25 -04:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-01-18 11:06:02 -05:00
|
|
|
// Require common CSS here; this will make webpack process it into bundle.css.
|
|
|
|
// Our own CSS (which is themed) is imported via separate webpack entry points
|
|
|
|
// in webpack.config.js
|
2018-04-25 12:33:18 -04:00
|
|
|
require('gemini-scrollbar/gemini-scrollbar.css');
|
|
|
|
require('gfm.css/gfm.css');
|
|
|
|
require('highlight.js/styles/github.css');
|
|
|
|
require('draft-js/dist/Draft.css');
|
2015-12-01 13:05:43 -05:00
|
|
|
|
2018-11-22 11:21:55 -05:00
|
|
|
import './rageshakesetup';
|
|
|
|
|
2018-09-03 08:01:52 -04:00
|
|
|
import React from 'react';
|
|
|
|
// add React and ReactPerf to the global namespace, to make them easier to
|
|
|
|
// access via the console
|
|
|
|
global.React = React;
|
2016-04-17 16:06:51 -04:00
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
2018-09-03 08:01:52 -04:00
|
|
|
global.Perf = require('react-addons-perf');
|
2016-04-17 16:06:51 -04:00
|
|
|
}
|
|
|
|
|
2018-11-22 13:27:53 -05:00
|
|
|
import './modernizr';
|
2018-09-03 08:01:52 -04:00
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import sdk from 'matrix-react-sdk';
|
|
|
|
import PlatformPeg from 'matrix-react-sdk/lib/PlatformPeg';
|
2015-11-30 12:31:32 -05:00
|
|
|
sdk.loadSkin(require('../component-index'));
|
2018-09-03 08:01:52 -04:00
|
|
|
import VectorConferenceHandler from 'matrix-react-sdk/lib/VectorConferenceHandler';
|
2017-07-12 19:48:31 -04:00
|
|
|
import Promise from 'bluebird';
|
2018-09-03 08:01:52 -04:00
|
|
|
import request from 'browser-request';
|
2017-05-24 06:27:06 -04:00
|
|
|
import * as languageHandler from 'matrix-react-sdk/lib/languageHandler';
|
2016-08-12 06:01:01 -04:00
|
|
|
|
2016-08-10 20:55:51 -04:00
|
|
|
import url from 'url';
|
2015-06-09 12:40:42 -04:00
|
|
|
|
2016-08-09 19:15:04 -04:00
|
|
|
import {parseQs, parseQsFromFragment} from './url_utils';
|
2016-11-02 11:12:51 -04:00
|
|
|
import Platform from './platform';
|
2015-10-12 05:11:02 -04:00
|
|
|
|
2017-04-06 06:15:14 -04:00
|
|
|
import MatrixClientPeg from 'matrix-react-sdk/lib/MatrixClientPeg';
|
2018-11-22 13:25:55 -05:00
|
|
|
import SettingsStore from "matrix-react-sdk/lib/settings/SettingsStore";
|
2017-11-08 09:55:30 -05:00
|
|
|
import Tinter from 'matrix-react-sdk/lib/Tinter';
|
2017-11-16 22:50:29 -05:00
|
|
|
import SdkConfig from "matrix-react-sdk/lib/SdkConfig";
|
2017-04-06 06:15:14 -04:00
|
|
|
|
2018-09-26 11:44:52 -04:00
|
|
|
import Olm from 'olm';
|
|
|
|
|
2018-09-03 08:01:52 -04:00
|
|
|
import CallHandler from 'matrix-react-sdk/lib/CallHandler';
|
2015-11-30 13:10:09 -05:00
|
|
|
|
2018-09-03 15:38:30 -04:00
|
|
|
import {getVectorConfig} from './getconfig';
|
|
|
|
|
2018-09-03 08:01:52 -04:00
|
|
|
let lastLocationHashSet = null;
|
|
|
|
|
2018-10-05 12:05:25 -04:00
|
|
|
// Disable warnings for now: we use deprecated bluebird functions
|
|
|
|
// and need to migrate, but they spam the console with warnings.
|
|
|
|
Promise.config({warnings: false});
|
|
|
|
|
2015-10-28 13:39:50 -04:00
|
|
|
function checkBrowserFeatures(featureList) {
|
|
|
|
if (!window.Modernizr) {
|
|
|
|
console.error("Cannot check features - Modernizr global is missing.");
|
|
|
|
return false;
|
|
|
|
}
|
2018-11-22 13:25:55 -05:00
|
|
|
let featureComplete = true;
|
|
|
|
for (let i = 0; i < featureList.length; i++) {
|
2015-10-28 13:39:50 -04:00
|
|
|
if (window.Modernizr[featureList[i]] === undefined) {
|
|
|
|
console.error(
|
|
|
|
"Looked for feature '%s' but Modernizr has no results for this. " +
|
2018-11-22 13:25:55 -05:00
|
|
|
"Has it been configured correctly?", featureList[i],
|
2015-10-28 13:39:50 -04:00
|
|
|
);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (window.Modernizr[featureList[i]] === false) {
|
|
|
|
console.error("Browser missing feature: '%s'", featureList[i]);
|
|
|
|
// toggle flag rather than return early so we log all missing features
|
|
|
|
// rather than just the first.
|
|
|
|
featureComplete = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return featureComplete;
|
|
|
|
}
|
|
|
|
|
2017-03-08 09:57:13 -05:00
|
|
|
// Parse the given window.location and return parameters that can be used when calling
|
|
|
|
// MatrixChat.showScreen(screen, params)
|
|
|
|
function getScreenFromLocation(location) {
|
|
|
|
const fragparts = parseQsFromFragment(location);
|
|
|
|
return {
|
|
|
|
screen: fragparts.location.substring(1),
|
|
|
|
params: fragparts.params,
|
2018-11-22 13:25:55 -05:00
|
|
|
};
|
2017-03-08 09:57:13 -05:00
|
|
|
}
|
|
|
|
|
2015-07-15 15:33:12 -04:00
|
|
|
// Here, we do some crude URL analysis to allow
|
2016-02-23 05:57:50 -05:00
|
|
|
// deep-linking.
|
2015-07-15 14:25:36 -04:00
|
|
|
function routeUrl(location) {
|
2016-06-08 13:46:21 -04:00
|
|
|
if (!window.matrixChat) return;
|
|
|
|
|
2017-03-08 09:57:13 -05:00
|
|
|
console.log("Routing URL ", location.href);
|
|
|
|
const s = getScreenFromLocation(location);
|
|
|
|
window.matrixChat.showScreen(s.screen, s.params);
|
2015-07-15 14:25:36 -04:00
|
|
|
}
|
|
|
|
|
2015-07-20 15:20:17 -04:00
|
|
|
function onHashChange(ev) {
|
2015-08-06 09:58:52 -04:00
|
|
|
if (decodeURIComponent(window.location.hash) == lastLocationHashSet) {
|
|
|
|
// we just set this: no need to route it!
|
|
|
|
return;
|
|
|
|
}
|
2015-07-20 15:20:17 -04:00
|
|
|
routeUrl(window.location);
|
|
|
|
}
|
|
|
|
|
2015-07-15 15:33:12 -04:00
|
|
|
// This will be called whenever the SDK changes screens,
|
|
|
|
// so a web page can update the URL bar appropriately.
|
2018-09-03 08:01:52 -04:00
|
|
|
function onNewScreen(screen) {
|
2016-04-13 17:18:26 -04:00
|
|
|
console.log("newscreen "+screen);
|
2018-11-22 13:25:55 -05:00
|
|
|
const hash = '#/' + screen;
|
2017-03-08 09:57:13 -05:00
|
|
|
lastLocationHashSet = hash;
|
|
|
|
window.location.hash = hash;
|
2018-11-22 13:25:55 -05:00
|
|
|
}
|
2015-07-15 14:25:36 -04:00
|
|
|
|
2015-07-15 15:33:12 -04:00
|
|
|
// We use this to work out what URL the SDK should
|
|
|
|
// pass through when registering to allow the user to
|
|
|
|
// click back to the client having registered.
|
|
|
|
// It's up to us to recognise if we're loaded with
|
|
|
|
// this URL and tell MatrixClient to resume registration.
|
2016-12-23 22:18:12 -05:00
|
|
|
//
|
|
|
|
// If we're in electron, we should never pass through a file:// URL otherwise
|
|
|
|
// the identity server will try to 302 the browser to it, which breaks horribly.
|
|
|
|
// so in that instance, hardcode to use riot.im/app for now instead.
|
2018-09-03 08:01:52 -04:00
|
|
|
function makeRegistrationUrl(params) {
|
2017-02-24 06:45:28 -05:00
|
|
|
let url;
|
2016-12-23 22:18:12 -05:00
|
|
|
if (window.location.protocol === "file:") {
|
2017-02-24 06:45:28 -05:00
|
|
|
url = 'https://riot.im/app/#/register';
|
|
|
|
} else {
|
|
|
|
url = (
|
|
|
|
window.location.protocol + '//' +
|
|
|
|
window.location.host +
|
|
|
|
window.location.pathname +
|
|
|
|
'#/register'
|
|
|
|
);
|
2016-12-23 22:18:12 -05:00
|
|
|
}
|
2017-02-24 06:45:28 -05:00
|
|
|
|
|
|
|
const keys = Object.keys(params);
|
|
|
|
for (let i = 0; i < keys.length; ++i) {
|
|
|
|
if (i == 0) {
|
|
|
|
url += '?';
|
|
|
|
} else {
|
|
|
|
url += '&';
|
|
|
|
}
|
|
|
|
const k = keys[i];
|
|
|
|
url += k + '=' + encodeURIComponent(params[k]);
|
2016-12-23 22:18:12 -05:00
|
|
|
}
|
2017-02-24 06:45:28 -05:00
|
|
|
return url;
|
2015-07-15 15:33:12 -04:00
|
|
|
}
|
|
|
|
|
2018-11-22 13:25:55 -05:00
|
|
|
export function getConfig(configJsonFilename) {
|
2018-10-02 20:27:19 -04:00
|
|
|
return new Promise(function(resolve, reject) {
|
|
|
|
request(
|
|
|
|
{ method: "GET", url: configJsonFilename },
|
|
|
|
(err, response, body) => {
|
|
|
|
if (err || response.status < 200 || response.status >= 300) {
|
|
|
|
// Lack of a config isn't an error, we should
|
|
|
|
// just use the defaults.
|
|
|
|
// Also treat a blank config as no config, assuming
|
|
|
|
// the status code is 0, because we don't get 404s
|
|
|
|
// from file: URIs so this is the only way we can
|
|
|
|
// not fail if the file doesn't exist when loading
|
|
|
|
// from a file:// URI.
|
|
|
|
if (response) {
|
|
|
|
if (response.status == 404 || (response.status == 0 && body == '')) {
|
|
|
|
resolve({});
|
|
|
|
}
|
2016-11-03 10:43:10 -04:00
|
|
|
}
|
2018-10-02 20:27:19 -04:00
|
|
|
reject({err: err, response: response});
|
|
|
|
return;
|
2016-11-02 13:57:27 -04:00
|
|
|
}
|
2016-06-07 17:01:56 -04:00
|
|
|
|
2018-10-02 20:27:19 -04:00
|
|
|
// We parse the JSON ourselves rather than use the JSON
|
|
|
|
// parameter, since this throws a parse error on empty
|
|
|
|
// which breaks if there's no config.json and we're
|
|
|
|
// loading from the filesystem (see above).
|
|
|
|
resolve(JSON.parse(body));
|
2018-10-05 11:41:45 -04:00
|
|
|
},
|
2018-10-02 20:27:19 -04:00
|
|
|
);
|
2018-10-05 11:41:45 -04:00
|
|
|
});
|
2016-05-24 20:08:09 -04:00
|
|
|
}
|
|
|
|
|
2017-06-16 10:05:14 -04:00
|
|
|
function onTokenLoginCompleted() {
|
2016-08-10 20:55:51 -04:00
|
|
|
// if we did a token login, we're now left with the token, hs and is
|
|
|
|
// url as query params in the url; a little nasty but let's redirect to
|
|
|
|
// clear them.
|
2018-11-22 13:25:55 -05:00
|
|
|
const parsedUrl = url.parse(window.location.href);
|
2017-06-16 10:05:14 -04:00
|
|
|
parsedUrl.search = "";
|
2018-11-22 13:25:55 -05:00
|
|
|
const formatted = url.format(parsedUrl);
|
2017-06-16 10:05:14 -04:00
|
|
|
console.log("Redirecting to " + formatted + " to drop loginToken " +
|
|
|
|
"from queryparams");
|
|
|
|
window.location.href = formatted;
|
2016-08-10 20:55:51 -04:00
|
|
|
}
|
|
|
|
|
2016-05-24 20:08:09 -04:00
|
|
|
async function loadApp() {
|
2018-09-03 08:01:52 -04:00
|
|
|
MatrixClientPeg.setIndexedDbWorkerScript(window.vector_indexeddb_worker_script);
|
|
|
|
CallHandler.setConferenceHandler(VectorConferenceHandler);
|
|
|
|
|
|
|
|
window.addEventListener('hashchange', onHashChange);
|
|
|
|
|
2018-10-04 15:11:34 -04:00
|
|
|
await loadOlm();
|
2018-09-26 11:44:52 -04:00
|
|
|
|
2017-05-23 11:44:54 -04:00
|
|
|
await loadLanguage();
|
2017-05-23 09:12:53 -04:00
|
|
|
|
2016-08-11 07:44:49 -04:00
|
|
|
const fragparts = parseQsFromFragment(window.location);
|
|
|
|
const params = parseQs(window.location);
|
|
|
|
|
2016-11-02 11:12:51 -04:00
|
|
|
// set the platform for react sdk (our Platform object automatically picks the right one)
|
|
|
|
PlatformPeg.set(new Platform());
|
|
|
|
|
2017-11-16 23:00:30 -05:00
|
|
|
// Load the config file. First try to load up a domain-specific config of the
|
|
|
|
// form "config.$domain.json" and if that fails, fall back to config.json.
|
|
|
|
let configJson;
|
|
|
|
let configError;
|
|
|
|
try {
|
2018-09-05 10:38:00 -04:00
|
|
|
configJson = await getVectorConfig();
|
2017-11-16 23:00:30 -05:00
|
|
|
} catch (e) {
|
|
|
|
configError = e;
|
|
|
|
}
|
2018-03-12 12:15:17 -04:00
|
|
|
|
2017-11-27 13:03:58 -05:00
|
|
|
// XXX: We call this twice, once here and once in MatrixChat as a prop. We call it here to ensure
|
2018-03-12 12:15:17 -04:00
|
|
|
// granular settings are loaded correctly and to avoid duplicating the override logic for the theme.
|
2017-11-16 23:00:30 -05:00
|
|
|
SdkConfig.put(configJson);
|
|
|
|
|
2016-08-11 07:44:49 -04:00
|
|
|
// don't try to redirect to the native apps if we're
|
2017-11-16 23:00:30 -05:00
|
|
|
// verifying a 3pid (but after we've loaded the config)
|
2018-09-28 06:23:46 -04:00
|
|
|
// or if the user is following a deep link
|
|
|
|
// (https://github.com/vector-im/riot-web/issues/7378)
|
|
|
|
const preventRedirect = fragparts.params.client_secret || fragparts.location.length > 0;
|
2016-08-11 07:44:49 -04:00
|
|
|
|
|
|
|
if (!preventRedirect) {
|
2018-09-03 15:38:30 -04:00
|
|
|
const isIos = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
|
|
|
|
const isAndroid = /Android/.test(navigator.userAgent);
|
|
|
|
if (isIos || isAndroid) {
|
|
|
|
if (!document.cookie.split(';').some((c) => c.startsWith('mobile_redirect_to_guide'))) {
|
|
|
|
window.location = "mobile_guide/";
|
2016-08-11 07:44:49 -04:00
|
|
|
return;
|
|
|
|
}
|
2016-05-13 12:14:01 -04:00
|
|
|
}
|
|
|
|
}
|
2016-05-10 19:48:02 -04:00
|
|
|
|
2017-10-20 13:41:39 -04:00
|
|
|
// as quickly as we possibly can, set a default theme...
|
|
|
|
let a;
|
2018-10-23 09:51:06 -04:00
|
|
|
const theme = "dharma";//SettingsStore.getValue("theme");
|
2017-10-20 13:41:39 -04:00
|
|
|
for (let i = 0; (a = document.getElementsByTagName("link")[i]); i++) {
|
|
|
|
const href = a.getAttribute("href");
|
2017-11-15 10:55:33 -05:00
|
|
|
if (!href) continue;
|
2017-10-20 13:41:39 -04:00
|
|
|
// shouldn't we be using the 'title' tag rather than the href?
|
|
|
|
const match = href.match(/^bundles\/.*\/theme-(.*)\.css$/);
|
|
|
|
if (match) {
|
2017-11-08 09:55:30 -05:00
|
|
|
if (match[1] === theme) {
|
2017-11-04 20:40:13 -04:00
|
|
|
// remove the disabled flag off the stylesheet
|
2018-03-12 12:15:17 -04:00
|
|
|
|
|
|
|
// Firefox requires setting the attribute to false, so do
|
|
|
|
// that instead of removing it. Related:
|
|
|
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=1281135
|
|
|
|
a.disabled = false;
|
2017-11-08 09:55:30 -05:00
|
|
|
|
|
|
|
// in case the Tinter.tint() in MatrixChat fires before the
|
2017-11-14 10:17:32 -05:00
|
|
|
// CSS has actually loaded (which in practice happens)...
|
|
|
|
|
2018-07-24 07:38:49 -04:00
|
|
|
// This if fixes Tinter.setTheme to not fire on Firefox
|
|
|
|
// in case it is the first time loading Riot.
|
|
|
|
// `InstallTrigger` is a Object which only exists on Firefox
|
|
|
|
// (it is used for their Plugins) and can be used as a
|
2018-11-22 13:25:55 -05:00
|
|
|
// feature check.
|
2018-07-24 07:38:49 -04:00
|
|
|
// Firefox loads css always before js. This is why we dont use
|
|
|
|
// onload or it's EventListener as thoose will never trigger.
|
2018-05-31 16:32:29 -04:00
|
|
|
if (typeof InstallTrigger !== 'undefined') {
|
2017-11-08 09:55:30 -05:00
|
|
|
Tinter.setTheme(theme);
|
2018-05-31 16:32:29 -04:00
|
|
|
} else {
|
2018-07-24 07:38:49 -04:00
|
|
|
// FIXME: we should probably block loading the app or even
|
|
|
|
// showing a spinner until the theme is loaded, to avoid
|
|
|
|
// flashes of unstyled content.
|
2018-05-31 16:32:29 -04:00
|
|
|
a.onload = () => {
|
|
|
|
Tinter.setTheme(theme);
|
|
|
|
};
|
|
|
|
}
|
2018-03-12 12:15:17 -04:00
|
|
|
} else {
|
|
|
|
// Firefox requires this to not be done via `setAttribute`
|
|
|
|
// or via HTML.
|
|
|
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=1281135
|
|
|
|
a.disabled = true;
|
2017-10-20 13:41:39 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-03 08:01:52 -04:00
|
|
|
const validBrowser = checkBrowserFeatures([
|
|
|
|
"displaytable", "flexbox", "es5object", "es5function", "localstorage",
|
|
|
|
"objectfit", "indexeddb", "webworkers",
|
|
|
|
]);
|
|
|
|
|
|
|
|
const acceptInvalidBrowser = window.localStorage && window.localStorage.getItem('mx_accepts_unsupported_browser');
|
2017-04-21 18:08:49 -04:00
|
|
|
|
2016-04-13 16:01:24 -04:00
|
|
|
console.log("Vector starting at "+window.location);
|
2016-06-08 13:46:21 -04:00
|
|
|
if (configError) {
|
|
|
|
window.matrixChat = ReactDOM.render(<div className="error">
|
|
|
|
Unable to load config file: please refresh the page to try again.
|
|
|
|
</div>, document.getElementById('matrixchat'));
|
2018-09-03 08:01:52 -04:00
|
|
|
} else if (validBrowser || acceptInvalidBrowser) {
|
2017-06-03 07:50:47 -04:00
|
|
|
const platform = PlatformPeg.get();
|
|
|
|
platform.startUpdater();
|
|
|
|
|
2017-03-09 05:04:15 -05:00
|
|
|
const MatrixChat = sdk.getComponent('structures.MatrixChat');
|
2015-11-09 18:13:46 -05:00
|
|
|
window.matrixChat = ReactDOM.render(
|
2015-11-30 13:10:09 -05:00
|
|
|
<MatrixChat
|
|
|
|
onNewScreen={onNewScreen}
|
2017-02-24 06:45:28 -05:00
|
|
|
makeRegistrationUrl={makeRegistrationUrl}
|
2015-11-30 13:10:09 -05:00
|
|
|
ConferenceHandler={VectorConferenceHandler}
|
2015-12-17 10:01:07 -05:00
|
|
|
config={configJson}
|
2016-08-10 20:55:51 -04:00
|
|
|
realQueryParams={params}
|
|
|
|
startingFragmentQueryParams={fragparts.params}
|
2017-11-11 18:47:03 -05:00
|
|
|
enableGuest={!configJson.disable_guests}
|
2017-06-16 10:05:14 -04:00
|
|
|
onTokenLoginCompleted={onTokenLoginCompleted}
|
2017-03-08 09:57:13 -05:00
|
|
|
initialScreenAfterLogin={getScreenFromLocation(window.location)}
|
2017-06-03 07:50:47 -04:00
|
|
|
defaultDeviceDisplayName={platform.getDefaultDeviceDisplayName()}
|
2016-08-10 20:55:51 -04:00
|
|
|
/>,
|
2018-11-22 13:25:55 -05:00
|
|
|
document.getElementById('matrixchat'),
|
2015-10-28 13:39:50 -04:00
|
|
|
);
|
2017-05-27 15:39:52 -04:00
|
|
|
} else {
|
2015-10-28 13:39:50 -04:00
|
|
|
console.error("Browser is missing required features.");
|
|
|
|
// take to a different landing page to AWOOOOOGA at the user
|
2018-11-22 13:25:55 -05:00
|
|
|
const CompatibilityPage = sdk.getComponent("structures.CompatibilityPage");
|
2015-11-09 18:13:46 -05:00
|
|
|
window.matrixChat = ReactDOM.render(
|
2015-10-28 13:39:50 -04:00
|
|
|
<CompatibilityPage onAccept={function() {
|
2017-04-21 21:17:22 -04:00
|
|
|
if (window.localStorage) window.localStorage.setItem('mx_accepts_unsupported_browser', true);
|
2015-10-28 13:39:50 -04:00
|
|
|
console.log("User accepts the compatibility risks.");
|
|
|
|
loadApp();
|
|
|
|
}} />,
|
2018-11-22 13:25:55 -05:00
|
|
|
document.getElementById('matrixchat'),
|
2015-10-28 13:39:50 -04:00
|
|
|
);
|
2016-03-15 14:38:24 -04:00
|
|
|
}
|
2015-10-28 13:39:50 -04:00
|
|
|
}
|
|
|
|
|
2018-10-04 15:11:34 -04:00
|
|
|
function loadOlm() {
|
|
|
|
/* Load Olm. We try the WebAssembly version first, and then the legacy,
|
|
|
|
* asm.js version if that fails. For this reason we need to wait for this
|
|
|
|
* to finish before continuing to load the rest of the app. In future
|
|
|
|
* we could somehow pass a promise down to react-sdk and have it wait on
|
|
|
|
* that so olm can be loading in parallel with the rest of the app.
|
|
|
|
*
|
|
|
|
* We also need to tell the Olm js to look for its wasm file at the same
|
|
|
|
* level as index.html. It really should be in the same place as the js,
|
|
|
|
* ie. in the bundle directory, to avoid caching issues, but as far as I
|
|
|
|
* can tell this is completely impossible with webpack.
|
|
|
|
*/
|
|
|
|
return Olm.init({
|
|
|
|
locateFile: () => 'olm.wasm',
|
|
|
|
}).then(() => {
|
|
|
|
console.log("Using WebAssembly Olm");
|
|
|
|
}).catch((e) => {
|
|
|
|
console.log("Failed to load Olm: trying legacy version");
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const s = document.createElement('script');
|
|
|
|
s.src = 'olm_legacy.js';
|
|
|
|
s.onload = resolve;
|
|
|
|
s.onerror = reject;
|
|
|
|
document.body.appendChild(s);
|
|
|
|
}).then(() => {
|
|
|
|
// Init window.Olm, ie. the one just loaded by the script tag,
|
|
|
|
// not 'Olm' which is still the failed wasm version.
|
|
|
|
return window.Olm.init();
|
|
|
|
}).then(() => {
|
|
|
|
console.log("Using legacy Olm");
|
|
|
|
}).catch((e) => {
|
|
|
|
console.log("Both WebAssembly and asm.js Olm failed!", e);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-23 11:44:54 -04:00
|
|
|
async function loadLanguage() {
|
2017-11-18 00:15:35 -05:00
|
|
|
const prefLang = SettingsStore.getValue("language", null, /*excludeDefault=*/true);
|
2017-05-25 11:47:12 -04:00
|
|
|
let langs = [];
|
|
|
|
|
|
|
|
if (!prefLang) {
|
|
|
|
languageHandler.getLanguagesFromBrowser().forEach((l) => {
|
|
|
|
langs.push(...languageHandler.getNormalizedLanguageKeys(l));
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
langs = [prefLang];
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
await languageHandler.setLanguage(langs);
|
2017-11-25 19:46:47 -05:00
|
|
|
document.documentElement.setAttribute("lang", languageHandler.getCurrentLanguage());
|
2017-05-25 11:47:12 -04:00
|
|
|
} catch (e) {
|
|
|
|
console.error("Unable to set language", e);
|
|
|
|
}
|
2017-05-23 09:12:53 -04:00
|
|
|
}
|
|
|
|
|
2017-05-23 11:44:54 -04:00
|
|
|
loadApp();
|