# ISSUE - Closes #6756 After Changes: https://github.com/user-attachments/assets/1885be11-b50a-4b05-afae-d2f02a403ad6 https://github.com/user-attachments/assets/edc6a913-95a6-4c75-8ec2-83e2c27fddb0
146 lines
3.7 KiB
TypeScript
146 lines
3.7 KiB
TypeScript
import { Theme, withTheme } from '@emotion/react';
|
|
import { styled } from '@linaria/react';
|
|
import { MouseEvent, ReactNode } from 'react';
|
|
|
|
import { OverflowingTextWithTooltip } from '@ui/display/tooltip/OverflowingTextWithTooltip';
|
|
|
|
export enum ChipSize {
|
|
Large = 'large',
|
|
Small = 'small',
|
|
}
|
|
|
|
export enum ChipAccent {
|
|
TextPrimary = 'text-primary',
|
|
TextSecondary = 'text-secondary',
|
|
}
|
|
|
|
export enum ChipVariant {
|
|
Highlighted = 'highlighted',
|
|
Regular = 'regular',
|
|
Transparent = 'transparent',
|
|
Rounded = 'rounded',
|
|
}
|
|
|
|
type ChipProps = {
|
|
size?: ChipSize;
|
|
disabled?: boolean;
|
|
clickable?: boolean;
|
|
label: string;
|
|
maxWidth?: number;
|
|
variant?: ChipVariant;
|
|
accent?: ChipAccent;
|
|
leftComponent?: ReactNode;
|
|
rightComponent?: ReactNode;
|
|
className?: string;
|
|
onClick?: (event: MouseEvent<HTMLDivElement>) => void;
|
|
};
|
|
|
|
const StyledContainer = withTheme(styled.div<
|
|
Pick<
|
|
ChipProps,
|
|
'accent' | 'clickable' | 'disabled' | 'maxWidth' | 'size' | 'variant'
|
|
> & { theme: Theme }
|
|
>`
|
|
--chip-horizontal-padding: ${({ theme }) => theme.spacing(1)};
|
|
--chip-vertical-padding: ${({ theme }) => theme.spacing(1)};
|
|
|
|
text-decoration: none;
|
|
align-items: center;
|
|
|
|
color: ${({ theme, accent, disabled }) =>
|
|
disabled
|
|
? theme.font.color.light
|
|
: accent === ChipAccent.TextPrimary
|
|
? theme.font.color.primary
|
|
: theme.font.color.secondary};
|
|
|
|
cursor: ${({ clickable, disabled, variant }) =>
|
|
variant === ChipVariant.Transparent
|
|
? 'inherit'
|
|
: clickable
|
|
? 'pointer'
|
|
: disabled
|
|
? 'not-allowed'
|
|
: 'inherit'};
|
|
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
gap: ${({ theme }) => theme.spacing(1)};
|
|
height: ${({ theme }) => theme.spacing(3)};
|
|
max-width: ${({ maxWidth }) =>
|
|
maxWidth
|
|
? `calc(${maxWidth}px - 2 * var(--chip-horizontal-padding))`
|
|
: '200px'};
|
|
|
|
overflow: hidden;
|
|
padding: var(--chip-vertical-padding) var(--chip-horizontal-padding);
|
|
user-select: none;
|
|
|
|
font-weight: ${({ theme, accent }) =>
|
|
accent === ChipAccent.TextSecondary ? theme.font.weight.medium : 'inherit'};
|
|
|
|
&:hover {
|
|
background-color: ${({ theme, variant, disabled }) =>
|
|
variant === ChipVariant.Regular && !disabled
|
|
? theme.background.transparent.light
|
|
: variant === ChipVariant.Highlighted
|
|
? theme.background.transparent.medium
|
|
: 'inherit'};
|
|
}
|
|
|
|
&:active {
|
|
background-color: ${({ theme, disabled, variant }) =>
|
|
variant === ChipVariant.Regular && !disabled
|
|
? theme.background.transparent.medium
|
|
: variant === ChipVariant.Highlighted
|
|
? theme.background.transparent.strong
|
|
: 'inherit'};
|
|
}
|
|
|
|
background-color: ${({ theme, variant }) =>
|
|
variant === ChipVariant.Highlighted
|
|
? theme.background.transparent.light
|
|
: variant === ChipVariant.Rounded
|
|
? theme.background.transparent.lighter
|
|
: 'inherit'};
|
|
|
|
border: ${({ theme, variant }) =>
|
|
variant === ChipVariant.Rounded
|
|
? `1px solid ${theme.border.color.medium}`
|
|
: 'none'};
|
|
|
|
border-radius: ${({ theme, variant }) =>
|
|
variant === ChipVariant.Rounded ? '50px' : theme.border.radius.sm};
|
|
`);
|
|
|
|
export const Chip = ({
|
|
size = ChipSize.Small,
|
|
label,
|
|
disabled = false,
|
|
clickable = true,
|
|
variant = ChipVariant.Regular,
|
|
leftComponent,
|
|
rightComponent,
|
|
accent = ChipAccent.TextPrimary,
|
|
onClick,
|
|
}: ChipProps) => {
|
|
return (
|
|
<StyledContainer
|
|
data-testid="chip"
|
|
accent={accent}
|
|
clickable={clickable}
|
|
disabled={disabled}
|
|
size={size}
|
|
variant={variant}
|
|
onClick={onClick}
|
|
>
|
|
{leftComponent}
|
|
<OverflowingTextWithTooltip
|
|
size={size === ChipSize.Large ? 'large' : 'small'}
|
|
text={label}
|
|
/>
|
|
{rightComponent}
|
|
</StyledContainer>
|
|
);
|
|
};
|