summaryrefslogtreecommitdiffstats
path: root/ui/src/services.ts
blob: b9536aed015407802a58aec7753bb122d55f5d67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import { wsUri } from './env';
import { LoginForm, RegisterForm, UserOperation } from './interfaces';

export class WebSocketService {
  private static _instance: WebSocketService;
  private _ws;
  private conn: WebSocket;

  private constructor() {
    console.log("Creating WSS");
    this.connect();
    console.log(wsUri);
  }

  public static get Instance(){
    return this._instance || (this._instance = new this());
  }

  private connect() {
    this.disconnect();
    this.conn = new WebSocket(wsUri);
    console.log('Connecting...');
    this.conn.onopen = (() => {
      console.log('Connected.');
    });
    this.conn.onmessage = (e => {
      console.log('Received: ' + e.data);
    });
    this.conn.onclose = (() => {
      console.log('Disconnected.');
      this.conn = null;
    });
  }
  private disconnect() {
    if (this.conn != null) {
      console.log('Disconnecting...');
      this.conn.close();
      this.conn = null;
    }
  }
  
  public login(loginForm: LoginForm) {
    this.conn.send(this.wsSendWrapper(UserOperation.Login, loginForm));
  }

  public register(registerForm: RegisterForm) {
    this.conn.send(this.wsSendWrapper(UserOperation.Register, registerForm));
  }

  private wsSendWrapper(op: UserOperation, data: any): string {
    let send = { op: UserOperation[op], data: data };
    console.log(send);
    return JSON.stringify(send);
  }


}