Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> Co-authored-by: Devessier <[email protected]>
114 lines
3.9 KiB
TypeScript
114 lines
3.9 KiB
TypeScript
import styled from '@emotion/styled';
|
|
import { useRecoilValue } from 'recoil';
|
|
import { isDefined } from 'twenty-shared/utils';
|
|
import { OverflowingTextWithTooltip } from 'twenty-ui/display';
|
|
|
|
import { CommandMenuFolderLinkInfo } from '@/command-menu/components/CommandMenuFolderLinkInfo';
|
|
import { CommandMenuMultipleRecordsInfo } from '@/command-menu/components/CommandMenuMultipleRecordsInfo';
|
|
import { CommandMenuObjectViewRecordInfo } from '@/command-menu/components/CommandMenuObjectViewRecordInfo';
|
|
import { CommandMenuPageLayoutInfo } from '@/command-menu/components/CommandMenuPageLayoutInfo';
|
|
import { CommandMenuRecordInfo } from '@/command-menu/components/CommandMenuRecordInfo';
|
|
import { CommandMenuWorkflowStepInfo } from '@/command-menu/components/CommandMenuWorkflowStepInfo';
|
|
import { CommandMenuPages } from '@/command-menu/types/CommandMenuPages';
|
|
import { useWorkspaceSectionItems } from '@/navigation-menu-item/hooks/useWorkspaceSectionItems';
|
|
import { selectedNavigationMenuItemInEditModeState } from '@/navigation-menu-item/states/selectedNavigationMenuItemInEditModeState';
|
|
|
|
import { type CommandMenuContextChipProps } from './CommandMenuContextChip';
|
|
|
|
const StyledPageTitle = styled.div`
|
|
color: ${({ theme }) => theme.font.color.primary};
|
|
font-size: ${({ theme }) => theme.font.size.sm};
|
|
font-weight: ${({ theme }) => theme.font.weight.semiBold};
|
|
`;
|
|
|
|
type CommandMenuPageInfoProps = {
|
|
pageChip: CommandMenuContextChipProps | undefined;
|
|
};
|
|
|
|
export const CommandMenuPageInfo = ({ pageChip }: CommandMenuPageInfoProps) => {
|
|
const selectedNavigationMenuItemInEditMode = useRecoilValue(
|
|
selectedNavigationMenuItemInEditModeState,
|
|
);
|
|
const items = useWorkspaceSectionItems();
|
|
|
|
if (!isDefined(pageChip)) {
|
|
return null;
|
|
}
|
|
|
|
const isNavigationMenuItemEditPage =
|
|
pageChip.page?.page === CommandMenuPages.NavigationMenuItemEdit;
|
|
const selectedNavItem = isNavigationMenuItemEditPage
|
|
? items.find((item) => item.id === selectedNavigationMenuItemInEditMode)
|
|
: undefined;
|
|
|
|
if (isNavigationMenuItemEditPage && isDefined(selectedNavItem)) {
|
|
const itemType = selectedNavItem.itemType;
|
|
|
|
if (itemType === 'folder' || itemType === 'link') {
|
|
return <CommandMenuFolderLinkInfo type={itemType} />;
|
|
}
|
|
|
|
if (itemType === 'view' || itemType === 'record') {
|
|
return <CommandMenuObjectViewRecordInfo />;
|
|
}
|
|
}
|
|
|
|
const isRecordPage = pageChip.page?.page === CommandMenuPages.ViewRecord;
|
|
|
|
if (isRecordPage && isDefined(pageChip.page?.pageId)) {
|
|
return (
|
|
<CommandMenuRecordInfo commandMenuPageInstanceId={pageChip.page.pageId} />
|
|
);
|
|
}
|
|
|
|
const isWorkflowStepPage = pageChip.page?.page
|
|
? [
|
|
CommandMenuPages.WorkflowStepEdit,
|
|
CommandMenuPages.WorkflowStepView,
|
|
CommandMenuPages.WorkflowRunStepView,
|
|
].includes(pageChip.page?.page)
|
|
: false;
|
|
|
|
if (isWorkflowStepPage && isDefined(pageChip.page?.pageId)) {
|
|
return (
|
|
<CommandMenuWorkflowStepInfo
|
|
key={pageChip.page.pageId}
|
|
commandMenuPageInstanceId={pageChip.page.pageId}
|
|
/>
|
|
);
|
|
}
|
|
|
|
const isPageLayoutPage = pageChip.page?.page
|
|
? [
|
|
CommandMenuPages.PageLayoutWidgetTypeSelect,
|
|
CommandMenuPages.PageLayoutGraphTypeSelect,
|
|
CommandMenuPages.PageLayoutGraphFilter,
|
|
CommandMenuPages.PageLayoutIframeSettings,
|
|
CommandMenuPages.PageLayoutTabSettings,
|
|
CommandMenuPages.PageLayoutFieldsSettings,
|
|
CommandMenuPages.PageLayoutFieldsLayout,
|
|
].includes(pageChip.page?.page)
|
|
: false;
|
|
|
|
if (isPageLayoutPage) {
|
|
return <CommandMenuPageLayoutInfo />;
|
|
}
|
|
|
|
const isMultipleRecordsPage =
|
|
pageChip.page?.page === CommandMenuPages.UpdateRecords;
|
|
|
|
if (isMultipleRecordsPage && isDefined(pageChip.page?.pageId)) {
|
|
return (
|
|
<CommandMenuMultipleRecordsInfo
|
|
commandMenuPageInstanceId={pageChip.page.pageId}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<StyledPageTitle>
|
|
<OverflowingTextWithTooltip text={pageChip.text ?? ''} />
|
|
</StyledPageTitle>
|
|
);
|
|
};
|