1 /** 2 * Action type to signal the arriving or updating of a knocking participant. 3 */ 4 export const KNOCKING_PARTICIPANT_ARRIVED_OR_UPDATED = 'KNOCKING_PARTICIPANT_ARRIVED_OR_UPDATED'; 5 6 /** 7 * Action type to signal the leave of a knocking participant. 8 */ 9 export const KNOCKING_PARTICIPANT_LEFT = 'KNOCKING_PARTICIPANT_LEFT'; 10 11 /** 12 * Action type to set the new state of the lobby mode. 13 */ 14 export const SET_LOBBY_MODE_ENABLED = 'SET_LOBBY_MODE_ENABLED'; 15 16 /** 17 * Action type to set the knocking state of the participant. 18 */ 19 export const SET_KNOCKING_STATE = 'SET_KNOCKING_STATE'; 20 21 /** 22 * Action type to set the lobby visibility. 23 */ 24 export const SET_LOBBY_VISIBILITY = 'TOGGLE_LOBBY_VISIBILITY'; 25 26 /** 27 * Action type to set the password join failed status. 28 */ 29 export const SET_PASSWORD_JOIN_FAILED = 'SET_PASSWORD_JOIN_FAILED'; 30 31 /** 32 * Action type to set a lobby chat participant's state to chatting 33 */ 34 export const SET_LOBBY_PARTICIPANT_CHAT_STATE = 'SET_LOBBY_PARTICIPANT_CHAT_STATE'; 35 36 /** 37 * Action type to remove chattingWithModerator field 38 */ 39 export const REMOVE_LOBBY_CHAT_WITH_MODERATOR = 'REMOVE_LOBBY_CHAT_WITH_MODERATOR';