61 lines
1.4 KiB
TypeScript
61 lines
1.4 KiB
TypeScript
import { useTheme } from '@emotion/react';
|
|
import styled from '@emotion/styled';
|
|
import { IconComment } from 'twenty-ui';
|
|
|
|
export type CommentChipProps = {
|
|
count: number;
|
|
onClick?: (event: React.MouseEvent<HTMLDivElement>) => void;
|
|
};
|
|
|
|
const StyledChip = styled.div`
|
|
align-items: center;
|
|
backdrop-filter: ${({ theme }) => theme.blur.medium};
|
|
|
|
background: ${({ theme }) => theme.background.transparent.primary};
|
|
border-radius: ${({ theme }) => theme.border.radius.md};
|
|
|
|
color: ${({ theme }) => theme.font.color.light};
|
|
cursor: pointer;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 4px;
|
|
|
|
height: 26px;
|
|
justify-content: center;
|
|
|
|
max-width: 42px;
|
|
|
|
padding-left: 4px;
|
|
|
|
padding-right: 4px;
|
|
|
|
&:hover {
|
|
background: ${({ theme }) => theme.background.tertiary};
|
|
color: ${({ theme }) => theme.font.color.tertiary};
|
|
}
|
|
|
|
user-select: none;
|
|
`;
|
|
|
|
const StyledCount = styled.div`
|
|
align-items: center;
|
|
display: flex;
|
|
font-size: ${({ theme }) => theme.font.size.sm};
|
|
font-weight: ${({ theme }) => theme.font.weight.medium};
|
|
justify-content: center;
|
|
`;
|
|
|
|
export const CommentChip = ({ count, onClick }: CommentChipProps) => {
|
|
const theme = useTheme();
|
|
|
|
if (count === 0) return null;
|
|
const formattedCount = count > 99 ? '99+' : count;
|
|
|
|
return (
|
|
<StyledChip data-testid="comment-chip" onClick={onClick}>
|
|
<StyledCount>{formattedCount}</StyledCount>
|
|
<IconComment size={theme.icon.size.md} />
|
|
</StyledChip>
|
|
);
|
|
};
|