mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
32 lines
684 B
TypeScript
32 lines
684 B
TypeScript
import { ReactElement } from 'react';
|
|
|
|
import { HIDE_TOOLTIP, SHOW_TOOLTIP } from './actionTypes';
|
|
|
|
/**
|
|
* Set tooltip state to visible.
|
|
*
|
|
* @param {string} content - The content of the tooltip.
|
|
* Used as unique identifier for tooltip.
|
|
* @returns {Object}
|
|
*/
|
|
export function showTooltip(content: string | ReactElement) {
|
|
return {
|
|
type: SHOW_TOOLTIP,
|
|
content
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Set tooltip state to hidden.
|
|
*
|
|
* @param {string} content - The content of the tooltip.
|
|
* Used as unique identifier for tooltip.
|
|
* @returns {Object}
|
|
*/
|
|
export function hideTooltip(content: string | ReactElement) {
|
|
return {
|
|
type: HIDE_TOOLTIP,
|
|
content
|
|
};
|
|
}
|