"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7316/react/features/remote-control/actionTypes.ts" (5 Jun 2023, 1613 Bytes) of package /linux/misc/jitsi-meet-7316.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) TypeScript source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. See also the last Fossies "Diffs" side-by-side code changes report for "actionTypes.ts": jitsi-meet_8319_vs_jitsi-meet_8615.

    1 /**
    2  * The type of (redux) action which signals that the controller is capturing mouse and keyboard events.
    3  *
    4  * {
    5  *     type: CAPTURE_EVENTS,
    6  *     isCapturingEvents: boolean
    7  * }
    8  */
    9 export const CAPTURE_EVENTS = 'CAPTURE_EVENTS';
   10 
   11 /**
   12  * The type of (redux) action which signals that a remote control active state has changed.
   13  *
   14  * {
   15  *     type: REMOTE_CONTROL_ACTIVE,
   16  *     active: boolean
   17  * }
   18  */
   19 export const REMOTE_CONTROL_ACTIVE = 'REMOTE_CONTROL_ACTIVE';
   20 
   21 /**
   22  * The type of (redux) action which sets the receiver transport object.
   23  *
   24  * {
   25  *     type: SET_RECEIVER_TRANSPORT,
   26  *     transport: Transport
   27  * }
   28  */
   29 export const SET_RECEIVER_TRANSPORT = 'SET_RECEIVER_TRANSPORT';
   30 
   31 /**
   32  * The type of (redux) action which enables the receiver.
   33  *
   34  * {
   35  *     type: SET_RECEIVER_ENABLED,
   36  *     enabled: boolean
   37  * }
   38  */
   39 export const SET_RECEIVER_ENABLED = 'SET_RECEIVER_ENABLED';
   40 
   41 /**
   42  * The type of (redux) action which sets the controller participant on the receiver side.
   43  * {
   44  *     type: SET_CONTROLLER,
   45  *     controller: string
   46  * }
   47  */
   48 export const SET_CONTROLLER = 'SET_CONTROLLER';
   49 
   50 /**
   51  * The type of (redux) action which sets the controlled participant on the controller side.
   52  * {
   53  *     type: SET_CONTROLLED_PARTICIPANT,
   54  *     controlled: string
   55  * }
   56  */
   57 export const SET_CONTROLLED_PARTICIPANT = 'SET_CONTROLLED_PARTICIPANT';
   58 
   59 
   60 /**
   61  * The type of (redux) action which sets the requested participant on the controller side.
   62  * {
   63  *     type: SET_REQUESTED_PARTICIPANT,
   64  *     requestedParticipant: string
   65  * }
   66  */
   67 export const SET_REQUESTED_PARTICIPANT = 'SET_REQUESTED_PARTICIPANT';
   68