1
- import { Channel } from "./Channel" ;
2
- import { AxiosResponse } from "axios" ;
1
+ import { AxiosResponse } from "axios" ;
2
+ import axios from 'axios' ;
3
+ import { Channel } from "./Channel" ;
3
4
4
5
export type Options = { authEndpoint : string , host : string } ;
5
6
export type MessageBody = { event : string , channel ?: string , data : object } ;
@@ -19,14 +20,20 @@ export class Websocket {
19
20
20
21
private socketId : string ;
21
22
23
+ private closing = false ;
24
+
22
25
private pingInterval : NodeJS . Timeout ;
23
26
24
- constructor ( options : Options ) {
25
- this . options = options ;
27
+ private connect ( host : string ) : void {
28
+ console . log ( 'Connecting' ) ;
26
29
27
- this . websocket = new WebSocket ( options . host )
30
+ this . websocket = new WebSocket ( host )
28
31
29
32
this . websocket . onopen = ( ) => {
33
+ this . send ( {
34
+ event : 'whoami' ,
35
+ } )
36
+
30
37
while ( this . buffer . length ) {
31
38
const message = this . buffer [ 0 ]
32
39
@@ -56,8 +63,20 @@ export class Websocket {
56
63
if ( this . internalListeners [ message . event ] ) {
57
64
this . internalListeners [ message . event ] ( message . data )
58
65
}
66
+
59
67
}
60
68
69
+
70
+ this . websocket . onclose = ( ) => {
71
+ if ( this . socketId && ! this . closing || ! this . socketId ) {
72
+ console . info ( 'Connection lost, reconnecting...' ) ;
73
+ setTimeout ( ( ) => {
74
+ this . socketId = undefined
75
+ this . connect ( host )
76
+ } , 1000 ) ;
77
+ }
78
+ } ;
79
+
61
80
this . on ( 'whoami' , ( { socket_id : socketId } ) => {
62
81
this . socketId = socketId
63
82
@@ -72,19 +91,24 @@ export class Websocket {
72
91
}
73
92
} )
74
93
75
- this . send ( {
76
- event : 'whoami' ,
77
- } )
78
94
79
95
// send ping every 60 seconds to keep connection alive
80
96
this . pingInterval = setInterval ( ( ) => {
81
- console . log ( 'Sending ping' )
82
-
83
- this . send ( {
84
- event : 'ping' ,
85
- } )
97
+ if ( this . websocket . readyState === this . websocket . OPEN ) {
98
+ console . log ( 'Sending ping' )
99
+ this . send ( {
100
+ event : 'ping' ,
101
+ } )
102
+ }
86
103
} , 60 * 1000 )
87
104
105
+ }
106
+
107
+ constructor ( options : Options ) {
108
+ this . options = options ;
109
+
110
+ this . connect ( this . options . host ) ;
111
+
88
112
return this
89
113
}
90
114
@@ -115,7 +139,8 @@ export class Websocket {
115
139
this . buffer . push ( message )
116
140
}
117
141
118
- close ( ) : void {
142
+ close ( ) : void {
143
+ this . closing = true
119
144
this . internalListeners = { }
120
145
121
146
clearInterval ( this . pingInterval )
@@ -146,7 +171,7 @@ export class Websocket {
146
171
event : 'subscribe' ,
147
172
data : {
148
173
channel : channel . name ,
149
- ... response . data
174
+ ...response . data
150
175
} ,
151
176
} )
152
177
} ) . catch ( ( error ) => {
0 commit comments