waveterm/src/sh2.ts

24 lines
655 B
TypeScript
Raw Normal View History

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-06-16 09:31:54 +02:00
import {GlobalWS} from "./ws";
2022-06-17 06:14:26 +02:00
import {v4 as uuidv4} from "uuid";
2022-07-05 07:18:36 +02:00
import {initSession} from "./session";
2022-06-08 02:25:35 +02:00
let VERSION = __SHVERSION__;
2022-06-17 06:14:26 +02:00
window.ScriptHausClientId = uuidv4();
2022-06-08 02:25:35 +02:00
document.addEventListener("DOMContentLoaded", () => {
2022-07-05 07:18:36 +02:00
initSession();
2022-06-16 09:31:54 +02:00
GlobalWS.reconnect();
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);
});
console.log("SCRIPTHAUS", VERSION)