fix(results): 🐛 Ignore cell content for column size
This commit is contained in:
66
apps/builder/components/results/ResultsTable/Cell.tsx
Normal file
66
apps/builder/components/results/ResultsTable/Cell.tsx
Normal file
@ -0,0 +1,66 @@
|
||||
import { chakra, Fade, Button } from '@chakra-ui/react'
|
||||
import { Cell as CellProps } from '@tanstack/react-table'
|
||||
import { ExpandIcon } from 'assets/icons'
|
||||
import { memo } from 'react'
|
||||
|
||||
type Props = {
|
||||
cell: CellProps<any>
|
||||
size: number
|
||||
isExpandButtonVisible: boolean
|
||||
cellIndex: number
|
||||
onExpandButtonClick: () => void
|
||||
}
|
||||
|
||||
const Cell = ({
|
||||
cell,
|
||||
size,
|
||||
isExpandButtonVisible,
|
||||
cellIndex,
|
||||
onExpandButtonClick,
|
||||
}: Props) => {
|
||||
return (
|
||||
<chakra.td
|
||||
key={cell.id}
|
||||
px="4"
|
||||
py="2"
|
||||
border="1px"
|
||||
borderColor="gray.200"
|
||||
whiteSpace="nowrap"
|
||||
wordBreak="normal"
|
||||
overflow="hidden"
|
||||
pos="relative"
|
||||
style={{
|
||||
minWidth: size,
|
||||
maxWidth: size,
|
||||
}}
|
||||
>
|
||||
{cell.renderCell()}
|
||||
<chakra.span
|
||||
pos="absolute"
|
||||
top="0"
|
||||
right={2}
|
||||
h="full"
|
||||
display="inline-flex"
|
||||
alignItems="center"
|
||||
>
|
||||
<Fade unmountOnExit in={isExpandButtonVisible && cellIndex === 1}>
|
||||
<Button
|
||||
leftIcon={<ExpandIcon />}
|
||||
shadow="lg"
|
||||
size="xs"
|
||||
onClick={onExpandButtonClick}
|
||||
>
|
||||
Open
|
||||
</Button>
|
||||
</Fade>
|
||||
</chakra.span>
|
||||
</chakra.td>
|
||||
)
|
||||
}
|
||||
|
||||
export default memo(
|
||||
Cell,
|
||||
(prev, next) =>
|
||||
prev.size === next.size &&
|
||||
prev.isExpandButtonVisible === next.isExpandButtonVisible
|
||||
)
|
Reference in New Issue
Block a user