extract member state to custom struct.

This commit is contained in:
Miroslav Šedivý 2020-12-03 16:11:26 +01:00
parent 11a843af0f
commit 7a8a4f11dc
3 changed files with 17 additions and 6 deletions

View File

@ -10,9 +10,8 @@ export const MEMBER_CREATED = 'member/created'
export const MEMBER_DELETED = 'member/deleted'
export const MEMBER_CONNECTED = 'member/connected'
export const MEMBER_DISCONNECTED = 'member/disconnected'
export const MEMBER_RECEIVING_STARTED = 'member/receiving/started'
export const MEMBER_RECEIVING_STOPPED = 'member/receiving/stopped'
export const MEMBER_PROFILE_UPDATED = 'member/profile/updated'
export const MEMBER_PROFILE = 'member/profile'
export const MEMBER_STATE = 'member/state'
export const CONTROL_HOST = 'control/host'
export const CONTROL_RELEASE = 'control/release'

View File

@ -54,6 +54,7 @@ export interface MemberID {
}
export interface MemberProfile {
event: string | undefined
id: string
name: string
is_admin: boolean
@ -64,6 +65,13 @@ export interface MemberProfile {
can_access_clipboard: boolean
}
export interface MemberState {
event: string | undefined
id: string
is_connected: boolean
is_receiving: boolean
}
export interface MemberData {
event: string | undefined
id: string

View File

@ -76,9 +76,13 @@ export interface MemberProfile {
can_access_clipboard: boolean
}
export interface Member {
id: string
profile: MemberProfile
export interface MemberState {
is_connected: boolean
is_receiving: boolean
}
export interface Member {
id: string
profile: MemberProfile
state: MemberState
}