import { customElement } from "lit-element"; import { User } from "../api/Users"; import { SidebarItem } from "../elements/sidebar/Sidebar"; import { SLUG_REGEX } from "../elements/router/Route"; import { Interface } from "./Interface"; export const SIDEBAR_ITEMS: SidebarItem[] = [ new SidebarItem("Library", "/library/"), new SidebarItem("Monitor").children( new SidebarItem("Overview", "/administration/overview/"), new SidebarItem("System Tasks", "/administration/tasks/"), new SidebarItem("Events", "/events/log/"), ).when((): Promise => { return User.me().then(u => u.is_superuser); }), new SidebarItem("Administration").children( new SidebarItem("Applications", "/applications/").activeWhen( `^/applications/(?${SLUG_REGEX})/$` ), new SidebarItem("Sources", "/administration/sources/").activeWhen( `^/sources/(?${SLUG_REGEX})/$`, ), new SidebarItem("Providers", "/administration/providers/"), new SidebarItem("Outposts", "/administration/outposts/"), new SidebarItem("Outpost Service Connections", "/administration/outposts/service_connections/"), new SidebarItem("Policies", "/administration/policies/"), new SidebarItem("Property Mappings", "/administration/property-mappings"), new SidebarItem("Certificates", "/administration/crypto/certificates"), new SidebarItem("Tokens", "/administration/tokens/"), ).when((): Promise => { return User.me().then(u => u.is_superuser); }), new SidebarItem("Flows").children( new SidebarItem("Flows", "/administration/flows/").activeWhen(`^/flows/(?${SLUG_REGEX})/$`), new SidebarItem("Stages", "/administration/stages/"), new SidebarItem("Prompts", "/administration/stages/prompts/"), new SidebarItem("Invitations", "/administration/stages/invitations/"), ).when((): Promise => { return User.me().then(u => u.is_superuser); }), new SidebarItem("User Management").children( new SidebarItem("User", "/administration/users/"), new SidebarItem("Groups", "/administration/groups/") ).when((): Promise => { return User.me().then(u => u.is_superuser); }), ]; @customElement("ak-interface-admin") export class AdminInterface extends Interface { get sidebar(): SidebarItem[] { return SIDEBAR_ITEMS; } }