mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-15 00:04:59 +08:00
prettier the world
This commit is contained in:
parent
e6073ec8ef
commit
d5f546a093
@ -142,7 +142,9 @@ export const MicButton: FC<{
|
||||
}> = ({ muted, ...rest }) => {
|
||||
const { t } = useTranslation();
|
||||
const Icon = muted ? MicOffSolidIcon : MicOnSolidIcon;
|
||||
const label = muted ? t("unmute_microphone_button_label") : t("mute_microphone_button_label");
|
||||
const label = muted
|
||||
? t("unmute_microphone_button_label")
|
||||
: t("mute_microphone_button_label");
|
||||
|
||||
return (
|
||||
<Tooltip label={label}>
|
||||
@ -160,7 +162,9 @@ export const VideoButton: FC<{
|
||||
}> = ({ muted, ...rest }) => {
|
||||
const { t } = useTranslation();
|
||||
const Icon = muted ? VideoCallOffSolidIcon : VideoCallSolidIcon;
|
||||
const label = muted ? t("start_video_button_label") : t("stop_video_button_label");
|
||||
const label = muted
|
||||
? t("start_video_button_label")
|
||||
: t("stop_video_button_label");
|
||||
|
||||
return (
|
||||
<Tooltip label={label}>
|
||||
@ -178,7 +182,9 @@ export const ScreenshareButton: FC<{
|
||||
[index: string]: unknown;
|
||||
}> = ({ enabled, className, ...rest }) => {
|
||||
const { t } = useTranslation();
|
||||
const label = enabled ? t("stop_screenshare_button_label") : t("screenshare_button_label");
|
||||
const label = enabled
|
||||
? t("stop_screenshare_button_label")
|
||||
: t("screenshare_button_label");
|
||||
|
||||
return (
|
||||
<Tooltip label={label}>
|
||||
@ -254,7 +260,9 @@ export const FullscreenButton: FC<FullscreenButtonProps> = ({
|
||||
}) => {
|
||||
const { t } = useTranslation();
|
||||
const Icon = fullscreen ? FullscreenExit : Fullscreen;
|
||||
const label = fullscreen ? t("exit_fullscreen_button_label") : t("fullscreen_button_label");
|
||||
const label = fullscreen
|
||||
? t("exit_fullscreen_button_label")
|
||||
: t("fullscreen_button_label");
|
||||
|
||||
return (
|
||||
<Tooltip label={label}>
|
||||
|
@ -37,7 +37,11 @@ export const JoinExistingCallModal: FC<Props> = ({
|
||||
const { t } = useTranslation();
|
||||
|
||||
return (
|
||||
<Modal title={t("join_existing_call_modal.title")} open={open} onDismiss={onDismiss}>
|
||||
<Modal
|
||||
title={t("join_existing_call_modal.title")}
|
||||
open={open}
|
||||
onDismiss={onDismiss}
|
||||
>
|
||||
<p>{t("join_existing_call_modal.text")}</p>
|
||||
<FieldRow rightAlign className={styles.buttons}>
|
||||
<Button onPress={onDismiss}>{t("action.no")}</Button>
|
||||
|
@ -76,7 +76,11 @@ export const AppSelectionModal: FC<Props> = ({ roomId }) => {
|
||||
}, [roomId, roomSharedKey]);
|
||||
|
||||
return (
|
||||
<Modal className={styles.modal} title={t("app_selection_modal.title")} open={open}>
|
||||
<Modal
|
||||
className={styles.modal}
|
||||
title={t("app_selection_modal.title")}
|
||||
open={open}
|
||||
>
|
||||
<Text size="md" weight="semibold">
|
||||
{t("app_selection_modal.text")}
|
||||
</Text>
|
||||
|
@ -44,7 +44,11 @@ export const RageshakeRequestModal: FC<Props> = ({
|
||||
}, [sent, onDismiss]);
|
||||
|
||||
return (
|
||||
<Modal title={t("rageshake_request_modal.title")} open={open} onDismiss={onDismiss}>
|
||||
<Modal
|
||||
title={t("rageshake_request_modal.title")}
|
||||
open={open}
|
||||
onDismiss={onDismiss}
|
||||
>
|
||||
<Body>{t("rageshake_request_modal.body")}</Body>
|
||||
<FieldRow>
|
||||
<Button
|
||||
|
@ -204,7 +204,9 @@ export const VideoTile = forwardRef<HTMLDivElement, Props>(
|
||||
data-muted={muted}
|
||||
/>
|
||||
<Text as="span" size="sm" weight="medium">
|
||||
{sfuParticipant.isLocal ? t("video_tile.sfu_participant_local") : displayName}
|
||||
{sfuParticipant.isLocal
|
||||
? t("video_tile.sfu_participant_local")
|
||||
: displayName}
|
||||
</Text>
|
||||
{showConnectionStats && (
|
||||
<ConnectionQualityIndicator participant={sfuParticipant} />
|
||||
|
Loading…
Reference in New Issue
Block a user