2022-07-12 02:55:03 +02:00
|
|
|
import * as mobx from "mobx";
|
2022-06-08 02:25:35 +02:00
|
|
|
import * as React from "react";
|
|
|
|
import {createRoot} from 'react-dom/client';
|
|
|
|
import {sprintf} from "sprintf-js";
|
|
|
|
import {Terminal} from 'xterm';
|
|
|
|
import {Main} from "./main";
|
2022-07-11 23:43:18 +02:00
|
|
|
import {WSControl} from "./ws";
|
|
|
|
import {GlobalModel} from "./model";
|
2022-06-17 06:14:26 +02:00
|
|
|
import {v4 as uuidv4} from "uuid";
|
2022-06-08 02:25:35 +02:00
|
|
|
|
2022-07-05 07:37:45 +02:00
|
|
|
// @ts-ignore
|
2022-06-08 02:25:35 +02:00
|
|
|
let VERSION = __SHVERSION__;
|
|
|
|
|
|
|
|
document.addEventListener("DOMContentLoaded", () => {
|
2022-06-17 00:51:17 +02:00
|
|
|
let reactElem = React.createElement(Main, null, null);
|
2022-06-20 22:03:20 +02:00
|
|
|
let elem = document.getElementById("app");
|
2022-06-08 02:25:35 +02:00
|
|
|
let root = createRoot(elem);
|
|
|
|
root.render(reactElem);
|
|
|
|
});
|
|
|
|
|
2022-07-12 02:55:03 +02:00
|
|
|
(window as any).mobx = mobx;
|
2022-08-17 00:59:28 +02:00
|
|
|
(window as any).sprintf = sprintf;
|
2022-07-12 02:55:03 +02:00
|
|
|
|
2022-06-08 02:25:35 +02:00
|
|
|
console.log("SCRIPTHAUS", VERSION)
|