Files
twenty/packages/twenty-front/src/modules/settings/data-model/objects/components/SettingsDataModelObjectSummary.tsx
T
Abdul Rahman 34a903b4fa Object icon visual parity (#19374)
## Summary

Aligns **object metadata** icons with the **tinted tile** look
everywhere we show a workspace object, and **retires** the
navigation-only `NavigationMenuItemStyleIcon` wrapper in favor of
**shared** UI primitives under `@/ui/display` and `@/object-metadata`.

## What changed

### Global tinted icon building blocks (`@/ui/display`)

- **`TintedIconTile`** / **`StyledTintedIconTileContainer`** support
optional **`size`** and **`stroke`**, and grow the tile when **`size`**
is set so layouts match previous `theme.icon` usage.
- Shared helpers and constants for theme color parsing and tinted
backgrounds/borders/icon color (e.g.
**`getTintedIconTileStyleFromColor`**, **`parseThemeColor`**,
**`getColorFromTheme`**, related constants).

### Object metadata icon (`@/object-metadata`)

- **`ObjectMetadataIcon`** composes **`TintedIconTile`** with
**`getObjectColorWithFallback`**, forwards optional **`size`** /
**`stroke`** for **visual parity** with old `getIcon` + explicit sizing.
- **`getSelectOptionIconFromObjectMetadataItem`** returns an
**`IconComponent`** for selects/menus that expect a component, not a
React node.

### Navigation module cleanup

- **Removed** **`NavigationMenuItemStyleIcon`**; call sites use
**`ObjectMetadataIcon`**, **`TintedIconTile`**, and/or the shared
**`getTintedIconTileStyleFromColor`** pipeline so the same treatment is
**not** tied to the navigation package.
- **`NavigationMenuItemIcon`**, view/link overlays, DnD handle, and
sidebar editor flows updated to use the shared pattern where they render
object (or tinted) icons.

### Product surfaces updated (non-exhaustive)

- **Settings:** role object picker/rows, data model
tables/graph/overview, object preview summary, webhooks entity list,
morph relation multiselect.
- **Workflows:** create/update/delete/upsert/find records, triggers,
filters, variables dropdowns, AI agent object rows, object dropdowns.
- **Shell:** side panel object filter / data sources / folder chrome
where object icons appear.
- **Records:** index header icon, show breadcrumb styling.
- **Activity:** timeline event icon when linked object metadata applies.
- **`NavigationDrawerItem`:** tinted branch aligned with shared
**`TintedIconTile`** behavior.

---------

Co-authored-by: Etienne <45695613+etiennejouan@users.noreply.github.com>
2026-04-10 10:14:20 +00:00

167 lines
4.4 KiB
TypeScript

import { styled } from '@linaria/react';
import { t } from '@lingui/core/macro';
import { useContext } from 'react';
import { ObjectMetadataIcon } from '@/object-metadata/components/ObjectMetadataIcon';
import { type EnrichedObjectMetadataItem } from '@/object-metadata/types/EnrichedObjectMetadataItem';
import { SettingsItemTypeTag } from '@/settings/components/SettingsItemTypeTag';
import { IconBox, OverflowingTextWithTooltip } from 'twenty-ui/display';
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
export type SettingsDataModelObjectPreviewProps = {
className?: string;
objectMetadataItems: Pick<
EnrichedObjectMetadataItem,
| 'icon'
| 'labelSingular'
| 'labelPlural'
| 'isCustom'
| 'isRemote'
| 'nameSingular'
| 'color'
| 'isSystem'
>[];
pluralizeLabel?: boolean;
};
const StyledObjectPreview = styled.div`
align-items: center;
display: flex;
justify-content: space-between;
`;
const StyledObjectName = styled.div`
display: flex;
gap: ${themeCssVariables.spacing[2]};
max-width: 60%;
`;
const StyledOverflowingTextWithTooltip = styled.div`
color: ${themeCssVariables.font.color.tertiary};
`;
const StyledNumber = styled.div`
color: ${themeCssVariables.font.color.tertiary};
padding-right: ${themeCssVariables.spacing[2]};
`;
const StyledIconContainer = styled.div`
flex-shrink: 0;
`;
const StyledSeparator = styled.div`
align-self: stretch;
background: ${themeCssVariables.background.quaternary};
height: 1px;
margin-bottom: ${themeCssVariables.spacing[2]};
margin-top: ${themeCssVariables.spacing[2]};
`;
type SettingsDataModelObjectPreviewItemProps = {
objectMetadataItem: Pick<
EnrichedObjectMetadataItem,
| 'icon'
| 'labelSingular'
| 'labelPlural'
| 'isCustom'
| 'isRemote'
| 'nameSingular'
| 'color'
| 'isSystem'
>;
pluralizeLabel: boolean;
index: number;
};
const SettingsDataModelObjectPreviewItem = ({
objectMetadataItem,
pluralizeLabel = true,
index,
}: SettingsDataModelObjectPreviewItemProps) => {
const { theme } = useContext(ThemeContext);
return (
<>
{index > 0 && <StyledSeparator />}
<StyledObjectPreview key={`${objectMetadataItem.labelSingular}-${index}`}>
<StyledObjectName>
<StyledIconContainer>
<ObjectMetadataIcon
objectMetadataItem={objectMetadataItem}
size={theme.icon.size.sm}
stroke={theme.icon.stroke.md}
/>
</StyledIconContainer>
<OverflowingTextWithTooltip
text={
pluralizeLabel
? objectMetadataItem.labelPlural
: objectMetadataItem.labelSingular
}
/>
</StyledObjectName>
<SettingsItemTypeTag item={objectMetadataItem} />
</StyledObjectPreview>
</>
);
};
const SettingsDataModelObjectPreviewOtherObjects = ({
selected,
}: {
selected: number;
}) => {
const { theme } = useContext(ThemeContext);
return (
<>
<StyledSeparator />
<StyledObjectPreview key={`other-objects`}>
<StyledObjectName>
<StyledIconContainer>
<IconBox
size={theme.icon.size.sm}
stroke={theme.icon.stroke.md}
color={theme.font.color.tertiary}
/>
</StyledIconContainer>
<StyledOverflowingTextWithTooltip>
<OverflowingTextWithTooltip text={t`Other objects`} />
</StyledOverflowingTextWithTooltip>
</StyledObjectName>
<StyledNumber>
<OverflowingTextWithTooltip text={`${selected - 3}`} />
</StyledNumber>
</StyledObjectPreview>
</>
);
};
export const SettingsDataModelObjectPreview = ({
objectMetadataItems,
pluralizeLabel = true,
}: SettingsDataModelObjectPreviewProps) => {
let selected = 0;
return (
<>
{objectMetadataItems.map((objectMetadataItem, index) => {
selected++;
return selected <= 3 ? (
<SettingsDataModelObjectPreviewItem
key={`${objectMetadataItem.labelSingular}-${index}`}
objectMetadataItem={objectMetadataItem}
pluralizeLabel={pluralizeLabel}
index={index}
/>
) : (
<></>
);
})}
{selected > 3 && (
<SettingsDataModelObjectPreviewOtherObjects selected={selected} />
)}
</>
);
};