2023-09-08 15:39:10 -04:00
|
|
|
/*
|
2024-09-06 10:22:13 +02:00
|
|
|
Copyright 2023, 2024 New Vector Ltd.
|
2023-09-08 15:39:10 -04:00
|
|
|
|
2025-02-18 17:59:58 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-06 10:22:13 +02:00
|
|
|
Please see LICENSE in the repository root for full details.
|
2023-09-08 15:39:10 -04:00
|
|
|
*/
|
|
|
|
|
|
2024-12-11 09:27:55 +00:00
|
|
|
import { type ChangeEvent, type FC, type TouchEvent, useCallback } from "react";
|
2023-09-08 15:39:10 -04:00
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
|
import { Tooltip } from "@vector-im/compound-web";
|
2024-07-25 13:15:45 -04:00
|
|
|
import {
|
|
|
|
|
SpotlightIcon,
|
|
|
|
|
GridIcon,
|
|
|
|
|
} from "@vector-im/compound-design-tokens/assets/web/icons";
|
2023-09-08 15:39:10 -04:00
|
|
|
import classNames from "classnames";
|
|
|
|
|
|
|
|
|
|
import styles from "./LayoutToggle.module.css";
|
|
|
|
|
|
|
|
|
|
export type Layout = "spotlight" | "grid";
|
|
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
|
layout: Layout;
|
|
|
|
|
setLayout: (layout: Layout) => void;
|
|
|
|
|
className?: string;
|
2024-08-08 17:21:47 -04:00
|
|
|
onTouchEnd?: (e: TouchEvent) => void;
|
2023-09-08 15:39:10 -04:00
|
|
|
}
|
|
|
|
|
|
2024-08-08 17:21:47 -04:00
|
|
|
export const LayoutToggle: FC<Props> = ({
|
|
|
|
|
layout,
|
|
|
|
|
setLayout,
|
|
|
|
|
className,
|
|
|
|
|
onTouchEnd,
|
|
|
|
|
}) => {
|
2023-09-08 15:39:10 -04:00
|
|
|
const { t } = useTranslation();
|
|
|
|
|
|
|
|
|
|
const onChange = useCallback(
|
|
|
|
|
(e: ChangeEvent<HTMLInputElement>) => setLayout(e.target.value as Layout),
|
2023-10-11 10:42:04 -04:00
|
|
|
[setLayout],
|
2023-09-08 15:39:10 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className={classNames(styles.toggle, className)}>
|
2023-11-20 13:00:43 +00:00
|
|
|
<Tooltip label={t("layout_spotlight_label")}>
|
2024-08-02 15:27:49 -04:00
|
|
|
<input
|
|
|
|
|
type="radio"
|
|
|
|
|
name="layout"
|
|
|
|
|
value="spotlight"
|
|
|
|
|
checked={layout === "spotlight"}
|
|
|
|
|
onChange={onChange}
|
2024-08-08 17:21:47 -04:00
|
|
|
onTouchEnd={onTouchEnd}
|
2024-08-02 15:27:49 -04:00
|
|
|
/>
|
2023-09-08 15:39:10 -04:00
|
|
|
</Tooltip>
|
2024-08-02 15:27:49 -04:00
|
|
|
<SpotlightIcon aria-hidden width={24} height={24} />
|
2023-11-20 13:00:43 +00:00
|
|
|
<Tooltip label={t("layout_grid_label")}>
|
2024-08-02 15:27:49 -04:00
|
|
|
<input
|
|
|
|
|
type="radio"
|
|
|
|
|
name="layout"
|
|
|
|
|
value="grid"
|
|
|
|
|
checked={layout === "grid"}
|
|
|
|
|
onChange={onChange}
|
2024-08-08 17:21:47 -04:00
|
|
|
onTouchEnd={onTouchEnd}
|
2024-08-02 15:27:49 -04:00
|
|
|
/>
|
2023-09-08 15:39:10 -04:00
|
|
|
</Tooltip>
|
2024-08-02 15:27:49 -04:00
|
|
|
<GridIcon aria-hidden width={24} height={24} />
|
2023-09-08 15:39:10 -04:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|