mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-13 04:22:30 +00:00
Also unify the mobile and web features into one, even though internally they still have separate ways to enable the functionality.
55 lines
1.4 KiB
JavaScript
55 lines
1.4 KiB
JavaScript
// @flow
|
|
|
|
import { openDialog } from '../base/dialog';
|
|
|
|
import { SET_SHARED_VIDEO_STATUS, TOGGLE_SHARED_VIDEO } from './actionTypes';
|
|
import { SharedVideoDialog } from './components/native';
|
|
|
|
/**
|
|
* Updates the current known status of the shared video.
|
|
*
|
|
* @param {string} videoId - The id of the video to be shared.
|
|
* @param {string} status - The current status of the video being shared.
|
|
* @param {number} time - The current position of the video being shared.
|
|
* @param {string} ownerId - The participantId of the user sharing the video.
|
|
* @returns {{
|
|
* type: SET_SHARED_VIDEO_STATUS,
|
|
* ownerId: string,
|
|
* status: string,
|
|
* time: number,
|
|
* videoId: string
|
|
* }}
|
|
*/
|
|
export function setSharedVideoStatus(videoId: string, status: string, time: number, ownerId: string) {
|
|
return {
|
|
type: SET_SHARED_VIDEO_STATUS,
|
|
ownerId,
|
|
status,
|
|
time,
|
|
videoId
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Starts the flow for starting or stopping a shared video.
|
|
*
|
|
* @returns {{
|
|
* type: TOGGLE_SHARED_VIDEO
|
|
* }}
|
|
*/
|
|
export function toggleSharedVideo() {
|
|
return {
|
|
type: TOGGLE_SHARED_VIDEO
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Displays the prompt for entering the video link.
|
|
*
|
|
* @param {Function} onPostSubmit - The function to be invoked when a valid link is entered.
|
|
* @returns {Function}
|
|
*/
|
|
export function showSharedVideoDialog(onPostSubmit: ?Function) {
|
|
return openDialog(SharedVideoDialog, { onPostSubmit });
|
|
}
|