Files
jitsi-meet/react/features/shared-video/constants.ts
Дамян Минков 3f7c3b8fd2 feat(shared-video): Shows confirmation dialog before playing video. (#15059)
* feat(shared-video): Shows confirmation dialog before playing video.

* feat(shared-video/native): created ShareVideoConfirmDialog and unified actions

* squash: Simplifies state and fixes stop and then start scenario.

* squash: Use constants everywhere.

* squash: Use helper function.

* squash: Ignore any command with not matching video URL.

---------

Co-authored-by: Calin-Teodor <calin.chitu@8x8.com>
2024-08-27 10:45:39 -05:00

51 lines
903 B
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';
/**
* 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.
*/
export const DEFAULT_ALLOWED_URL_DOMAINS = [ YOUTUBE_URL_DOMAIN ];