| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- import { useFlag, useParams } from 'common'
- import { PropsWithChildren } from 'react'
- import { useIsPlatformWebhooksEnabled } from '@/components/interfaces/App/FeaturePreview/FeaturePreviewContext'
- import type { SidebarSection } from '@/components/layouts/AccountLayout/AccountLayout.types'
- import { WithSidebar } from '@/components/layouts/AccountLayout/WithSidebar'
- import { useCurrentPath } from '@/hooks/misc/useCurrentPath'
- import { useIsFeatureEnabled } from '@/hooks/misc/useIsFeatureEnabled'
- interface OrganizationSettingsMenuItemsProps {
- slug?: string
- showSecuritySettings?: boolean
- showSsoSettings?: boolean
- showLegalDocuments?: boolean
- showPlatformWebhooks?: boolean
- showPrivateApps?: boolean
- }
- interface OrganizationSettingsSectionsProps extends OrganizationSettingsMenuItemsProps {
- currentPath: string
- }
- export const normalizeOrganizationSettingsPath = (path: string) => path.split('#')[0]
- export const generateOrganizationSettingsMenuItems = ({
- slug,
- showSecuritySettings = true,
- showSsoSettings = true,
- showLegalDocuments = true,
- showPlatformWebhooks = true,
- showPrivateApps: _showPrivateApps = false,
- }: OrganizationSettingsMenuItemsProps) => [
- {
- key: 'general',
- label: 'General',
- href: `/org/${slug}/general`,
- },
- ...(showSecuritySettings
- ? [
- {
- key: 'security',
- label: 'Security',
- href: `/org/${slug}/security`,
- },
- ]
- : []),
- {
- key: 'apps',
- label: 'OAuth Apps',
- href: `/org/${slug}/apps`,
- },
- ...(showSsoSettings
- ? [
- {
- key: 'sso',
- label: 'SSO',
- href: `/org/${slug}/sso`,
- },
- ]
- : []),
- ...(showPlatformWebhooks
- ? [
- {
- key: 'webhooks',
- label: 'Webhooks',
- href: `/org/${slug}/webhooks`,
- },
- ]
- : []),
- {
- key: 'audit',
- label: 'Audit Logs',
- href: `/org/${slug}/audit`,
- },
- ...(showLegalDocuments
- ? [
- {
- key: 'documents',
- label: 'Legal Documents',
- href: `/org/${slug}/documents`,
- },
- ]
- : []),
- ]
- export const generateOrganizationSettingsSections = ({
- currentPath,
- slug,
- showSecuritySettings = true,
- showSsoSettings = true,
- showLegalDocuments = true,
- showPlatformWebhooks = true,
- showPrivateApps = false,
- }: OrganizationSettingsSectionsProps): SidebarSection[] => {
- const isLinkActive = (key: string, href: string) =>
- key === 'webhooks'
- ? currentPath === href || currentPath.startsWith(`${href}/`)
- : currentPath === href
- const configurationLinks = [
- {
- key: 'general',
- label: 'General',
- href: `/org/${slug}/general`,
- },
- ...(showSecuritySettings
- ? [
- {
- key: 'security',
- label: 'Security',
- href: `/org/${slug}/security`,
- },
- ]
- : []),
- ...(showSsoSettings
- ? [
- {
- key: 'sso',
- label: 'SSO',
- href: `/org/${slug}/sso`,
- },
- ]
- : []),
- ]
- const connectionsLinks = [
- {
- key: 'apps',
- label: 'OAuth Apps',
- href: `/org/${slug}/apps`,
- },
- ...(showPrivateApps
- ? [
- {
- key: 'private-apps',
- label: 'Private Apps',
- href: `/org/${slug}/private-apps`,
- },
- ]
- : []),
- ...(showPlatformWebhooks
- ? [
- {
- key: 'webhooks',
- label: 'Webhooks',
- href: `/org/${slug}/webhooks`,
- },
- ]
- : []),
- ]
- const complianceLinks = [
- {
- key: 'audit',
- label: 'Audit Logs',
- href: `/org/${slug}/audit`,
- },
- ...(showLegalDocuments
- ? [
- {
- key: 'documents',
- label: 'Legal Documents',
- href: `/org/${slug}/documents`,
- },
- ]
- : []),
- ]
- return [
- {
- key: 'configuration',
- heading: 'Configuration',
- links: configurationLinks.map((item) => ({
- ...item,
- isActive: isLinkActive(item.key, item.href),
- })),
- },
- {
- key: 'connections',
- heading: 'Connections',
- links: connectionsLinks.map((item) => ({
- ...item,
- isActive: isLinkActive(item.key, item.href),
- })),
- },
- {
- key: 'compliance',
- heading: 'Compliance',
- links: complianceLinks.map((item) => ({
- ...item,
- isActive: isLinkActive(item.key, item.href),
- })),
- },
- ]
- }
- export function OrganizationSettingsLayout({ children }: PropsWithChildren) {
- const { slug } = useParams()
- const showPlatformWebhooks = useIsPlatformWebhooksEnabled()
- const showPrivateApps = useFlag('privateApps')
- const fullCurrentPath = useCurrentPath()
- const currentPath = normalizeOrganizationSettingsPath(fullCurrentPath)
- const {
- organizationShowSsoSettings: showSsoSettings,
- organizationShowSecuritySettings: showSecuritySettings,
- organizationShowLegalDocuments: showLegalDocuments,
- } = useIsFeatureEnabled([
- 'organization:show_sso_settings',
- 'organization:show_security_settings',
- 'organization:show_legal_documents',
- ])
- const sections = generateOrganizationSettingsSections({
- currentPath,
- slug,
- showSecuritySettings,
- showSsoSettings,
- showLegalDocuments,
- showPlatformWebhooks,
- showPrivateApps,
- })
- // Browser titles for org settings routes are set by OrganizationLayout.
- return (
- <WithSidebar
- title="Organization Settings"
- sections={sections}
- header={
- <div className="border-default flex min-h-(--header-height) items-center border-b px-6">
- <h4 className="text-lg">Settings</h4>
- </div>
- }
- >
- {children}
- </WithSidebar>
- )
- }
|