"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7315/react/features/large-video/actionTypes.ts" (2 Jun 2023, 1054 Bytes) of package /linux/misc/jitsi-meet-7315.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  * Action to select the participant to be displayed in LargeVideo.
    3  *
    4  * {
    5  *     type: SELECT_LARGE_VIDEO_PARTICIPANT,
    6  *     participantId: (string|undefined)
    7  * }
    8  */
    9 export const SELECT_LARGE_VIDEO_PARTICIPANT
   10     = 'SELECT_LARGE_VIDEO_PARTICIPANT';
   11 
   12 /**
   13  * Action to set the dimensions of the large video.
   14  *
   15  * {
   16  *     type: SET_LARGE_VIDEO_DIMENSIONS,
   17  *     height: number,
   18  *     width: number
   19  * }
   20  */
   21 export const SET_LARGE_VIDEO_DIMENSIONS = 'SET_LARGE_VIDEO_DIMENSIONS';
   22 
   23 /**
   24  * Action to update the redux store with the current resolution of large video.
   25  *
   26  * @returns {{
   27  *     type: UPDATE_KNOWN_LARGE_VIDEO_RESOLUTION,
   28  *     resolution: number
   29  * }}
   30  */
   31 export const UPDATE_KNOWN_LARGE_VIDEO_RESOLUTION
   32     = 'UPDATE_KNOWN_LARGE_VIDEO_RESOLUTION';
   33 
   34 /**
   35  * Action to set the redux store of the current show me what I'm sharing flag value.
   36  *
   37  * @returns {{
   38  *     type: SET_SEE_WHAT_IS_BEING_SHARED,
   39  *     seeWhatIsBeingShared: boolean
   40  * }}
   41  */
   42 export const SET_SEE_WHAT_IS_BEING_SHARED
   43         = 'SET_SEE_WHAT_IS_BEING_SHARED';