This attempts to converge all our modals on the new modal component while changing their designs as little as possible. This should reduce the bundle size a bit and make the app generally feel like it's converging on the new designs, even though individual modals still remain to be revamped.
306 lines
8.6 KiB
TypeScript
306 lines
8.6 KiB
TypeScript
/*
|
|
Copyright 2022 - 2023 New Vector Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import { ChangeEvent, Key, useCallback, useState } from "react";
|
|
import { Item } from "@react-stately/collections";
|
|
import { Trans, useTranslation } from "react-i18next";
|
|
import { MatrixClient } from "matrix-js-sdk";
|
|
|
|
import { Modal } from "../Modal";
|
|
import styles from "./SettingsModal.module.css";
|
|
import { TabContainer, TabItem } from "../tabs/Tabs";
|
|
import { ReactComponent as AudioIcon } from "../icons/Audio.svg";
|
|
import { ReactComponent as VideoIcon } from "../icons/Video.svg";
|
|
import { ReactComponent as DeveloperIcon } from "../icons/Developer.svg";
|
|
import { ReactComponent as OverflowIcon } from "../icons/Overflow.svg";
|
|
import { ReactComponent as UserIcon } from "../icons/User.svg";
|
|
import { ReactComponent as FeedbackIcon } from "../icons/Feedback.svg";
|
|
import { SelectInput } from "../input/SelectInput";
|
|
import {
|
|
useShowInspector,
|
|
useOptInAnalytics,
|
|
useDeveloperSettingsTab,
|
|
useShowConnectionStats,
|
|
useEnableE2EE,
|
|
} from "./useSetting";
|
|
import { FieldRow, InputField } from "../input/Input";
|
|
import { Button } from "../button";
|
|
import { useDownloadDebugLog } from "./submit-rageshake";
|
|
import { Body, Caption } from "../typography/Typography";
|
|
import { AnalyticsNotice } from "../analytics/AnalyticsNotice";
|
|
import { ProfileSettingsTab } from "./ProfileSettingsTab";
|
|
import { FeedbackSettingsTab } from "./FeedbackSettingsTab";
|
|
import { useUrlParams } from "../UrlParams";
|
|
import {
|
|
useMediaDevices,
|
|
MediaDevice,
|
|
useMediaDeviceNames,
|
|
} from "../livekit/MediaDevicesContext";
|
|
|
|
interface Props {
|
|
open: boolean;
|
|
onDismiss: () => void;
|
|
client: MatrixClient;
|
|
roomId?: string;
|
|
defaultTab?: string;
|
|
}
|
|
|
|
export const SettingsModal = (props: Props) => {
|
|
const { t } = useTranslation();
|
|
|
|
const { isEmbedded } = useUrlParams();
|
|
|
|
const [showInspector, setShowInspector] = useShowInspector();
|
|
const [optInAnalytics, setOptInAnalytics] = useOptInAnalytics();
|
|
const [developerSettingsTab, setDeveloperSettingsTab] =
|
|
useDeveloperSettingsTab();
|
|
const [showConnectionStats, setShowConnectionStats] =
|
|
useShowConnectionStats();
|
|
const [enableE2EE, setEnableE2EE] = useEnableE2EE();
|
|
|
|
const downloadDebugLog = useDownloadDebugLog();
|
|
|
|
// Generate a `SelectInput` with a list of devices for a given device kind.
|
|
const generateDeviceSelection = (devices: MediaDevice, caption: string) => {
|
|
if (devices.available.length == 0) return null;
|
|
|
|
return (
|
|
<SelectInput
|
|
label={caption}
|
|
selectedKey={
|
|
devices.selectedId === "" || !devices.selectedId
|
|
? "default"
|
|
: devices.selectedId
|
|
}
|
|
onSelectionChange={(id) => devices.select(id.toString())}
|
|
>
|
|
{devices.available.map(({ deviceId, label }, index) => (
|
|
<Item key={deviceId}>
|
|
{!!label && label.trim().length > 0
|
|
? label
|
|
: `${caption} ${index + 1}`}
|
|
</Item>
|
|
))}
|
|
</SelectInput>
|
|
);
|
|
};
|
|
|
|
const [selectedTab, setSelectedTab] = useState<string | undefined>();
|
|
|
|
const onSelectedTabChanged = useCallback(
|
|
(tab: Key) => {
|
|
setSelectedTab(tab.toString());
|
|
},
|
|
[setSelectedTab]
|
|
);
|
|
|
|
const optInDescription = (
|
|
<Caption>
|
|
<Trans>
|
|
<AnalyticsNotice />
|
|
<br />
|
|
You may withdraw consent by unchecking this box. If you are currently in
|
|
a call, this setting will take effect at the end of the call.
|
|
</Trans>
|
|
</Caption>
|
|
);
|
|
|
|
const devices = useMediaDevices();
|
|
useMediaDeviceNames(devices, props.open);
|
|
|
|
const audioTab = (
|
|
<TabItem
|
|
key="audio"
|
|
title={
|
|
<>
|
|
<AudioIcon width={16} height={16} />
|
|
<span className={styles.tabLabel}>{t("Audio")}</span>
|
|
</>
|
|
}
|
|
>
|
|
{generateDeviceSelection(devices.audioInput, t("Microphone"))}
|
|
{generateDeviceSelection(devices.audioOutput, t("Speaker"))}
|
|
</TabItem>
|
|
);
|
|
|
|
const videoTab = (
|
|
<TabItem
|
|
key="video"
|
|
title={
|
|
<>
|
|
<VideoIcon width={16} height={16} />
|
|
<span>{t("Video")}</span>
|
|
</>
|
|
}
|
|
>
|
|
{generateDeviceSelection(devices.videoInput, t("Camera"))}
|
|
</TabItem>
|
|
);
|
|
|
|
const profileTab = (
|
|
<TabItem
|
|
key="profile"
|
|
title={
|
|
<>
|
|
<UserIcon width={15} height={15} />
|
|
<span>{t("Profile")}</span>
|
|
</>
|
|
}
|
|
>
|
|
<ProfileSettingsTab client={props.client} />
|
|
</TabItem>
|
|
);
|
|
|
|
const feedbackTab = (
|
|
<TabItem
|
|
key="feedback"
|
|
title={
|
|
<>
|
|
<FeedbackIcon width={16} height={16} />
|
|
<span>{t("Feedback")}</span>
|
|
</>
|
|
}
|
|
>
|
|
<FeedbackSettingsTab roomId={props.roomId} />
|
|
</TabItem>
|
|
);
|
|
|
|
const moreTab = (
|
|
<TabItem
|
|
key="more"
|
|
title={
|
|
<>
|
|
<OverflowIcon width={16} height={16} />
|
|
<span>{t("More")}</span>
|
|
</>
|
|
}
|
|
>
|
|
<h4>Developer</h4>
|
|
<p>Version: {(import.meta.env.VITE_APP_VERSION as string) || "dev"}</p>
|
|
<FieldRow>
|
|
<InputField
|
|
id="developerSettingsTab"
|
|
type="checkbox"
|
|
checked={developerSettingsTab}
|
|
label={t("Developer Settings")}
|
|
description={t("Expose developer settings in the settings window.")}
|
|
onChange={(event: ChangeEvent<HTMLInputElement>) =>
|
|
setDeveloperSettingsTab(event.target.checked)
|
|
}
|
|
/>
|
|
</FieldRow>
|
|
<h4>Analytics</h4>
|
|
<FieldRow>
|
|
<InputField
|
|
id="optInAnalytics"
|
|
type="checkbox"
|
|
checked={optInAnalytics ?? undefined}
|
|
description={optInDescription}
|
|
onChange={(event: ChangeEvent<HTMLInputElement>) => {
|
|
setOptInAnalytics?.(event.target.checked);
|
|
}}
|
|
/>
|
|
</FieldRow>
|
|
</TabItem>
|
|
);
|
|
|
|
const developerTab = (
|
|
<TabItem
|
|
key="developer"
|
|
title={
|
|
<>
|
|
<DeveloperIcon width={16} height={16} />
|
|
<span>{t("Developer")}</span>
|
|
</>
|
|
}
|
|
>
|
|
<FieldRow>
|
|
<Body className={styles.fieldRowText}>
|
|
{t("Version: {{version}}", {
|
|
version: import.meta.env.VITE_APP_VERSION || "dev",
|
|
})}
|
|
</Body>
|
|
</FieldRow>
|
|
<FieldRow>
|
|
<InputField
|
|
id="showInspector"
|
|
name="inspector"
|
|
label={t("Show call inspector")}
|
|
type="checkbox"
|
|
checked={showInspector}
|
|
onChange={(e: ChangeEvent<HTMLInputElement>) =>
|
|
setShowInspector(e.target.checked)
|
|
}
|
|
/>
|
|
</FieldRow>
|
|
<FieldRow>
|
|
<InputField
|
|
id="showConnectionStats"
|
|
name="connection-stats"
|
|
label={t("Show connection stats")}
|
|
type="checkbox"
|
|
checked={showConnectionStats}
|
|
onChange={(e: ChangeEvent<HTMLInputElement>) =>
|
|
setShowConnectionStats(e.target.checked)
|
|
}
|
|
/>
|
|
</FieldRow>
|
|
<FieldRow>
|
|
<InputField
|
|
id="enableE2EE"
|
|
name="end-to-end-encryption"
|
|
label={t("Enable end-to-end encryption (password protected calls)")}
|
|
description={
|
|
!setEnableE2EE &&
|
|
t("End-to-end encryption isn't supported on your browser.")
|
|
}
|
|
disabled={!setEnableE2EE}
|
|
type="checkbox"
|
|
checked={enableE2EE ?? undefined}
|
|
onChange={(e: ChangeEvent<HTMLInputElement>) =>
|
|
setEnableE2EE?.(e.target.checked)
|
|
}
|
|
/>
|
|
</FieldRow>
|
|
<FieldRow>
|
|
<Button onPress={downloadDebugLog}>{t("Download debug logs")}</Button>
|
|
</FieldRow>
|
|
</TabItem>
|
|
);
|
|
|
|
const tabs = [audioTab, videoTab];
|
|
if (!isEmbedded) tabs.push(profileTab);
|
|
tabs.push(feedbackTab, moreTab);
|
|
if (developerSettingsTab) tabs.push(developerTab);
|
|
|
|
return (
|
|
<Modal
|
|
title={t("Settings")}
|
|
className={styles.settingsModal}
|
|
open={props.open}
|
|
onDismiss={props.onDismiss}
|
|
>
|
|
<TabContainer
|
|
onSelectionChange={onSelectedTabChanged}
|
|
selectedKey={selectedTab ?? props.defaultTab ?? "audio"}
|
|
className={styles.tabContainer}
|
|
>
|
|
{tabs}
|
|
</TabContainer>
|
|
</Modal>
|
|
);
|
|
};
|