Files
supabase/apps/studio/components/interfaces/App/CommandMenu/OrgProjectSwitcher.tsx
Charis d6f96780e9 feat: add configure org command (#29092)
* feat: add switch org command

* fix: change switch org to configure org

The org doesn't really get globally switched, you just land on the
settings page, so this seems more accurate.

* fix: allow cjk ime input on commandinput component
2024-09-09 11:25:22 -04:00

99 lines
2.8 KiB
TypeScript

import { Forward, Wrench, Building } from 'lucide-react'
import { useMemo } from 'react'
import { useProjectsQuery } from 'data/projects/projects-query'
import { useOrganizationsQuery } from 'data/organizations/organizations-query'
import { PageType, useRegisterCommands, useRegisterPage, useSetPage } from 'ui-patterns/CommandMenu'
import { IS_PLATFORM } from 'common'
import { COMMAND_MENU_SECTIONS } from './CommandMenu.utils'
const PROJECT_SWITCHER_PAGE_NAME = 'Switch project'
const ORGANIZATION_SWITCHER_PAGE_NAME = 'Configure organization'
export function useProjectSwitchCommand() {
const setPage = useSetPage()
const { data: _projects } = useProjectsQuery({ enabled: IS_PLATFORM })
const projects = useMemo(
() => (_projects ?? []).map(({ name, ref }) => ({ name, ref })),
[_projects]
)
useRegisterPage(
PROJECT_SWITCHER_PAGE_NAME,
{
type: PageType.Commands,
sections: [
{
id: 'switch-project',
name: 'Switch project',
commands: projects.map(({ name, ref }) => ({
id: `project-${ref}`,
name,
value: `${name} (${ref})`,
route: `/project/${ref}`,
icon: () => <Forward />,
})),
},
],
},
{ deps: [projects], enabled: !!projects && projects.length > 0 }
)
useRegisterCommands(
COMMAND_MENU_SECTIONS.ACTIONS,
[
{
id: 'switch-project',
name: 'Switch project',
value: 'Switch project, Change project, Select project',
action: () => setPage(PROJECT_SWITCHER_PAGE_NAME),
icon: () => <Wrench />,
},
],
{ enabled: !!projects && projects.length > 0 }
)
}
export function useConfigureOrganizationCommand() {
const setPage = useSetPage()
const { data: organizations } = useOrganizationsQuery({ enabled: IS_PLATFORM })
useRegisterPage(
ORGANIZATION_SWITCHER_PAGE_NAME,
{
type: PageType.Commands,
sections: [
{
id: 'configure-organization',
name: 'Configure organization',
commands:
organizations?.map(({ name, slug }) => ({
id: `organization-${slug}`,
name,
value: `${name} (${slug})`,
route: `/org/${slug}/general`,
icon: () => <Building />,
})) ?? [],
},
],
},
{ deps: [organizations], enabled: !!organizations && organizations.length > 0 }
)
useRegisterCommands(
COMMAND_MENU_SECTIONS.ACTIONS,
[
{
id: 'configure-organization',
name: 'Configure organization',
value: 'Configure organization, Change organization, Select organization',
action: () => setPage(ORGANIZATION_SWITCHER_PAGE_NAME),
icon: () => <Building />,
},
],
{ enabled: !!organizations && organizations.length > 0 }
)
}