2022-04-28 13:37:20 +02:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-04-28 13:37:20 +02:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
2024-09-09 14:57:16 +01:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-04-28 13:37:20 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import React, { useState } from "react";
|
|
|
|
|
|
|
|
|
|
import { _t } from "../../../languageHandler";
|
|
|
|
|
import StyledLiveBeaconIcon from "../beacon/StyledLiveBeaconIcon";
|
|
|
|
|
import AccessibleButton from "../elements/AccessibleButton";
|
|
|
|
|
import LabelledToggleSwitch from "../elements/LabelledToggleSwitch";
|
|
|
|
|
import Heading from "../typography/Heading";
|
|
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
|
onSubmit: () => void;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const EnableLiveShare: React.FC<Props> = ({ onSubmit }) => {
|
|
|
|
|
const [isEnabled, setEnabled] = useState(false);
|
|
|
|
|
return (
|
2023-02-21 07:35:39 +13:00
|
|
|
<div data-testid="location-picker-enable-live-share" className="mx_EnableLiveShare">
|
2022-04-28 13:37:20 +02:00
|
|
|
<StyledLiveBeaconIcon className="mx_EnableLiveShare_icon" />
|
2023-06-29 11:30:25 +01:00
|
|
|
<Heading className="mx_EnableLiveShare_heading" size="3">
|
2023-09-25 18:12:41 +01:00
|
|
|
{_t("location_sharing|live_enable_heading")}
|
2022-04-28 13:37:20 +02:00
|
|
|
</Heading>
|
2023-09-25 18:12:41 +01:00
|
|
|
<p className="mx_EnableLiveShare_description">{_t("location_sharing|live_enable_description")}</p>
|
2022-04-28 13:37:20 +02:00
|
|
|
<LabelledToggleSwitch
|
2023-02-21 07:35:39 +13:00
|
|
|
data-testid="enable-live-share-toggle"
|
2022-04-28 13:37:20 +02:00
|
|
|
value={isEnabled}
|
|
|
|
|
onChange={setEnabled}
|
2023-09-25 18:12:41 +01:00
|
|
|
label={_t("location_sharing|live_toggle_label")}
|
2022-04-28 13:37:20 +02:00
|
|
|
/>
|
|
|
|
|
<AccessibleButton
|
2023-02-21 07:35:39 +13:00
|
|
|
data-testid="enable-live-share-submit"
|
2022-04-28 13:37:20 +02:00
|
|
|
className="mx_EnableLiveShare_button"
|
|
|
|
|
element="button"
|
|
|
|
|
kind="primary"
|
|
|
|
|
onClick={onSubmit}
|
|
|
|
|
disabled={!isEnabled}
|
|
|
|
|
>
|
2023-08-22 20:55:15 +01:00
|
|
|
{_t("action|ok")}
|
2022-04-28 13:37:20 +02:00
|
|
|
</AccessibleButton>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|