* feat: add active and disabled object tables to settings Closes #1799, Closes #1800 * refactor: add align prop to TableCell
67 lines
2.1 KiB
TypeScript
67 lines
2.1 KiB
TypeScript
import { ReactNode, useState } from 'react';
|
|
import { useTheme } from '@emotion/react';
|
|
import styled from '@emotion/styled';
|
|
|
|
import { IconChevronDown, IconChevronUp } from '@/ui/icon';
|
|
|
|
type TableSectionProps = {
|
|
children: ReactNode;
|
|
title: string;
|
|
};
|
|
|
|
const StyledSectionHeader = styled.div<{ isExpanded: boolean }>`
|
|
align-items: center;
|
|
background-color: ${({ theme }) => theme.background.transparent.lighter};
|
|
border-bottom: 1px solid ${({ theme }) => theme.border.color.light};
|
|
color: ${({ theme }) => theme.font.color.light};
|
|
cursor: pointer;
|
|
display: flex;
|
|
font-size: ${({ theme }) => theme.font.size.xs};
|
|
font-weight: ${({ theme }) => theme.font.weight.semiBold};
|
|
height: ${({ theme }) => theme.spacing(6)};
|
|
justify-content: space-between;
|
|
padding: 0 ${({ theme }) => theme.spacing(2)};
|
|
text-align: left;
|
|
text-transform: uppercase;
|
|
`;
|
|
|
|
const StyledSection = styled.div<{ isExpanded: boolean }>`
|
|
max-height: ${({ isExpanded }) => (isExpanded ? '1000px' : 0)};
|
|
opacity: ${({ isExpanded }) => (isExpanded ? 1 : 0)};
|
|
overflow: hidden;
|
|
transition: max-height ${({ theme }) => theme.animation.duration.normal}s,
|
|
opacity ${({ theme }) => theme.animation.duration.normal}s;
|
|
`;
|
|
|
|
const StyledSectionContent = styled.div`
|
|
border-bottom: 1px solid ${({ theme }) => theme.border.color.light};
|
|
padding: ${({ theme }) => theme.spacing(2)} 0;
|
|
`;
|
|
|
|
export const TableSection = ({ children, title }: TableSectionProps) => {
|
|
const theme = useTheme();
|
|
const [isExpanded, setIsExpanded] = useState(true);
|
|
|
|
const handleToggleSection = () =>
|
|
setIsExpanded((previousIsExpanded) => !previousIsExpanded);
|
|
|
|
return (
|
|
<>
|
|
<StyledSectionHeader
|
|
isExpanded={isExpanded}
|
|
onClick={handleToggleSection}
|
|
>
|
|
{title}
|
|
{isExpanded ? (
|
|
<IconChevronUp size={theme.icon.size.sm} />
|
|
) : (
|
|
<IconChevronDown size={theme.icon.size.sm} />
|
|
)}
|
|
</StyledSectionHeader>
|
|
<StyledSection isExpanded={isExpanded}>
|
|
<StyledSectionContent>{children}</StyledSectionContent>
|
|
</StyledSection>
|
|
</>
|
|
);
|
|
};
|