import { Show } from "solid-js"; import { Trans } from "@lingui-solid/solid/macro"; import { Server } from "stoat.js"; import { useModals } from "@revolt/modal"; import MdLibraryAdd from "@material-design-icons/svg/outlined/library_add.svg?component-solid"; import { ContextMenu, ContextMenuButton } from "./ContextMenu"; /** * Context menu for server sidebar */ export function ServerSidebarContextMenu(props: { server: Server }) { const { openModal } = useModals(); /** * Create a new channel */ function createChannel() { openModal({ type: "create_channel", server: props.server!, }); } /** * Create a new category */ function createCategory() { openModal({ type: "create_category", server: props.server!, }); } return ( Create channel Create category ); }