hydrogen-web/src/main.js

101 lines
3.7 KiB
JavaScript
Raw Normal View History

2020-08-05 22:08:55 +05:30
/*
Copyright 2020 Bruno Windels <bruno@windels.cloud>
Copyright 2020 The Matrix.org Foundation C.I.C.
2020-08-05 22:08:55 +05:30
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.
*/
2020-04-20 23:17:45 +05:30
// import {RecordRequester, ReplayRequester} from "./matrix/net/request/replay.js";
import {createFetchRequest} from "./matrix/net/request/fetch.js";
import {xhrRequest} from "./matrix/net/request/xhr.js";
2020-04-21 01:26:10 +05:30
import {SessionContainer} from "./matrix/SessionContainer.js";
import {StorageFactory} from "./matrix/storage/idb/StorageFactory.js";
import {SessionInfoStorage} from "./matrix/sessioninfo/localstorage/SessionInfoStorage.js";
import {BrawlViewModel} from "./domain/BrawlViewModel.js";
import {BrawlView} from "./ui/web/BrawlView.js";
2020-04-21 01:26:10 +05:30
import {Clock} from "./ui/web/dom/Clock.js";
import {OnlineStatus} from "./ui/web/dom/OnlineStatus.js";
2019-02-27 03:15:58 +05:30
2020-08-27 16:54:55 +05:30
function addScript(src) {
return new Promise(function (resolve, reject) {
var s = document.createElement("script");
s.setAttribute("src", src );
s.onload=resolve;
s.onerror=reject;
document.body.appendChild(s);
});
}
async function loadOlm(olmPaths) {
if (olmPaths) {
if (window.WebAssembly) {
await addScript(olmPaths.wasmBundle);
await window.Olm.init({locateFile: () => olmPaths.wasm});
} else {
await addScript(olmPaths.legacyBundle);
await window.Olm.init();
}
return window.Olm;
}
return null;
}
// Don't use a default export here, as we use multiple entries during legacy build,
// which does not support default exports,
// see https://github.com/rollup/plugins/tree/master/packages/multi-entry
2020-08-27 16:54:55 +05:30
export async function main(container, olmPaths) {
2019-06-27 02:01:36 +05:30
try {
// to replay:
// const fetchLog = await (await fetch("/fetchlogs/constrainterror.json")).json();
// const replay = new ReplayRequester(fetchLog, {delay: false});
// const request = replay.request;
// to record:
// const recorder = new RecordRequester(createFetchRequest(clock.createTimeout));
// const request = recorder.request;
// window.getBrawlFetchLog = () => recorder.log();
2020-04-21 01:26:10 +05:30
const clock = new Clock();
let request;
if (typeof fetch === "function") {
request = createFetchRequest(clock.createTimeout);
} else {
request = xhrRequest;
}
const sessionInfoStorage = new SessionInfoStorage("brawl_sessions_v1");
const storageFactory = new StorageFactory();
2020-04-18 22:46:16 +05:30
2019-07-31 03:37:04 +05:30
const vm = new BrawlViewModel({
2020-04-21 01:26:10 +05:30
createSessionContainer: () => {
return new SessionContainer({
random: Math.random,
onlineStatus: new OnlineStatus(),
storageFactory,
2020-04-21 01:26:10 +05:30
sessionInfoStorage,
request,
clock,
2020-08-27 16:54:55 +05:30
olmPromise: loadOlm(olmPaths),
2020-04-21 01:26:10 +05:30
});
},
sessionInfoStorage,
storageFactory,
2020-04-21 01:26:10 +05:30
clock,
2019-07-31 03:37:04 +05:30
});
window.__brawlViewModel = vm;
2019-07-31 03:37:04 +05:30
await vm.load();
const view = new BrawlView(vm);
container.appendChild(view.mount());
2019-06-27 02:01:36 +05:30
} catch(err) {
2019-06-02 18:29:30 +05:30
console.error(`${err.message}:\n${err.stack}`);
2019-06-27 02:01:36 +05:30
}
}