2021-07-08 16:42:07 +03:00
|
|
|
/**
|
2021-11-04 22:10:43 +01:00
|
|
|
* Thresholds for displaying toolbox buttons.
|
2021-07-08 16:42:07 +03: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 12:45:46 +02:00
|
|
|
width: 225,
|
2021-07-08 16:42:07 +03:00
|
|
|
order: [ 'microphone', 'camera', 'chat' ]
|
|
|
|
|
},
|
|
|
|
|
{
|
2022-01-10 12:45:46 +02:00
|
|
|
width: 200,
|
2021-07-08 16:42:07 +03:00
|
|
|
order: [ 'microphone', 'camera' ]
|
|
|
|
|
}
|
|
|
|
|
];
|
2021-07-22 15:26:56 +03:00
|
|
|
|
|
|
|
|
export const NOT_APPLICABLE = 'N/A';
|
2021-09-23 17:39:05 +03:00
|
|
|
|
|
|
|
|
export const TOOLBAR_TIMEOUT = 4000;
|
2021-12-13 15:51:05 +02:00
|
|
|
|
|
|
|
|
export const DRAWER_MAX_HEIGHT = '80vh - 64px';
|
2022-01-04 13:21:00 +02:00
|
|
|
|
|
|
|
|
export const NOTIFY_CLICK_MODE = {
|
|
|
|
|
ONLY_NOTIFY: 'ONLY_NOTIFY',
|
|
|
|
|
PREVENT_AND_NOTIFY: 'PREVENT_AND_NOTIFY'
|
|
|
|
|
};
|