530a18558b
Closes twentyhq/core-team-issues#53 - Removes command menu top bar text input when the user is not on root page - Fixes bug when resetting command menu context - Added animations on command menu open and close - Refactored workflow visualizer code to remove unnecessary rerenders and props drilling https://github.com/user-attachments/assets/1da3adb8-220b-407b-9279-30354d3100d3
30 lines
1.6 KiB
TypeScript
30 lines
1.6 KiB
TypeScript
import { RightDrawerCalendarEvent } from '@/activities/calendar/right-drawer/components/RightDrawerCalendarEvent';
|
|
import { RightDrawerEmailThread } from '@/activities/emails/right-drawer/components/RightDrawerEmailThread';
|
|
import { CommandMenu } from '@/command-menu/components/CommandMenu';
|
|
import { CommandMenuPages } from '@/command-menu/components/CommandMenuPages';
|
|
import { RightDrawerRecord } from '@/object-record/record-right-drawer/components/RightDrawerRecord';
|
|
import { RightDrawerWorkflowEditStep } from '@/workflow/workflow-steps/components/RightDrawerWorkflowEditStep';
|
|
import { RightDrawerWorkflowViewStep } from '@/workflow/workflow-steps/components/RightDrawerWorkflowViewStep';
|
|
import { RightDrawerWorkflowSelectAction } from '@/workflow/workflow-steps/workflow-actions/components/RightDrawerWorkflowSelectAction';
|
|
import { RightDrawerWorkflowSelectTriggerType } from '@/workflow/workflow-trigger/components/RightDrawerWorkflowSelectTriggerType';
|
|
|
|
export const COMMAND_MENU_PAGES_CONFIG = new Map<
|
|
CommandMenuPages,
|
|
React.ReactNode
|
|
>([
|
|
[CommandMenuPages.Root, <CommandMenu />],
|
|
[CommandMenuPages.ViewRecord, <RightDrawerRecord />],
|
|
[CommandMenuPages.ViewEmailThread, <RightDrawerEmailThread />],
|
|
[CommandMenuPages.ViewCalendarEvent, <RightDrawerCalendarEvent />],
|
|
[
|
|
CommandMenuPages.WorkflowStepSelectTriggerType,
|
|
<RightDrawerWorkflowSelectTriggerType />,
|
|
],
|
|
[
|
|
CommandMenuPages.WorkflowStepSelectAction,
|
|
<RightDrawerWorkflowSelectAction />,
|
|
],
|
|
[CommandMenuPages.WorkflowStepEdit, <RightDrawerWorkflowEditStep />],
|
|
[CommandMenuPages.WorkflowStepView, <RightDrawerWorkflowViewStep />],
|
|
]);
|