Shadcn conversion, select header

This commit is contained in:
2025-02-18 16:47:55 -05:00
parent 08be0658cb
commit 528fe7c024
3 changed files with 114 additions and 56 deletions

View File

@@ -1,10 +1,8 @@
import { useCallback, useState } from "react" import { useCallback, useState } from "react"
import { Heading, ModalBody, useStyleConfig, Box } from "@chakra-ui/react"
import { SelectHeaderTable } from "./components/SelectHeaderTable" import { SelectHeaderTable } from "./components/SelectHeaderTable"
import { ContinueButton } from "../../components/ContinueButton"
import { useRsi } from "../../hooks/useRsi" import { useRsi } from "../../hooks/useRsi"
import type { themeOverrides } from "../../theme"
import type { RawData } from "../../types" import type { RawData } from "../../types"
import { Button } from "@/components/ui/button"
type SelectHeaderProps = { type SelectHeaderProps = {
data: RawData[] data: RawData[]
@@ -13,9 +11,6 @@ type SelectHeaderProps = {
} }
export const SelectHeaderStep = ({ data, onContinue, onBack }: SelectHeaderProps) => { export const SelectHeaderStep = ({ data, onContinue, onBack }: SelectHeaderProps) => {
const styles = useStyleConfig(
"SelectHeaderStep",
) as (typeof themeOverrides)["components"]["SelectHeaderStep"]["baseStyle"]
const { translations } = useRsi() const { translations } = useRsi()
const [selectedRows, setSelectedRows] = useState<ReadonlySet<number>>(new Set([0])) const [selectedRows, setSelectedRows] = useState<ReadonlySet<number>>(new Set([0]))
const [isLoading, setIsLoading] = useState(false) const [isLoading, setIsLoading] = useState(false)
@@ -30,18 +25,37 @@ export const SelectHeaderStep = ({ data, onContinue, onBack }: SelectHeaderProps
}, [onContinue, data, selectedRows]) }, [onContinue, data, selectedRows])
return ( return (
<> <div className="flex h-full flex-col">
<ModalBody pb={0}> <div className="flex-1 overflow-hidden">
<Heading {...styles.heading}>{translations.selectHeaderStep.title}</Heading> <div className="px-8 py-6">
<SelectHeaderTable data={data} selectedRows={selectedRows} setSelectedRows={setSelectedRows} /> <div className="mb-8">
</ModalBody> <h2 className="text-3xl font-semibold text-foreground">
<ContinueButton {translations.selectHeaderStep.title}
onContinue={handleContinue} </h2>
onBack={onBack} </div>
title={translations.selectHeaderStep.nextButtonTitle} <SelectHeaderTable
backTitle={translations.selectHeaderStep.backButtonTitle} data={data}
isLoading={isLoading} selectedRows={selectedRows}
setSelectedRows={setSelectedRows}
/> />
</> </div>
</div>
<div className="border-t bg-muted px-8 py-4 mt-5">
<div className="flex items-center justify-between">
{onBack && (
<Button variant="outline" onClick={onBack}>
{translations.selectHeaderStep.backButtonTitle}
</Button>
)}
<Button
className="ml-auto"
disabled={isLoading}
onClick={handleContinue}
>
{translations.selectHeaderStep.nextButtonTitle}
</Button>
</div>
</div>
</div>
) )
} }

View File

@@ -1,7 +1,15 @@
import { useMemo } from "react" import { useMemo } from "react"
import { Table as DataTable, type Column } from "../../../components/Table"
import { generateSelectionColumns } from "./columns"
import type { RawData } from "../../../types" import type { RawData } from "../../../types"
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table"
import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group"
import { Label } from "@/components/ui/label"
import { cn } from "@/lib/utils" import { cn } from "@/lib/utils"
interface Props { interface Props {
@@ -10,51 +18,88 @@ interface Props {
setSelectedRows: (rows: ReadonlySet<number>) => void setSelectedRows: (rows: ReadonlySet<number>) => void
} }
type TableRow = string[];
export const SelectHeaderTable = ({ data, selectedRows, setSelectedRows }: Props) => { export const SelectHeaderTable = ({ data, selectedRows, setSelectedRows }: Props) => {
const columns = useMemo(() => generateSelectionColumns(data), [data]) const columns = useMemo(() => {
const longestRowLength = data.reduce((acc, curr) => (acc > curr.length ? acc : curr.length), 0)
return Array.from(Array(longestRowLength), (_, index) => ({
key: index.toString(),
name: `Column ${index + 1}`,
}))
}, [data])
if (!data || data.length === 0) { if (!data || data.length === 0) {
return ( return (
<div className="p-4"> <div className="p-4">
<p className="text-sm text-muted-foreground">No data available to select headers from.</p> <p className="text-sm text-muted-foreground">No data available to select headers from.</p>
</div> </div>
); )
} }
const selectedRowIndex = Array.from(selectedRows)[0]
const gridTemplateColumns = `60px repeat(${columns.length}, minmax(150px, 300px))`
return ( return (
<div className={cn( <div className="rounded-md border p-3">
"relative h-[400px] rounded-md border",
)}>
<p className="mb-2 p-2 text-sm text-muted-foreground"> <p className="mb-2 p-2 text-sm text-muted-foreground">
Select the row that contains your column headers Select the row that contains your column headers
</p> </p>
<div className="absolute inset-x-0 top-10 bottom-0"> <div className="h-[calc(100vh-27rem)] overflow-auto">
<DataTable<TableRow> <Table className="relative w-full" style={{ tableLayout: 'fixed' }}>
rows={data as TableRow[]} <TableHeader>
columns={columns as Column<TableRow>[]} <TableRow className="grid" style={{ gridTemplateColumns }}>
selectedRows={selectedRows} <TableHead className="sticky top-0 z-20 bg-background overflow-hidden">
rowKeyGetter={(row: TableRow) => data.indexOf(row)} <div className="truncate">Select</div>
onSelectedRowsChange={(newRows: Set<number>) => { </TableHead>
console.log('Row selection changed:', newRows); {columns.map((column) => (
// allow selecting only one row <TableHead
newRows.forEach((value: number) => { key={column.key}
if (!selectedRows.has(value)) { className="sticky top-0 z-20 bg-background overflow-hidden"
setSelectedRows(new Set([value])) >
return <div className="truncate">
} {column.name}
}) </div>
}} </TableHead>
onRowClick={(row: TableRow) => { ))}
console.log('Row clicked:', row); </TableRow>
setSelectedRows(new Set([data.indexOf(row)])) </TableHeader>
}} <TableBody>
className="rdg-static" <RadioGroup
rowHeight={45} value={selectedRowIndex?.toString()}
headerRowHeight={45} onValueChange={(value) => setSelectedRows(new Set([parseInt(value)]))}
style={{ height: '100%' }} >
/> {data.map((row, rowIndex) => (
<TableRow
key={rowIndex}
className={cn(
"grid",
selectedRowIndex === rowIndex && "bg-muted",
"group hover:bg-muted/50"
)}
style={{ gridTemplateColumns }}
>
<TableCell className="overflow-hidden">
<div className="flex items-center">
<RadioGroupItem value={rowIndex.toString()} id={`row-${rowIndex}`} />
<Label htmlFor={`row-${rowIndex}`} className="sr-only">
Select as header row
</Label>
</div>
</TableCell>
{columns.map((column, colIndex) => (
<TableCell
key={`${rowIndex}-${column.key}`}
className="overflow-hidden"
>
<div className="truncate">
{row[colIndex] || ""}
</div>
</TableCell>
))}
</TableRow>
))}
</RadioGroup>
</TableBody>
</Table>
</div> </div>
</div> </div>
) )

View File

@@ -17,7 +17,6 @@ import {
getCoreRowModel, getCoreRowModel,
type ColumnDef, type ColumnDef,
flexRender, flexRender,
type Row,
type RowSelectionState, type RowSelectionState,
} from "@tanstack/react-table" } from "@tanstack/react-table"
import { Checkbox } from "@/components/ui/checkbox" import { Checkbox } from "@/components/ui/checkbox"
@@ -255,7 +254,7 @@ export const ValidationStep = <T extends string>({ initialData, file, onBack }:
} }
return ( return (
<div className="flex h-full flex-col"> <div className="flex h-[calc(100vh-9.5rem)] flex-col">
<AlertDialog open={showSubmitAlert} onOpenChange={setShowSubmitAlert}> <AlertDialog open={showSubmitAlert} onOpenChange={setShowSubmitAlert}>
<AlertDialogPortal> <AlertDialogPortal>
<AlertDialogOverlay className="z-[1400]" /> <AlertDialogOverlay className="z-[1400]" />
@@ -355,7 +354,7 @@ export const ValidationStep = <T extends string>({ initialData, file, onBack }:
</div> </div>
</div> </div>
</div> </div>
<div className="mt-auto border-t bg-muted px-8 py-4"> <div className="border-t bg-muted px-8 py-4 mt-5">
<div className="flex items-center justify-between"> <div className="flex items-center justify-between">
{onBack && ( {onBack && (
<Button variant="outline" onClick={onBack}> <Button variant="outline" onClick={onBack}>