"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7305/react/features/prejoin/actionTypes.ts" (26 May 2023, 1914 Bytes) of package /linux/misc/jitsi-meet-7305.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.

    1 
    2 /**
    3  * Action type to signal that joining is in progress.
    4  */
    5 export const PREJOIN_JOINING_IN_PROGRESS = 'PREJOIN_JOINING_IN_PROGRESS';
    6 
    7 /**
    8  * Action type to signal that prejoin page was initialized.
    9  */
   10 export const PREJOIN_INITIALIZED = 'PREJOIN_INITIALIZED';
   11 
   12 /**
   13  * Action type to set the status of the device.
   14  */
   15 export const SET_DEVICE_STATUS = 'SET_DEVICE_STATUS';
   16 
   17 /**
   18  * Action type to set the visibility of the prejoin page when client is forcefully reloaded.
   19  */
   20 export const SET_SKIP_PREJOIN_RELOAD = 'SET_SKIP_PREJOIN_RELOAD';
   21 
   22 /**
   23  * Action type used to set the mandatory stance of the prejoin display name.
   24  */
   25 export const SET_PREJOIN_DISPLAY_NAME_REQUIRED = 'SET_PREJOIN_DISPLAY_NAME_REQUIRED';
   26 
   27 /**
   28  * Action type to set the country to dial out to.
   29  */
   30 export const SET_DIALOUT_COUNTRY = 'SET_DIALOUT_COUNTRY';
   31 
   32 /**
   33  * Action type to set the dial out number.
   34  */
   35 export const SET_DIALOUT_NUMBER = 'SET_DIALOUT_NUMBER';
   36 
   37 /**
   38  * Action type to set the dial out status while dialing.
   39  */
   40 export const SET_DIALOUT_STATUS = 'SET_DIALOUT_STATUS';
   41 
   42 /**
   43  * Action type to set the visibility of the 'JoinByPhone' dialog.
   44  */
   45 export const SET_JOIN_BY_PHONE_DIALOG_VISIBLITY = 'SET_JOIN_BY_PHONE_DIALOG_VISIBLITY';
   46 
   47 /**
   48  * Action type to set the precall test data.
   49  */
   50 export const SET_PRECALL_TEST_RESULTS = 'SET_PRECALL_TEST_RESULTS';
   51 
   52 /**
   53  * Action type to disable the audio while on prejoin page.
   54  */
   55 export const SET_PREJOIN_AUDIO_DISABLED = 'SET_PREJOIN_AUDIO_DISABLED';
   56 
   57 /**
   58  * Action type to mute/unmute the audio while on prejoin page.
   59  */
   60 export const SET_PREJOIN_AUDIO_MUTED = 'SET_PREJOIN_AUDIO_MUTED';
   61 
   62 /**
   63  * Action type to set the errors while creating the prejoin streams.
   64  */
   65 export const SET_PREJOIN_DEVICE_ERRORS = 'SET_PREJOIN_DEVICE_ERRORS';
   66 
   67 /**
   68  * Action type to set the visibility of the prejoin page.
   69  */
   70 export const SET_PREJOIN_PAGE_VISIBILITY = 'SET_PREJOIN_PAGE_VISIBILITY';