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'` |
60 lines
1.9 KiB
TypeScript
60 lines
1.9 KiB
TypeScript
import { styled } from '@linaria/react';
|
|
import { useLingui } from '@lingui/react/macro';
|
|
import { useContext } from 'react';
|
|
import { AppTooltip, IconLock, TooltipDelay } from 'twenty-ui/display';
|
|
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
|
|
import { MessageChannelVisibility } from '~/generated/graphql';
|
|
|
|
const StyledContainer = styled.div<{ isCompact?: boolean }>`
|
|
align-items: center;
|
|
display: flex;
|
|
flex: ${({ isCompact }) => (isCompact ? '0 0 auto' : '1 0 0')};
|
|
gap: ${themeCssVariables.spacing[1]};
|
|
height: 20px;
|
|
margin-left: auto;
|
|
width: ${({ isCompact }) => (isCompact ? 'auto' : '100%')};
|
|
min-width: ${themeCssVariables.spacing[21]};
|
|
padding: ${themeCssVariables.spacing[0]} ${themeCssVariables.spacing[1]};
|
|
|
|
border-radius: 4px;
|
|
border: 1px solid ${themeCssVariables.border.color.light};
|
|
background: ${themeCssVariables.background.transparent.lighter};
|
|
|
|
color: ${themeCssVariables.font.color.tertiary};
|
|
font-weight: ${themeCssVariables.font.weight.regular};
|
|
font-size: ${themeCssVariables.font.size.sm};
|
|
flex: 1;
|
|
`;
|
|
|
|
type EmailThreadNotSharedProps = {
|
|
visibility: MessageChannelVisibility;
|
|
};
|
|
|
|
export const EmailThreadNotShared = ({
|
|
visibility,
|
|
}: EmailThreadNotSharedProps) => {
|
|
const { theme } = useContext(ThemeContext);
|
|
const { t } = useLingui();
|
|
const containerId = 'email-thread-not-shared';
|
|
const isCompact = visibility === MessageChannelVisibility.SUBJECT;
|
|
|
|
return (
|
|
<>
|
|
<StyledContainer id={containerId} isCompact={isCompact}>
|
|
<IconLock size={theme.icon.size.sm} />
|
|
{t`Not shared`}
|
|
</StyledContainer>
|
|
{visibility === MessageChannelVisibility.SUBJECT && (
|
|
<AppTooltip
|
|
anchorSelect={`#${containerId}`}
|
|
content={t`Only the subject is shared`}
|
|
delay={TooltipDelay.mediumDelay}
|
|
noArrow
|
|
place="bottom"
|
|
positionStrategy="fixed"
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
};
|