import { Text } from "preact-i18n"; import Category from "../../components/ui/Category"; import { GenericSettings } from "./GenericSettings"; import { useServer } from "../../context/revoltjs/hooks"; import { Route, useHistory, useParams } from "react-router-dom"; import { ListUl, Share, Group, ListCheck } from "@styled-icons/boxicons-regular"; import { XSquare } from "@styled-icons/boxicons-solid"; import RequiresOnline from "../../context/revoltjs/RequiresOnline"; import { Overview } from "./server/Overview"; import { Members } from "./server/Members"; import { Invites } from "./server/Invites"; import { Bans } from "./server/Bans"; import { Roles } from "./server/Roles"; export default function ServerSettings() { const { server: sid } = useParams<{ server: string; }>(); const server = useServer(sid); if (!server) return null; const history = useHistory(); function switchPage(to?: string) { if (to) { history.replace(`/server/${sid}/settings/${to}`); } else { history.replace(`/server/${sid}/settings`); } } return ( , //TOFIX: Just add the server.name as a string, otherwise it makes a duplicate category id: 'overview', icon: , title: }, { id: 'members', icon: , title: }, { id: 'invites', icon: , title: }, { id: 'bans', icon: , title: }, { id: 'roles', icon: , title: , hideTitle: true } ]} children={[ , , , , ]} category="server_pages" switchPage={switchPage} defaultPage="overview" showExitButton /> ) }