2021-07-08 13:42:07 +00:00
|
|
|
/**
|
2021-11-04 21:10:43 +00:00
|
|
|
* Thresholds for displaying toolbox buttons.
|
2021-07-08 13:42:07 +00:00
|
|
|
*/
|
|
|
|
export const THRESHOLDS = [
|
|
|
|
{
|
|
|
|
width: 520,
|
|
|
|
order: [ 'microphone', 'camera', 'desktop', 'chat', 'raisehand', 'participants', 'tileview' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
width: 470,
|
|
|
|
order: [ 'microphone', 'camera', 'desktop', 'chat', 'raisehand', 'participants' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
width: 420,
|
|
|
|
order: [ 'microphone', 'camera', 'desktop', 'chat', 'participants' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
width: 370,
|
|
|
|
order: [ 'microphone', 'camera', 'chat', 'participants' ]
|
|
|
|
},
|
|
|
|
{
|
2022-01-10 10:45:46 +00:00
|
|
|
width: 225,
|
2021-07-08 13:42:07 +00:00
|
|
|
order: [ 'microphone', 'camera', 'chat' ]
|
|
|
|
},
|
|
|
|
{
|
2022-01-10 10:45:46 +00:00
|
|
|
width: 200,
|
2021-07-08 13:42:07 +00:00
|
|
|
order: [ 'microphone', 'camera' ]
|
|
|
|
}
|
|
|
|
];
|
2021-07-22 12:26:56 +00:00
|
|
|
|
|
|
|
export const NOT_APPLICABLE = 'N/A';
|
2021-09-23 14:39:05 +00:00
|
|
|
|
|
|
|
export const TOOLBAR_TIMEOUT = 4000;
|
2021-12-13 13:51:05 +00:00
|
|
|
|
|
|
|
export const DRAWER_MAX_HEIGHT = '80vh - 64px';
|
2022-01-04 11:21:00 +00:00
|
|
|
|
|
|
|
export const NOTIFY_CLICK_MODE = {
|
|
|
|
ONLY_NOTIFY: 'ONLY_NOTIFY',
|
|
|
|
PREVENT_AND_NOTIFY: 'PREVENT_AND_NOTIFY'
|
|
|
|
};
|