import { Text } from "preact-i18n"; import { useEffect } from "preact/hooks"; import styles from "./Settings.module.scss"; import { Children } from "../../types/Preact"; import Header from '../../components/ui/Header'; import Category from '../../components/ui/Category'; import IconButton from "../../components/ui/IconButton"; import LineDivider from "../../components/ui/LineDivider"; import { ArrowBack, X, XCircle } from "@styled-icons/boxicons-regular"; import { Switch, useHistory, useParams } from "react-router-dom"; import { isTouchscreenDevice } from "../../lib/isTouchscreenDevice"; import ButtonItem from "../../components/navigation/items/ButtonItem"; interface Props { pages: { category?: Children divider?: boolean id: string icon: Children title: Children hideTitle?: boolean }[] custom?: Children children: Children defaultPage: string showExitButton?: boolean switchPage: (to?: string) => void category: 'pages' | 'channel_pages' | 'server_pages' } export function GenericSettings({ pages, switchPage, category, custom, children, defaultPage, showExitButton }: Props) { const history = useHistory(); const { page } = useParams<{ page: string; }>(); function exitSettings() { if (history.length > 0) { history.goBack(); } else { history.push('/'); } } useEffect(() => { function keyDown(e: KeyboardEvent) { if (e.key === "Escape") { exitSettings(); } } document.body.addEventListener("keydown", keyDown); return () => document.body.removeEventListener("keydown", keyDown); }, []); return (
{isTouchscreenDevice && (
{typeof page === "undefined" ? ( <> { showExitButton && } ) : ( <> switchPage()}> )}
)} {(!isTouchscreenDevice || typeof page === "undefined") && (
{ pages.map((entry, i) => <> { entry.category && } switchPage(entry.id)} compact >{entry.icon} {entry.title} { entry.divider && } ) } { custom }
)} {(!isTouchscreenDevice || typeof page === "string") && (
{!isTouchscreenDevice && !(pages.find(x => x.id === page && x.hideTitle)) && (

)} { children }
)} {!isTouchscreenDevice && (
)}
); }