"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7307/react/features/speaker-stats/actionTypes.ts" (30 May 2023, 1548 Bytes) of package /linux/misc/jitsi-meet-7307.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 type to start search.
    3  *
    4  * {
    5  *     type: INIT_SEARCH
    6  * }
    7  */
    8 export const INIT_SEARCH = 'INIT_SEARCH';
    9 
   10 /**
   11  * Action type to start stats retrieval.
   12  *
   13  * {
   14  *     type: INIT_UPDATE_STATS,
   15  *     getSpeakerStats: Function
   16  * }
   17  */
   18 export const INIT_UPDATE_STATS = 'INIT_UPDATE_STATS';
   19 
   20 /**
   21  * Action type to update stats.
   22  *
   23  * {
   24  *     type: UPDATE_STATS,
   25  *     stats: Object
   26  * }
   27  */
   28 export const UPDATE_STATS = 'UPDATE_STATS';
   29 
   30 /**
   31  * Action type to update the speaker stats order.
   32  * {
   33  *     type: UPDATE_SORTED_SPEAKER_STATS_IDS
   34  * }
   35  */
   36 export const UPDATE_SORTED_SPEAKER_STATS_IDS = 'UPDATE_SORTED_SPEAKER_STATS_IDS'
   37 
   38 /**
   39  * Action type to initiate reordering of the stats.
   40  *
   41  * {
   42  *     type: INIT_REORDER_STATS
   43  * }
   44  */
   45 export const INIT_REORDER_STATS = 'INIT_REORDER_STATS';
   46 
   47 /**
   48  * Action type to reset the search criteria.
   49  *
   50  * {
   51  *     type: RESET_SEARCH_CRITERIA
   52  * }
   53  */
   54 export const RESET_SEARCH_CRITERIA = 'RESET_SEARCH_CRITERIA'
   55 
   56 /**
   57  * Action type to toggle the face expressions grid.
   58  * {
   59  *     type: TOGGLE_FACE_EXPRESSIONS
   60  * }
   61  */
   62 export const TOGGLE_FACE_EXPRESSIONS = 'SHOW_FACE_EXPRESSIONS';
   63 
   64 
   65 export const INCREASE_ZOOM = 'INCREASE_ZOOM';
   66 
   67 export const DECREASE_ZOOM = 'DECREASE_ZOOM';
   68 
   69 export const ADD_TO_OFFSET = 'ADD_TO_OFFSET';
   70 
   71 export const SET_OFFSET = 'RESET_OFFSET';
   72 
   73 export const ADD_TO_OFFSET_LEFT = 'ADD_TO_OFFSET_LEFT';
   74 
   75 export const ADD_TO_OFFSET_RIGHT = 'ADD_TO_OFFSET_RIGHT';
   76 
   77 export const SET_TIMELINE_BOUNDARY = 'SET_TIMELINE_BOUNDARY';
   78 
   79 export const SET_PANNING = 'SET_PANNING';
   80