signal-desktop/ts/components/CallingButton.tsx

145 lines
4.8 KiB
TypeScript
Raw Normal View History

// Copyright 2020-2021 Signal Messenger, LLC
2020-10-30 20:34:04 +00:00
// SPDX-License-Identifier: AGPL-3.0-only
import React, { useMemo } from 'react';
2020-10-08 01:25:33 +00:00
import classNames from 'classnames';
import { v4 as uuid } from 'uuid';
import { Tooltip, TooltipPlacement } from './Tooltip';
import { Theme } from '../util/theme';
2020-10-08 01:25:33 +00:00
import { LocalizerType } from '../types/Util';
export enum CallingButtonType {
AUDIO_DISABLED = 'AUDIO_DISABLED',
2020-10-08 01:25:33 +00:00
AUDIO_OFF = 'AUDIO_OFF',
AUDIO_ON = 'AUDIO_ON',
HANG_UP = 'HANG_UP',
PRESENTING_DISABLED = 'PRESENTING_DISABLED',
PRESENTING_OFF = 'PRESENTING_OFF',
PRESENTING_ON = 'PRESENTING_ON',
RING_DISABLED = 'RING_DISABLED',
RING_OFF = 'RING_OFF',
RING_ON = 'RING_ON',
VIDEO_DISABLED = 'VIDEO_DISABLED',
2020-10-08 01:25:33 +00:00
VIDEO_OFF = 'VIDEO_OFF',
VIDEO_ON = 'VIDEO_ON',
}
export type PropsType = {
buttonType: CallingButtonType;
i18n: LocalizerType;
isVisible?: boolean;
2020-10-08 01:25:33 +00:00
onClick: () => void;
2020-11-19 18:11:35 +00:00
tooltipDirection?: TooltipPlacement;
2020-10-08 01:25:33 +00:00
};
export const CallingButton = ({
buttonType,
i18n,
isVisible = true,
2020-10-08 01:25:33 +00:00
onClick,
2020-11-19 18:11:35 +00:00
tooltipDirection,
2020-10-08 01:25:33 +00:00
}: PropsType): JSX.Element => {
const uniqueButtonId = useMemo(() => uuid(), []);
2020-10-08 01:25:33 +00:00
let classNameSuffix = '';
let tooltipContent = '';
let label = '';
let disabled = false;
if (buttonType === CallingButtonType.AUDIO_DISABLED) {
2020-10-08 01:25:33 +00:00
classNameSuffix = 'audio--disabled';
tooltipContent = i18n('calling__button--audio-disabled');
label = i18n('calling__button--audio__label');
disabled = true;
} else if (buttonType === CallingButtonType.AUDIO_OFF) {
classNameSuffix = 'audio--off';
2020-10-08 01:25:33 +00:00
tooltipContent = i18n('calling__button--audio-on');
label = i18n('calling__button--audio__label');
2020-10-08 01:25:33 +00:00
} else if (buttonType === CallingButtonType.AUDIO_ON) {
classNameSuffix = 'audio--on';
2020-10-08 01:25:33 +00:00
tooltipContent = i18n('calling__button--audio-off');
label = i18n('calling__button--audio__label');
} else if (buttonType === CallingButtonType.VIDEO_DISABLED) {
2020-10-08 01:25:33 +00:00
classNameSuffix = 'video--disabled';
tooltipContent = i18n('calling__button--video-disabled');
disabled = true;
label = i18n('calling__button--video__label');
} else if (buttonType === CallingButtonType.VIDEO_OFF) {
classNameSuffix = 'video--off';
2020-10-08 01:25:33 +00:00
tooltipContent = i18n('calling__button--video-on');
label = i18n('calling__button--video__label');
2020-10-08 01:25:33 +00:00
} else if (buttonType === CallingButtonType.VIDEO_ON) {
classNameSuffix = 'video--on';
2020-10-08 01:25:33 +00:00
tooltipContent = i18n('calling__button--video-off');
label = i18n('calling__button--video__label');
2020-10-08 01:25:33 +00:00
} else if (buttonType === CallingButtonType.HANG_UP) {
classNameSuffix = 'hangup';
tooltipContent = i18n('calling__hangup');
label = i18n('calling__hangup');
} else if (buttonType === CallingButtonType.RING_DISABLED) {
classNameSuffix = 'ring--disabled';
disabled = true;
tooltipContent = i18n(
'calling__button--ring__disabled-because-group-is-too-large'
);
label = i18n('calling__button--ring__label');
} else if (buttonType === CallingButtonType.RING_OFF) {
classNameSuffix = 'ring--off';
tooltipContent = i18n('calling__button--ring__on');
label = i18n('calling__button--ring__label');
} else if (buttonType === CallingButtonType.RING_ON) {
classNameSuffix = 'ring--on';
tooltipContent = i18n('calling__button--ring__off');
label = i18n('calling__button--ring__label');
} else if (buttonType === CallingButtonType.PRESENTING_DISABLED) {
classNameSuffix = 'presenting--disabled';
tooltipContent = i18n('calling__button--presenting-disabled');
disabled = true;
label = i18n('calling__button--presenting__label');
} else if (buttonType === CallingButtonType.PRESENTING_ON) {
classNameSuffix = 'presenting--on';
tooltipContent = i18n('calling__button--presenting-off');
label = i18n('calling__button--presenting__label');
} else if (buttonType === CallingButtonType.PRESENTING_OFF) {
classNameSuffix = 'presenting--off';
tooltipContent = i18n('calling__button--presenting-on');
label = i18n('calling__button--presenting__label');
2020-10-08 01:25:33 +00:00
}
const className = classNames(
'module-calling-button__icon',
`module-calling-button__icon--${classNameSuffix}`
);
return (
2020-11-19 23:38:59 +00:00
<Tooltip
content={tooltipContent}
direction={tooltipDirection}
theme={Theme.Dark}
2020-11-19 23:38:59 +00:00
>
<div
className={classNames(
'module-calling-button__container',
!isVisible && 'module-calling-button__container--hidden'
)}
>
<button
aria-label={tooltipContent}
className={className}
disabled={disabled}
id={uniqueButtonId}
onClick={onClick}
type="button"
>
<div />
</button>
<label
className="module-calling-button__label"
htmlFor={uniqueButtonId}
>
{label}
</label>
</div>
2020-11-19 18:11:35 +00:00
</Tooltip>
2020-10-08 01:25:33 +00:00
);
};