647c32ff3e
## Summary
- **Eliminate `ICON_SIZES` / `ICON_STROKES` constants**: all icon
dimensions are now resolved at runtime via
`resolveThemeVariableAsNumber(themeCssVariables.icon.size.X)`, ensuring
values always come from computed CSS variables
- **No more consumer imports from `twenty-ui/theme`**: moved
`ColorSchemeContext`, `ColorSchemeProvider`, `ThemeColor`,
`MAIN_COLOR_NAMES`, `getNextThemeColor`, `AnimationDuration` to
`twenty-ui/theme-constants`
- **Remove `ThemeContext` / `ThemeContextProvider` / `ThemeProvider` /
`ThemeType`**: replaced across ~300 files with `themeCssVariables` (for
CSS contexts) or `resolveThemeVariable` / `resolveThemeVariableAsNumber`
(for JS runtime values)
- **Simplify provider chain**: only `ColorSchemeProvider` remains — it
toggles `light`/`dark` class on `document.documentElement` and provides
`colorScheme` via React context
- **Fix pre-existing test failures**: `useIcons.test.ts`
(non-configurable ES module spy) and
`turnRecordFilterGroupIntoGqlOperationFilter.test.ts`
(`Omit<RecordFilter, 'id'>` type mismatch)
### Theme access pattern (before → after)
| Context | Before | After |
|---------|--------|-------|
| CSS (Linaria) | `${({ theme }) => theme.font.color.primary}` |
`${themeCssVariables.font.color.primary}` |
| JS runtime (icon size, animation) | `theme.icon.size.md` /
`ICON_SIZES.md` |
`resolveThemeVariableAsNumber(themeCssVariables.icon.size.md)` |
| Color scheme check | `theme.name === 'dark'` |
`useContext(ColorSchemeContext).colorScheme === 'dark'` |
150 lines
5.1 KiB
TypeScript
150 lines
5.1 KiB
TypeScript
import { styled } from '@linaria/react';
|
|
import { isDefined } from 'twenty-shared/utils';
|
|
import {
|
|
IconColumnInsertRight,
|
|
OverflowingTextWithTooltip,
|
|
} from 'twenty-ui/display';
|
|
|
|
import { CommandMenuAskAIInfo } from '@/command-menu/components/CommandMenuAskAIInfo';
|
|
import { CommandMenuFolderInfo } from '@/command-menu/components/CommandMenuFolderInfo';
|
|
import { CommandMenuLinkInfo } from '@/command-menu/components/CommandMenuLinkInfo';
|
|
import { CommandMenuMultipleRecordsInfo } from '@/command-menu/components/CommandMenuMultipleRecordsInfo';
|
|
import { CommandMenuObjectViewRecordInfo } from '@/command-menu/components/CommandMenuObjectViewRecordInfo';
|
|
import { CommandMenuPageInfoLayout } from '@/command-menu/components/CommandMenuPageInfoLayout';
|
|
import { CommandMenuPageLayoutInfo } from '@/command-menu/components/CommandMenuPageLayoutInfo';
|
|
import { CommandMenuRecordInfo } from '@/command-menu/components/CommandMenuRecordInfo';
|
|
import { CommandMenuWorkflowStepInfo } from '@/command-menu/components/CommandMenuWorkflowStepInfo';
|
|
import { NavigationMenuItemType } from '@/navigation-menu-item/constants/NavigationMenuItemType';
|
|
import { useWorkspaceSectionItems } from '@/navigation-menu-item/hooks/useWorkspaceSectionItems';
|
|
import { selectedNavigationMenuItemInEditModeState } from '@/navigation-menu-item/states/selectedNavigationMenuItemInEditModeState';
|
|
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
|
import { CommandMenuPages } from 'twenty-shared/types';
|
|
|
|
import { useContext } from 'react';
|
|
import { type CommandMenuContextChipProps } from './CommandMenuContextChip';
|
|
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
|
|
const StyledPageTitle = styled.div`
|
|
color: ${themeCssVariables.font.color.primary};
|
|
font-size: ${themeCssVariables.font.size.sm};
|
|
font-weight: ${themeCssVariables.font.weight.semiBold};
|
|
`;
|
|
|
|
type CommandMenuPageInfoProps = {
|
|
pageChip: CommandMenuContextChipProps | undefined;
|
|
};
|
|
|
|
export const CommandMenuPageInfo = ({ pageChip }: CommandMenuPageInfoProps) => {
|
|
const { theme } = useContext(ThemeContext);
|
|
const selectedNavigationMenuItemInEditMode = useAtomStateValue(
|
|
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 === NavigationMenuItemType.FOLDER) {
|
|
return <CommandMenuFolderInfo />;
|
|
}
|
|
|
|
if (itemType === NavigationMenuItemType.LINK) {
|
|
return <CommandMenuLinkInfo />;
|
|
}
|
|
|
|
if (
|
|
itemType === NavigationMenuItemType.VIEW ||
|
|
itemType === NavigationMenuItemType.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}
|
|
/>
|
|
);
|
|
}
|
|
|
|
const isAskAIPage = pageChip.page?.page === CommandMenuPages.AskAI;
|
|
|
|
if (isAskAIPage) {
|
|
return <CommandMenuAskAIInfo />;
|
|
}
|
|
|
|
if (pageChip.page?.page === CommandMenuPages.NavigationMenuAddItem) {
|
|
return (
|
|
<CommandMenuPageInfoLayout
|
|
icon={
|
|
<IconColumnInsertRight
|
|
size={theme.icon.size.md}
|
|
color={theme.font.color.tertiary}
|
|
/>
|
|
}
|
|
title={<OverflowingTextWithTooltip text={pageChip.text ?? ''} />}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<StyledPageTitle>
|
|
<OverflowingTextWithTooltip text={pageChip.text ?? ''} />
|
|
</StyledPageTitle>
|
|
);
|
|
};
|