mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-13 00:44:25 +00:00
8803721f3d
* Move to TypeScript from legacy JavaScript * Add support of xterm.js * Hterm is still available for backward compatibility
61 lines
1.2 KiB
TypeScript
61 lines
1.2 KiB
TypeScript
export class ConnectionFactory {
|
|
url: string;
|
|
protocols: string[];
|
|
|
|
constructor(url: string, protocols: string[]) {
|
|
this.url = url;
|
|
this.protocols = protocols;
|
|
};
|
|
|
|
create(): Connection {
|
|
return new Connection(this.url, this.protocols);
|
|
};
|
|
}
|
|
|
|
export class Connection {
|
|
bare: WebSocket;
|
|
|
|
|
|
constructor(url: string, protocols: string[]) {
|
|
this.bare = new WebSocket(url, protocols);
|
|
}
|
|
|
|
open() {
|
|
// nothing todo for websocket
|
|
};
|
|
|
|
close() {
|
|
this.bare.close();
|
|
};
|
|
|
|
send(data: string) {
|
|
this.bare.send(data);
|
|
};
|
|
|
|
isOpen(): boolean {
|
|
if (this.bare.readyState == WebSocket.CONNECTING ||
|
|
this.bare.readyState == WebSocket.OPEN) {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
onOpen(callback: () => void) {
|
|
this.bare.onopen = (event) => {
|
|
callback();
|
|
}
|
|
};
|
|
|
|
onReceive(callback: (data: string) => void) {
|
|
this.bare.onmessage = (event) => {
|
|
callback(event.data);
|
|
}
|
|
};
|
|
|
|
onClose(callback: () => void) {
|
|
this.bare.onclose = (event) => {
|
|
callback();
|
|
};
|
|
};
|
|
}
|