"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7315/react/features/toolbox/actionTypes.ts" (2 Jun 2023, 2626 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": 7301_vs_7304.

    1 /**
    2  * The type of the action which clears the Toolbox visibility timeout.
    3  *
    4  * {
    5  *     type: CLEAR_TOOLBOX_TIMEOUT
    6  * }
    7  */
    8 export const CLEAR_TOOLBOX_TIMEOUT = 'CLEAR_TOOLBOX_TIMEOUT';
    9 
   10 /**
   11  * The type of (redux) action which updates whether the conference is or is not
   12  * currently in full screen view.
   13  *
   14  * {
   15  *     type: FULL_SCREEN_CHANGED,
   16  *     fullScreen: boolean
   17  * }
   18  */
   19 export const FULL_SCREEN_CHANGED = 'FULL_SCREEN_CHANGED';
   20 
   21 /**
   22  * The type of (redux) action which requests full screen mode be entered or
   23  * exited.
   24  *
   25  * {
   26  *     type: SET_FULL_SCREEN,
   27  *     fullScreen: boolean
   28  * }
   29  */
   30 export const SET_FULL_SCREEN = 'SET_FULL_SCREEN';
   31 
   32 /**
   33  * The type of the (redux) action which shows/hides the hangup menu.
   34  *
   35  * {
   36  *     type: SET_HANGUP_MENU_VISIBLE,
   37  *     visible: boolean
   38  * }
   39  */
   40 export const SET_HANGUP_MENU_VISIBLE = 'SET_HANGUP_MENU_VISIBLE';
   41 
   42 /**
   43  * The type of the redux action that toggles whether the overflow menu(s) should be shown as drawers.
   44  */
   45 export const SET_OVERFLOW_DRAWER = 'SET_OVERFLOW_DRAWER';
   46 
   47 /**
   48  * The type of the (redux) action which shows/hides the OverflowMenu.
   49  *
   50  * {
   51  *     type: SET_OVERFLOW_MENU_VISIBLE,
   52  *     visible: boolean
   53  * }
   54  */
   55 export const SET_OVERFLOW_MENU_VISIBLE = 'SET_OVERFLOW_MENU_VISIBLE';
   56 
   57 /**
   58  * The type of the action which sets the indicator which determines whether a
   59  * fToolbar in the Toolbox is hovered.
   60  *
   61  * {
   62  *     type: SET_TOOLBAR_HOVERED,
   63  *     hovered: boolean
   64  * }
   65  */
   66 export const SET_TOOLBAR_HOVERED = 'SET_TOOLBAR_HOVERED';
   67 
   68 /**
   69  * The type of the (redux) action which enables/disables the Toolbox.
   70  *
   71  * {
   72  *     type: SET_TOOLBOX_ENABLED,
   73  *     enabled: boolean
   74  * }
   75  */
   76 export const SET_TOOLBOX_ENABLED = 'SET_TOOLBOX_ENABLED';
   77 
   78 /**
   79  * The type of the action which sets a new Toolbox visibility timeout and its
   80  * delay.
   81  *
   82  * {
   83  *     type: SET_TOOLBOX_TIMEOUT,
   84  *     handler: Function,
   85  *     timeoutMS: number
   86  * }
   87  */
   88 export const SET_TOOLBOX_TIMEOUT = 'SET_TOOLBOX_TIMEOUT';
   89 
   90 /**
   91  * The type of the (redux) action which shows/hides the Toolbox.
   92  *
   93  * {
   94  *     type: SET_TOOLBOX_VISIBLE,
   95  *     visible: boolean
   96  * }
   97  */
   98 export const SET_TOOLBOX_VISIBLE = 'SET_TOOLBOX_VISIBLE';
   99 
  100 /**
  101  * The type of the redux action which toggles the toolbox visibility regardless of it's current state.
  102  *
  103  * {
  104  *     type: TOGGLE_TOOLBOX_VISIBLE
  105  * }
  106  */
  107 export const TOGGLE_TOOLBOX_VISIBLE = 'TOGGLE_TOOLBOX_VISIBLE';
  108 
  109 /**
  110  * The type of the redux action which sets whether the toolbox should be shifted up or not.
  111  *
  112  * {
  113  *     type: SET_TOOLBOX_SHIFT_UP
  114  * }
  115  */
  116 export const SET_TOOLBOX_SHIFT_UP = 'SET_TOOLBOX_SHIFT_UP';