2020-08-05 18:38:55 +02:00
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
2020-08-07 16:50:18 +02:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2020-08-05 18:38:55 +02: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.
|
|
|
|
*/
|
|
|
|
|
2020-04-20 19:47:45 +02:00
|
|
|
// import {RecordRequester, ReplayRequester} from "./matrix/net/request/replay.js";
|
2020-04-20 21:56:10 +02:00
|
|
|
import {SessionContainer} from "./matrix/SessionContainer.js";
|
2020-10-09 09:59:59 +02:00
|
|
|
import {RootViewModel} from "./domain/RootViewModel.js";
|
2020-10-12 18:31:55 +02:00
|
|
|
import {createNavigation, createRouter} from "./domain/navigation/index.js";
|
2020-08-07 16:50:18 +02:00
|
|
|
// 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-10-26 15:44:11 +01:00
|
|
|
export async function main(platform) {
|
2019-06-26 22:31:36 +02:00
|
|
|
try {
|
2019-12-23 14:29:19 +01:00
|
|
|
// to replay:
|
|
|
|
// const fetchLog = await (await fetch("/fetchlogs/constrainterror.json")).json();
|
|
|
|
// const replay = new ReplayRequester(fetchLog, {delay: false});
|
|
|
|
// const request = replay.request;
|
|
|
|
|
|
|
|
// to record:
|
2020-08-05 17:36:44 +02:00
|
|
|
// const recorder = new RecordRequester(createFetchRequest(clock.createTimeout));
|
2019-12-23 14:29:19 +01:00
|
|
|
// const request = recorder.request;
|
|
|
|
// window.getBrawlFetchLog = () => recorder.log();
|
2020-10-16 12:49:42 +02:00
|
|
|
const navigation = createNavigation();
|
2020-10-26 15:44:11 +01:00
|
|
|
platform.setNavigation(navigation);
|
|
|
|
const urlRouter = createRouter({navigation, history: platform.history});
|
2020-10-09 09:56:01 +02:00
|
|
|
urlRouter.attach();
|
2020-10-26 15:44:11 +01:00
|
|
|
const olmPromise = platform.loadOlm();
|
|
|
|
const workerPromise = platform.loadOlmWorker();
|
2020-10-06 18:06:11 +02:00
|
|
|
|
2020-10-09 09:59:59 +02:00
|
|
|
const vm = new RootViewModel({
|
2020-04-20 21:56:10 +02:00
|
|
|
createSessionContainer: () => {
|
2020-10-26 15:44:11 +01:00
|
|
|
return new SessionContainer({platform, olmPromise, workerPromise});
|
2020-04-20 21:56:10 +02:00
|
|
|
},
|
2020-10-26 15:44:11 +01:00
|
|
|
platform,
|
2020-10-16 13:02:21 +02:00
|
|
|
// the only public interface of the router is to create urls,
|
|
|
|
// so we call it that in the view models
|
|
|
|
urlCreator: urlRouter,
|
2020-10-16 12:49:42 +02:00
|
|
|
navigation,
|
2019-07-31 00:07:04 +02:00
|
|
|
});
|
2020-10-16 12:46:14 +02:00
|
|
|
await vm.load();
|
2020-10-26 15:44:11 +01:00
|
|
|
platform.createAndMountRootView(vm);
|
2019-06-26 22:31:36 +02:00
|
|
|
} catch(err) {
|
2020-10-16 13:03:16 +02:00
|
|
|
console.error(`${err.message}:\n${err.stack}`);
|
2019-06-26 22:31:36 +02:00
|
|
|
}
|
2019-02-04 23:31:08 +01:00
|
|
|
}
|