2021-07-07 05:55:16 -04:00
|
|
|
import { io } from 'socket.io-client'
|
|
|
|
import { AbstractCommand, OverrideCommandOptions } from '../shared'
|
|
|
|
|
|
|
|
export class SocketIOCommand extends AbstractCommand {
|
|
|
|
|
|
|
|
getUserNotificationSocket (options: OverrideCommandOptions = {}) {
|
|
|
|
return io(this.server.url + '/user-notifications', {
|
2021-07-07 10:02:46 -04:00
|
|
|
query: { accessToken: options.token ?? this.server.accessToken }
|
2021-07-07 05:55:16 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
getLiveNotificationSocket () {
|
|
|
|
return io(this.server.url + '/live-videos')
|
|
|
|
}
|
|
|
|
}
|