updated events emmiter.

This commit is contained in:
Miroslav Šedivý 2021-01-31 14:25:17 +01:00
parent 22829850bb
commit b85b40bfdf
2 changed files with 46 additions and 44 deletions

View File

@ -8,25 +8,35 @@ import { NekoWebSocket } from './websocket'
import NekoState from '../types/state' import NekoState from '../types/state'
export interface NekoEvents { export interface NekoEvents {
['internal.websocket']: (state: 'connected' | 'connecting' | 'disconnected') => void // connection events
['internal.webrtc']: (state: 'connected' | 'connecting' | 'disconnected') => void ['connection.websocket']: (state: 'connected' | 'connecting' | 'disconnected') => void
['connection.webrtc']: (state: 'connected' | 'connecting' | 'disconnected') => void
['connection.disconnect']: (message: string) => void
// drag and drop events
['upload.drop.started']: () => void ['upload.drop.started']: () => void
['upload.drop.progress']: (progressEvent: ProgressEvent) => void ['upload.drop.progress']: (progressEvent: ProgressEvent) => void
['upload.drop.finished']: (error: Error | null) => void ['upload.drop.finished']: (error: Error | null) => void
['system.disconnect']: (message: string) => void
// upload dialog events
['upload.dialog.requested']: () => void
['upload.dialog.overlay']: (id: string) => void
['upload.dialog.closed']: () => void
// custom messages events
['receive.unicast']: (sender: string, subject: string, body: any) => void
['receive.broadcast']: (sender: string, subject: string, body: any) => void
// member events
['member.created']: (id: string) => void ['member.created']: (id: string) => void
['member.deleted']: (id: string) => void ['member.deleted']: (id: string) => void
['member.profile']: (id: string) => void ['member.updated']: (id: string) => void
['member.state']: (id: string) => void
['control.host']: (hasHost: boolean, hostID: string | undefined) => void // room events
['screen.updated']: (width: number, height: number, rate: number) => void ['room.control.host']: (hasHost: boolean, hostID: string | undefined) => void
['clipboard.updated']: (text: string) => void ['room.screen.updated']: (width: number, height: number, rate: number) => void
['broadcast.status']: (isActive: boolean, url: string | undefined) => void ['room.clipboard.updated']: (text: string) => void
['receive.unicast']: (sender: string, subject: string, body: string) => void ['room.broadcast.status']: (isActive: boolean, url: string | undefined) => void
['receive.broadcast']: (sender: string, subject: string, body: string) => void
['file_chooser_dialog.requested']: () => void
['file_chooser_dialog.overlay']: (id: string) => void
['file_chooser_dialog.closed']: () => void
} }
export class NekoMessages extends EventEmitter<NekoEvents> { export class NekoMessages extends EventEmitter<NekoEvents> {
@ -88,7 +98,7 @@ export class NekoMessages extends EventEmitter<NekoEvents> {
protected [EVENT.SYSTEM_DISCONNECT]({ message }: message.SystemDisconnect) { protected [EVENT.SYSTEM_DISCONNECT]({ message }: message.SystemDisconnect) {
this._log.debug('EVENT.SYSTEM_DISCONNECT') this._log.debug('EVENT.SYSTEM_DISCONNECT')
this.emit('system.disconnect', message) this.emit('connection.disconnect', message)
// TODO: Handle. // TODO: Handle.
} }
@ -125,13 +135,13 @@ export class NekoMessages extends EventEmitter<NekoEvents> {
protected [EVENT.MEMBER_PROFILE]({ id, ...profile }: message.MemberProfile) { protected [EVENT.MEMBER_PROFILE]({ id, ...profile }: message.MemberProfile) {
this._log.debug('EVENT.MEMBER_PROFILE', id) this._log.debug('EVENT.MEMBER_PROFILE', id)
Vue.set(this.state.members[id], 'profile', profile) Vue.set(this.state.members[id], 'profile', profile)
this.emit('member.profile', id) this.emit('member.updated', id)
} }
protected [EVENT.MEMBER_STATE]({ id, ...state }: message.MemberState) { protected [EVENT.MEMBER_STATE]({ id, ...state }: message.MemberState) {
this._log.debug('EVENT.MEMBER_STATE', id) this._log.debug('EVENT.MEMBER_STATE', id)
Vue.set(this.state.members[id], 'state', state) Vue.set(this.state.members[id], 'state', state)
this.emit('member.state', id) this.emit('member.updated', id)
} }
///////////////////////////// /////////////////////////////
@ -147,7 +157,7 @@ export class NekoMessages extends EventEmitter<NekoEvents> {
Vue.set(this.state.control, 'host_id', null) Vue.set(this.state.control, 'host_id', null)
} }
this.emit('control.host', has_host, host_id) this.emit('room.control.host', has_host, host_id)
} }
///////////////////////////// /////////////////////////////
@ -157,7 +167,7 @@ export class NekoMessages extends EventEmitter<NekoEvents> {
protected [EVENT.SCREEN_UPDATED]({ width, height, rate }: message.ScreenSize) { protected [EVENT.SCREEN_UPDATED]({ width, height, rate }: message.ScreenSize) {
this._log.debug('EVENT.SCREEN_UPDATED') this._log.debug('EVENT.SCREEN_UPDATED')
Vue.set(this.state.screen, 'size', { width, height, rate }) Vue.set(this.state.screen, 'size', { width, height, rate })
this.emit('screen.updated', width, height, rate) this.emit('room.screen.updated', width, height, rate)
} }
///////////////////////////// /////////////////////////////
// Clipboard Events // Clipboard Events
@ -166,7 +176,7 @@ export class NekoMessages extends EventEmitter<NekoEvents> {
protected [EVENT.CLIPBOARD_UPDATED]({ text }: message.ClipboardData) { protected [EVENT.CLIPBOARD_UPDATED]({ text }: message.ClipboardData) {
this._log.debug('EVENT.CLIPBOARD_UPDATED') this._log.debug('EVENT.CLIPBOARD_UPDATED')
Vue.set(this.state.control, 'clipboard', { text }) Vue.set(this.state.control, 'clipboard', { text })
this.emit('clipboard.updated', text) this.emit('room.clipboard.updated', text)
} }
///////////////////////////// /////////////////////////////
@ -176,7 +186,7 @@ export class NekoMessages extends EventEmitter<NekoEvents> {
protected [EVENT.BORADCAST_STATUS]({ event, url, is_active }: message.BroadcastStatus) { protected [EVENT.BORADCAST_STATUS]({ event, url, is_active }: message.BroadcastStatus) {
this._log.debug('EVENT.BORADCAST_STATUS') this._log.debug('EVENT.BORADCAST_STATUS')
// TODO: Handle. // TODO: Handle.
this.emit('broadcast.status', is_active, url) this.emit('room.broadcast.status', is_active, url)
} }
///////////////////////////// /////////////////////////////
@ -201,14 +211,14 @@ export class NekoMessages extends EventEmitter<NekoEvents> {
this._log.debug('EVENT.FILE_CHOOSER_DIALOG_OPENED') this._log.debug('EVENT.FILE_CHOOSER_DIALOG_OPENED')
if (id == this.state.member_id) { if (id == this.state.member_id) {
this.emit('file_chooser_dialog.requested') this.emit('upload.dialog.requested')
} else { } else {
this.emit('file_chooser_dialog.overlay', id) this.emit('upload.dialog.overlay', id)
} }
} }
protected [EVENT.FILE_CHOOSER_DIALOG_CLOSED]({ id }: message.MemberID) { protected [EVENT.FILE_CHOOSER_DIALOG_CLOSED]({ id }: message.MemberID) {
this._log.debug('EVENT.FILE_CHOOSER_DIALOG_CLOSED') this._log.debug('EVENT.FILE_CHOOSER_DIALOG_CLOSED')
this.emit('file_chooser_dialog.closed') this.emit('upload.dialog.closed')
} }
} }

View File

@ -158,13 +158,9 @@
throw new Error('client already authenticated') throw new Error('client already authenticated')
} }
try {
await this.api.session.login({ id, secret }) await this.api.session.login({ id, secret })
Vue.set(this.state.connection, 'authenticated', true) Vue.set(this.state.connection, 'authenticated', true)
this.websocketConnect() this.websocketConnect()
} catch (e) {
throw e
}
} }
public async logout() { public async logout() {
@ -172,13 +168,9 @@
throw new Error('client not authenticated') throw new Error('client not authenticated')
} }
try {
this.websocketDisconnect() this.websocketDisconnect()
await this.api.session.logout() await this.api.session.logout()
Vue.set(this.state.connection, 'authenticated', false) Vue.set(this.state.connection, 'authenticated', false)
} catch (e) {
throw e
}
} }
public websocketConnect() { public websocketConnect() {
@ -335,16 +327,16 @@
}) })
this.websocket.on('connecting', () => { this.websocket.on('connecting', () => {
Vue.set(this.state.connection, 'websocket', 'connecting') Vue.set(this.state.connection, 'websocket', 'connecting')
this.events.emit('internal.websocket', 'connecting') this.events.emit('connection.websocket', 'connecting')
}) })
this.websocket.on('connected', () => { this.websocket.on('connected', () => {
Vue.set(this.state.connection, 'websocket', 'connected') Vue.set(this.state.connection, 'websocket', 'connected')
this.events.emit('internal.websocket', 'connected') this.events.emit('connection.websocket', 'connected')
this.webrtcConnect() this.webrtcConnect()
}) })
this.websocket.on('disconnected', () => { this.websocket.on('disconnected', () => {
Vue.set(this.state.connection, 'websocket', 'disconnected') Vue.set(this.state.connection, 'websocket', 'disconnected')
this.events.emit('internal.websocket', 'disconnected') this.events.emit('connection.websocket', 'disconnected')
this.webrtc.disconnect() this.webrtc.disconnect()
this.clearState() this.clearState()
@ -369,15 +361,15 @@
}) })
this.webrtc.on('connecting', () => { this.webrtc.on('connecting', () => {
Vue.set(this.state.connection, 'webrtc', 'connecting') Vue.set(this.state.connection, 'webrtc', 'connecting')
this.events.emit('internal.webrtc', 'connecting') this.events.emit('connection.webrtc', 'connecting')
}) })
this.webrtc.on('connected', () => { this.webrtc.on('connected', () => {
Vue.set(this.state.connection, 'webrtc', 'connected') Vue.set(this.state.connection, 'webrtc', 'connected')
this.events.emit('internal.webrtc', 'connected') this.events.emit('connection.webrtc', 'connected')
}) })
this.webrtc.on('disconnected', () => { this.webrtc.on('disconnected', () => {
Vue.set(this.state.connection, 'webrtc', 'disconnected') Vue.set(this.state.connection, 'webrtc', 'disconnected')
this.events.emit('internal.webrtc', 'disconnected') this.events.emit('connection.webrtc', 'disconnected')
if (!this._video) return if (!this._video) return