jeffsi-meet/react/features/shared-video/constants.ts

63 lines
1.2 KiB
TypeScript

/**
* Fixed name of the video player fake participant.
*
* @type {string}
*/
export const VIDEO_PLAYER_PARTICIPANT_NAME = 'Video';
/**
* Fixed name of the youtube player fake participant.
*
* @type {string}
*/
export const YOUTUBE_PLAYER_PARTICIPANT_NAME = 'YouTube';
/**
* Shared video command.
*
* @type {string}
*/
export const SHARED_VIDEO = 'shared-video';
/**
* Available playback statuses.
*/
export const PLAYBACK_STATUSES = {
PLAYING: 'playing',
PAUSED: 'pause',
STOPPED: 'stop'
};
/**
* Playback start state.
*/
export const PLAYBACK_START = 'start';
/**
* Video source types.
*/
export const VIDEO_SOURCE_TYPES = {
YOUTUBE: 'youtube',
VIMEO: 'vimeo',
DAILYMOTION: 'dailymotion',
TWITCH: 'twitch',
DIRECT: 'direct'
} as const;
/**
* The domain for youtube URLs.
*/
export const YOUTUBE_URL_DOMAIN = 'youtube.com';
/**
* The constant to allow URL domains.
*/
export const ALLOW_ALL_URL_DOMAINS = '*';
/**
* The default white listed domains for shared video.
* Allow all domains so Vimeo, Dailymotion, Twitch etc. work out of the box.
*/
export const DEFAULT_ALLOWED_URL_DOMAINS = [ ALLOW_ALL_URL_DOMAINS ];