mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 03:12:29 +00:00
119 lines
3.0 KiB
TypeScript
119 lines
3.0 KiB
TypeScript
import { DEFAULT_LANGUAGE } from '../base/i18n/i18next';
|
|
|
|
import {
|
|
REMOVE_CACHED_TRANSCRIPT_MESSAGE,
|
|
REMOVE_TRANSCRIPT_MESSAGE,
|
|
SET_REQUESTING_SUBTITLES,
|
|
STORE_SUBTITLE,
|
|
TOGGLE_REQUESTING_SUBTITLES,
|
|
UPDATE_TRANSCRIPT_MESSAGE
|
|
} from './actionTypes';
|
|
import { ISubtitle } from './types';
|
|
|
|
/**
|
|
* Signals that a transcript has to be removed from the state.
|
|
*
|
|
* @param {string} transcriptMessageID - The message_id to be removed.
|
|
* @returns {{
|
|
* type: REMOVE_TRANSCRIPT_MESSAGE,
|
|
* transcriptMessageID: string,
|
|
* }}
|
|
*/
|
|
export function removeTranscriptMessage(transcriptMessageID: string) {
|
|
return {
|
|
type: REMOVE_TRANSCRIPT_MESSAGE,
|
|
transcriptMessageID
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Signals that a cached transcript has to be removed from the state.
|
|
*
|
|
* @param {string} transcriptMessageID - The message_id to be removed.
|
|
* @returns {{
|
|
* type: REMOVE_CACHED_TRANSCRIPT_MESSAGE,
|
|
* transcriptMessageID: string,
|
|
* }}
|
|
*/
|
|
export function removeCachedTranscriptMessage(transcriptMessageID: string) {
|
|
return {
|
|
type: REMOVE_CACHED_TRANSCRIPT_MESSAGE,
|
|
transcriptMessageID
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Signals that a transcript with the given message_id to be added or updated
|
|
* is received.
|
|
*
|
|
* @param {string} transcriptMessageID -The transcript message_id to be updated.
|
|
* @param {Object} newTranscriptMessage - The updated transcript message.
|
|
* @returns {{
|
|
* type: UPDATE_TRANSCRIPT_MESSAGE,
|
|
* transcriptMessageID: string,
|
|
* newTranscriptMessage: Object
|
|
* }}
|
|
*/
|
|
export function updateTranscriptMessage(transcriptMessageID: string,
|
|
newTranscriptMessage: Object) {
|
|
return {
|
|
type: UPDATE_TRANSCRIPT_MESSAGE,
|
|
transcriptMessageID,
|
|
newTranscriptMessage
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Signals that the local user has toggled the ClosedCaption button.
|
|
*
|
|
* @returns {{
|
|
* type: TOGGLE_REQUESTING_SUBTITLES
|
|
* }}
|
|
*/
|
|
export function toggleRequestingSubtitles() {
|
|
return {
|
|
type: TOGGLE_REQUESTING_SUBTITLES
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Signals that the local user has enabled or disabled the subtitles.
|
|
*
|
|
* @param {boolean} enabled - The new state of the subtitles.
|
|
* @param {boolean} displaySubtitles - Whether to display subtitles or not.
|
|
* @param {string} language - The language of the subtitles.
|
|
* @returns {{
|
|
* type: SET_REQUESTING_SUBTITLES,
|
|
* enabled: boolean,
|
|
* displaySubtitles: boolean,
|
|
* language: string
|
|
* }}
|
|
*/
|
|
export function setRequestingSubtitles(
|
|
enabled: boolean,
|
|
displaySubtitles = true,
|
|
language: string | null = `translation-languages:${DEFAULT_LANGUAGE}`) {
|
|
return {
|
|
type: SET_REQUESTING_SUBTITLES,
|
|
displaySubtitles,
|
|
enabled,
|
|
language
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Stores a received subtitle in the history.
|
|
*
|
|
* @param {ISubtitle} subtitle - The subtitle to store.
|
|
* @returns {{
|
|
* type: STORE_SUBTITLE,
|
|
* subtitle: ISubtitle
|
|
* }}
|
|
*/
|
|
export function storeSubtitle(subtitle: ISubtitle) {
|
|
return {
|
|
type: STORE_SUBTITLE,
|
|
subtitle
|
|
};
|
|
}
|