import { ListUl, Share, Group, ListCheck, } from "@styled-icons/boxicons-regular"; import { XSquare } from "@styled-icons/boxicons-solid"; import { Route, useHistory, useParams } from "react-router-dom"; import { Text } from "preact-i18n"; import RequiresOnline from "../../context/revoltjs/RequiresOnline"; import { useServer } from "../../context/revoltjs/hooks"; import Category from "../../components/ui/Category"; import { GenericSettings } from "./GenericSettings"; import { Bans } from "./server/Bans"; import { Invites } from "./server/Invites"; import { Members } from "./server/Members"; import { Overview } from "./server/Overview"; 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 /> ); }