import { SidebarNavItem } from "@app/components/SidebarNav"; import { build } from "@server/build"; import { Home, Settings, Users, Link as LinkIcon, Waypoints, Combine, Fingerprint, Workflow, KeyRound, TicketCheck, User, Globe, // Added from 'dev' branch MonitorUp, // Added from 'dev' branch Server, Zap, CreditCard, Logs, SquareMousePointer, ScanEye } from "lucide-react"; export type SidebarNavSection = { // Added from 'dev' branch heading: string; items: SidebarNavItem[]; }; // Merged from 'user-management-and-resources' branch export const orgLangingNavItems: SidebarNavItem[] = [ { title: "sidebarAccount", href: "/{orgId}", icon: } ]; export const orgNavSections = ( enableClients: boolean = true ): SidebarNavSection[] => [ { heading: "General", items: [ { title: "sidebarSites", href: "/{orgId}/settings/sites", icon: }, { title: "sidebarResources", href: "/{orgId}/settings/resources", icon: }, ...(enableClients ? [ { title: "sidebarClients", href: "/{orgId}/settings/clients", icon: , isBeta: true } ] : []), ...(build == "saas" ? [ { title: "sidebarRemoteExitNodes", href: "/{orgId}/settings/remote-exit-nodes", icon: , showEE: true } ] : []), { title: "sidebarDomains", href: "/{orgId}/settings/domains", icon: } ] }, { heading: "Access Control", items: [ { title: "sidebarUsers", href: "/{orgId}/settings/access/users", icon: }, { title: "sidebarRoles", href: "/{orgId}/settings/access/roles", icon: }, { title: "sidebarInvitations", href: "/{orgId}/settings/access/invitations", icon: }, ...(build == "saas" ? [ { title: "sidebarIdentityProviders", href: "/{orgId}/settings/idp", icon: , showEE: true } ] : []), { title: "sidebarShareableLinks", href: "/{orgId}/settings/share-links", icon: } ] }, { heading: "Analytics", items: [ { title: "sidebarLogsRequest", href: "/{orgId}/settings/logs/request", icon: }, ...(build != "oss" ? [ { title: "sidebarLogsAccess", href: "/{orgId}/settings/logs/access", icon: }, { title: "sidebarLogsAction", href: "/{orgId}/settings/logs/action", icon: } ] : []) ] }, { heading: "Organization", items: [ { title: "sidebarApiKeys", href: "/{orgId}/settings/api-keys", icon: }, ...(build == "saas" ? [ { title: "sidebarBilling", href: "/{orgId}/settings/billing", icon: } ] : []), ...(build == "saas" ? [ { title: "sidebarEnterpriseLicenses", href: "/{orgId}/settings/license", icon: } ] : []), { title: "sidebarSettings", href: "/{orgId}/settings/general", icon: } ] } ]; export const adminNavSections: SidebarNavSection[] = [ { heading: "Admin", items: [ { title: "sidebarAllUsers", href: "/admin/users", icon: }, { title: "sidebarApiKeys", href: "/admin/api-keys", icon: }, { title: "sidebarIdentityProviders", href: "/admin/idp", icon: }, ...(build == "enterprise" ? [ { title: "sidebarLicense", href: "/admin/license", icon: } ] : []) ] } ];