Files
twenty/packages/twenty-front/src/modules/spreadsheet-import/components/SpreadsheetImportTable.tsx
T
Parship Chowdhury 4f87ea5a9a fix: firefox blank import validation screen and center toggles (#21266)
## Summary
Resolves #20182 and also centered toggles (e.g. under ICP) vertically in
validation cells.

## Screencasts
In Firefox:

Before:


https://github.com/user-attachments/assets/cd837733-6f4c-4bd4-9b08-723f22a5c9ba

After:


https://github.com/user-attachments/assets/d180a2f3-ee40-46f9-8db2-ecd341878fc6

## Screenshots
Before:
<img width="156" height="160" alt="Screenshot 2026-06-05 215835"
src="https://github.com/user-attachments/assets/a228fea8-7f3d-43f1-88bd-d6e198f8cac0"
/>

After:
<img width="191" height="148" alt="Screenshot 2026-06-05 215815"
src="https://github.com/user-attachments/assets/a419bf29-9925-44f2-a6c7-c11af6401806"
/>

---------

Signed-off-by: Parship Chowdhury <parshipchowdhury@gmail.com>
Co-authored-by: Charles Bochet <charles@twenty.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-08 10:59:48 +00:00

165 lines
4.4 KiB
TypeScript

import { styled } from '@linaria/react';
import { useContext } from 'react';
// @ts-expect-error // Todo: remove usage of react-data-grid
import DataGrid, { type DataGridProps } from 'react-data-grid';
import { useSpreadsheetImportInternal } from '@/spreadsheet-import/hooks/useSpreadsheetImportInternal';
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
const StyledDataGridContainer = styled.div<{ headerRowHeight?: number }>`
--rdg-background-color: ${themeCssVariables.background.primary};
--rdg-border-color: ${themeCssVariables.border.color.medium};
--rdg-color: ${themeCssVariables.font.color.primary};
--rdg-error-cell-background-color: ${themeCssVariables.color.transparent
.red5};
--rdg-font-size: ${themeCssVariables.font.size.sm};
--rdg-frozen-cell-box-shadow: none;
--rdg-header-background-color: ${themeCssVariables.background.primary};
--rdg-info-cell-background-color: ${themeCssVariables.color.blue};
--rdg-row-hover-background-color: ${themeCssVariables.background.secondary};
--rdg-row-selected-background-color: ${themeCssVariables.background.primary};
--rdg-row-selected-hover-background-color: ${themeCssVariables.background
.secondary};
--rdg-selection-color: ${themeCssVariables.color.blue};
--rdg-summary-border-color: ${themeCssVariables.border.color.medium};
--rdg-warning-cell-background-color: ${themeCssVariables.color.orange};
--row-selected-hover-background-color: ${themeCssVariables.background
.secondary};
flex: 1;
min-height: 0;
> * {
border: none;
block-size: 100%;
width: 100%;
}
.rdg-header-row .rdg-cell {
box-shadow: none;
color: ${themeCssVariables.font.color.tertiary};
background-color: ${themeCssVariables.background.secondary};
font-size: ${themeCssVariables.font.size.sm};
font-weight: ${themeCssVariables.font.weight.semiBold};
letter-spacing: wider;
border-bottom: ${({ headerRowHeight }) =>
headerRowHeight === 0
? 'none'
: `1px solid ${themeCssVariables.border.color.medium}`};
}
.rdg-cell {
border-bottom: 1px solid ${themeCssVariables.border.color.medium};
border-inline-end: none;
border-right: none;
box-shadow: none;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.rdg-row:last-child > .rdg-cell {
border-bottom: none;
}
.rdg-cell[aria-selected='true'] {
outline: none;
}
.rdg-cell-error {
background-color: ${themeCssVariables.color.yellow3};
}
.rdg-cell-warning {
background-color: ${themeCssVariables.color.transparent.orange2};
}
.rdg-cell-info {
background-color: ${themeCssVariables.color.transparent.blue2};
}
.rdg-static {
cursor: pointer;
}
.rdg-static .rdg-header-row {
display: none;
}
.rdg-static .rdg-cell {
--rdg-selection-color: none;
}
.rdg-example .rdg-cell {
--rdg-selection-color: none;
border-bottom: none;
}
.rdg-radio {
align-items: center;
display: flex;
}
.rdg-checkbox {
align-items: center;
display: flex;
line-height: none;
}
`;
type SpreadsheetImportTableProps<Data> = Pick<
DataGridProps<Data>,
| 'selectedRows'
| 'onSelectedRowsChange'
| 'columns'
| 'headerRowHeight'
| 'rowKeyGetter'
| 'rows'
> &
Partial<
Pick<DataGridProps<Data>, 'onRowClick' | 'components' | 'onRowsChange'>
> & {
className?: string;
rowHeight?: number;
hiddenHeader?: boolean;
};
export const SpreadsheetImportTable = <Data,>({
className,
columns,
components,
headerRowHeight,
rowKeyGetter,
rows,
onRowsChange,
onRowClick,
onSelectedRowsChange,
selectedRows,
}: SpreadsheetImportTableProps<Data>) => {
const { colorScheme } = useContext(ThemeContext);
const { rtl } = useSpreadsheetImportInternal();
const themeClassName = colorScheme === 'dark' ? 'rdg-dark' : 'rdg-light';
if (!rows?.length || !columns?.length) return null;
return (
<StyledDataGridContainer headerRowHeight={headerRowHeight}>
<DataGrid
direction={rtl ? 'rtl' : 'ltr'}
rowHeight={40}
{...{
className: `${className || ''} ${themeClassName}`,
columns,
headerRowHeight,
rowKeyGetter,
onRowsChange,
rows,
components,
onRowClick,
onSelectedRowsChange,
selectedRows,
}}
/>
</StyledDataGridContainer>
);
};