26e2fe349f
With the new side panel, we are able to delete a widget with the side panel still open. This caused the app to crash because we threw when the widget id wasn't defined. This PR fixes this by closing the side panel in the delete action and by returning null instead of throwing. ## Before https://github.com/user-attachments/assets/092bfe62-82dc-4d83-9967-1cc753ecf55e ## After https://github.com/user-attachments/assets/8bed6cc5-961b-4112-8cf5-e587865d14da
66 lines
4.1 KiB
TypeScript
66 lines
4.1 KiB
TypeScript
import { CommandMenu } from '@/command-menu/components/CommandMenu';
|
|
import { CommandMenuAIChatThreadsPage } from '@/command-menu/pages/AIChatThreads/components/CommandMenuAIChatThreadsPage';
|
|
import { CommandMenuAskAIPage } from '@/command-menu/pages/ask-ai/components/CommandMenuAskAIPage';
|
|
import { CommandMenuCalendarEventPage } from '@/command-menu/pages/calendar-event/components/CommandMenuCalendarEventPage';
|
|
import { CommandMenuMessageThreadPage } from '@/command-menu/pages/message-thread/components/CommandMenuMessageThreadPage';
|
|
import { CommandMenuPageLayoutChartSettings } from '@/command-menu/pages/page-layout/components/CommandMenuPageLayoutChartSettings';
|
|
import { CommandMenuPageLayoutGraphFilter } from '@/command-menu/pages/page-layout/components/CommandMenuPageLayoutGraphFilter';
|
|
import { CommandMenuPageLayoutIframeSettings } from '@/command-menu/pages/page-layout/components/CommandMenuPageLayoutIframeSettings';
|
|
import { CommandMenuPageLayoutTabSettings } from '@/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings';
|
|
import { CommandMenuPageLayoutWidgetTypeSelect } from '@/command-menu/pages/page-layout/components/CommandMenuPageLayoutWidgetTypeSelect';
|
|
import { CommandMenuMergeRecordPage } from '@/command-menu/pages/record-page/components/CommandMenuMergeRecordPage';
|
|
import { CommandMenuRecordPage } from '@/command-menu/pages/record-page/components/CommandMenuRecordPage';
|
|
import { CommandMenuEditRichTextPage } from '@/command-menu/pages/rich-text-page/components/CommandMenuEditRichTextPage';
|
|
import { CommandMenuSearchRecordsPage } from '@/command-menu/pages/search/components/CommandMenuSearchRecordsPage';
|
|
import { CommandMenuWorkflowCreateStep } from '@/command-menu/pages/workflow/step/create/components/CommandMenuWorkflowCreateStep';
|
|
import { CommandMenuWorkflowEditStep } from '@/command-menu/pages/workflow/step/edit/components/CommandMenuWorkflowEditStep';
|
|
import { CommandMenuWorkflowEditStepType } from '@/command-menu/pages/workflow/step/edit/components/CommandMenuWorkflowEditStepType';
|
|
import { CommandMenuWorkflowRunViewStep } from '@/command-menu/pages/workflow/step/view-run/components/CommandMenuWorkflowRunViewStep';
|
|
import { CommandMenuWorkflowViewStep } from '@/command-menu/pages/workflow/step/view/components/CommandMenuWorkflowViewStep';
|
|
import { CommandMenuWorkflowSelectTriggerType } from '@/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerType';
|
|
import { CommandMenuPages } from '@/command-menu/types/CommandMenuPages';
|
|
|
|
export const COMMAND_MENU_PAGES_CONFIG = new Map<
|
|
CommandMenuPages,
|
|
React.ReactNode
|
|
>([
|
|
[CommandMenuPages.Root, <CommandMenu />],
|
|
[CommandMenuPages.ViewRecord, <CommandMenuRecordPage />],
|
|
[CommandMenuPages.MergeRecords, <CommandMenuMergeRecordPage />],
|
|
[CommandMenuPages.ViewEmailThread, <CommandMenuMessageThreadPage />],
|
|
[CommandMenuPages.ViewCalendarEvent, <CommandMenuCalendarEventPage />],
|
|
[CommandMenuPages.EditRichText, <CommandMenuEditRichTextPage />],
|
|
[
|
|
CommandMenuPages.WorkflowTriggerSelectType,
|
|
<CommandMenuWorkflowSelectTriggerType />,
|
|
],
|
|
[CommandMenuPages.WorkflowStepCreate, <CommandMenuWorkflowCreateStep />],
|
|
[CommandMenuPages.WorkflowStepEditType, <CommandMenuWorkflowEditStepType />],
|
|
[CommandMenuPages.WorkflowStepEdit, <CommandMenuWorkflowEditStep />],
|
|
[CommandMenuPages.WorkflowStepView, <CommandMenuWorkflowViewStep />],
|
|
[CommandMenuPages.WorkflowRunStepView, <CommandMenuWorkflowRunViewStep />],
|
|
[CommandMenuPages.SearchRecords, <CommandMenuSearchRecordsPage />],
|
|
[CommandMenuPages.AskAI, <CommandMenuAskAIPage />],
|
|
[CommandMenuPages.ViewPreviousAIChats, <CommandMenuAIChatThreadsPage />],
|
|
[
|
|
CommandMenuPages.PageLayoutWidgetTypeSelect,
|
|
<CommandMenuPageLayoutWidgetTypeSelect />,
|
|
],
|
|
[
|
|
CommandMenuPages.PageLayoutGraphTypeSelect,
|
|
<CommandMenuPageLayoutChartSettings />,
|
|
],
|
|
[
|
|
CommandMenuPages.PageLayoutGraphFilter,
|
|
<CommandMenuPageLayoutGraphFilter />,
|
|
],
|
|
[
|
|
CommandMenuPages.PageLayoutIframeSettings,
|
|
<CommandMenuPageLayoutIframeSettings />,
|
|
],
|
|
[
|
|
CommandMenuPages.PageLayoutTabSettings,
|
|
<CommandMenuPageLayoutTabSettings />,
|
|
],
|
|
]);
|