mirror of
https://github.com/sorenisanerd/gotty.git
synced 2025-04-04 18:00:28 +00:00
31 lines
943 B
TypeScript
31 lines
943 B
TypeScript
import { Hterm } from "./hterm";
|
|
import { Xterm } from "./xterm";
|
|
import { Terminal, WebTTY, protocols } from "./webtty";
|
|
import { ConnectionFactory } from "./websocket";
|
|
|
|
// @TODO remove these
|
|
declare var gotty_auth_token: string;
|
|
declare var gotty_term: string;
|
|
|
|
const elem = document.getElementById("terminal")
|
|
|
|
if (elem !== null) {
|
|
var term: Terminal;
|
|
if (gotty_term == "hterm") {
|
|
term = new Hterm(elem);
|
|
} else {
|
|
term = new Xterm(elem);
|
|
}
|
|
const httpsEnabled = window.location.protocol == "https:";
|
|
const url = (httpsEnabled ? 'wss://' : 'ws://') + window.location.host + window.location.pathname + 'ws';
|
|
const args = window.location.search;
|
|
const factory = new ConnectionFactory(url, protocols);
|
|
const wt = new WebTTY(term, factory, args, gotty_auth_token);
|
|
const closer = wt.open();
|
|
|
|
window.addEventListener("unload", () => {
|
|
closer();
|
|
term.close();
|
|
});
|
|
};
|