86e4685781
## Context Record and field counts in several settings views were rendered as raw numbers (e.g. `158355`), ignoring the workspace member's number format preference. This PR routes them through the existing `useNumberFormat` hook (which wraps `formatNumber` with the user's `numberFormat` preference), so they render as `158,355` / `158 355` / `158.355` / `158'355` depending on the preference. ## Changes Starting point (from the screenshot): the Settings → Data model objects table. - **`SettingsObjectItemTableRow`** — Fields and Records columns in Settings → Data model - **`SettingsAvailableStandardObjectItemTableRow`** — Fields column in Settings → Data model → New object - **`SettingsDataModelOverviewObject`** — record count next to the object name in the data model graph overview (guards against `undefined` while the count query loads) - **`SettingsLogs`** — "X of Y" record counts above the event logs table - **`SettingsAdminGeneral`** — Users column in the admin panel top workspaces table - **`SettingsAdminWorkspaceContent`** — Members value in the admin panel workspace info card - **`NoteList`** — total notes count in the record page Notes tab ## Test coverage - `npx nx lint:diff-with-main twenty-front` (oxlint + oxfmt) passes - `npx nx typecheck twenty-front` passes - No behavioral change beyond formatting; `formatNumber` defaults to 0 decimals so integer counts stay integers https://claude.ai/code/session_019pXXZSaza8TXPYK8NefQiS --- _Generated by [Claude Code](https://claude.ai/code/session_019pXXZSaza8TXPYK8NefQiS)_ <!-- This is an auto-generated description by cubic. --> <a href="https://cubic.dev/pr/twentyhq/twenty/pull/22501?utm_source=github" target="_blank" rel="noopener noreferrer" data-no-image-dialog="true"><picture><source media="(prefers-color-scheme: dark)" srcset="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://www.cubic.dev/buttons/review-in-cubic-light.svg"><img alt="Review in cubic" src="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"></picture></a> <!-- End of auto-generated description by cubic. -->
66 lines
2.0 KiB
TypeScript
66 lines
2.0 KiB
TypeScript
import { useNumberFormat } from '@/localization/hooks/useNumberFormat';
|
|
import { ObjectMetadataIcon } from '@/object-metadata/components/ObjectMetadataIcon';
|
|
import { type EnrichedObjectMetadataItem } from '@/object-metadata/types/EnrichedObjectMetadataItem';
|
|
import { TableCell } from '@/ui/layout/table/components/TableCell';
|
|
import { TableRow } from '@/ui/layout/table/components/TableRow';
|
|
import { styled } from '@linaria/react';
|
|
import { useContext } from 'react';
|
|
import { Checkbox } from 'twenty-ui/input';
|
|
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
|
|
|
|
export const AVAILABLE_STANDARD_OBJECTS_GRID_TEMPLATE_COLUMNS =
|
|
'28px 148px 256px 80px';
|
|
|
|
type SettingsAvailableStandardObjectItemTableRowProps = {
|
|
isSelected?: boolean;
|
|
objectItem: EnrichedObjectMetadataItem;
|
|
onClick?: () => void;
|
|
};
|
|
|
|
const StyledDescription = styled.div`
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
`;
|
|
|
|
export const SettingsAvailableStandardObjectItemTableRow = ({
|
|
isSelected,
|
|
objectItem,
|
|
onClick,
|
|
}: SettingsAvailableStandardObjectItemTableRowProps) => {
|
|
const { theme } = useContext(ThemeContext);
|
|
const { formatNumber } = useNumberFormat();
|
|
|
|
return (
|
|
<TableRow
|
|
gridTemplateColumns={AVAILABLE_STANDARD_OBJECTS_GRID_TEMPLATE_COLUMNS}
|
|
key={objectItem.namePlural}
|
|
isSelected={isSelected}
|
|
onClick={onClick}
|
|
>
|
|
<TableCell
|
|
align="center"
|
|
padding={`0 0 0 ${themeCssVariables.spacing[1]}`}
|
|
>
|
|
<Checkbox checked={!!isSelected} />
|
|
</TableCell>
|
|
<TableCell
|
|
color={themeCssVariables.font.color.primary}
|
|
gap={themeCssVariables.spacing[2]}
|
|
>
|
|
<ObjectMetadataIcon
|
|
objectMetadataItem={objectItem}
|
|
size={theme.icon.size.md}
|
|
/>
|
|
{objectItem.labelPlural}
|
|
</TableCell>
|
|
<TableCell>
|
|
<StyledDescription>{objectItem.description}</StyledDescription>
|
|
</TableCell>
|
|
<TableCell align="right">
|
|
{formatNumber(objectItem.fields.length)}
|
|
</TableCell>
|
|
</TableRow>
|
|
);
|
|
};
|