mirror of
https://github.com/cssgunc/compass.git
synced 2025-05-25 17:36:05 -04:00
101 lines
3.5 KiB
TypeScript
101 lines
3.5 KiB
TypeScript
import { Bars2Icon } from "@heroicons/react/24/solid";
|
|
import { SetStateAction, useState } from "react";
|
|
import useTagsHandler from "@/components/TagsInput/TagsHandler";
|
|
import { ColumnDef, createColumnHelper } from "@tanstack/react-table";
|
|
import { Table } from "@/components/Table/Table";
|
|
import { RowOpenAction } from "@/components/Table/RowOpenAction";
|
|
import TagsInput from "@/components/TagsInput/Index";
|
|
import Service from "@/utils/models/Service";
|
|
import { DataPoint } from "@/components/Table/Table";
|
|
|
|
export const ServiceTable = ({ services }: { services: Service[] }) => {
|
|
const columnHelper = createColumnHelper<Service>();
|
|
const [data, setData] = useState<DataPoint[]>([...services]);
|
|
|
|
const { presetOptions, setPresetOptions, getTagColor } = useTagsHandler([
|
|
"administrator",
|
|
"volunteer",
|
|
"employee",
|
|
])
|
|
|
|
const handleRowUpdate = (updatedRow: DataPoint) => {
|
|
const dataIndex = data.findIndex((row) => row.id === updatedRow.id);
|
|
if (dataIndex !== -1) {
|
|
const updatedData = [...data];
|
|
updatedData[dataIndex] = updatedRow;
|
|
setData(updatedData);
|
|
}
|
|
};
|
|
|
|
const columns: ColumnDef<Service, any>[] = [
|
|
columnHelper.accessor("name", {
|
|
header: () => (
|
|
<>
|
|
<Bars2Icon className="inline align-top h-4" /> Name
|
|
</>
|
|
),
|
|
cell: (info) => (
|
|
<RowOpenAction
|
|
title={info.getValue()}
|
|
rowData={info.row.original}
|
|
onRowUpdate={handleRowUpdate}
|
|
/>
|
|
),
|
|
}),
|
|
columnHelper.accessor("status", {
|
|
header: () => (
|
|
<>
|
|
<Bars2Icon className="inline align-top h-4" /> Status
|
|
</>
|
|
),
|
|
cell: (info) => (
|
|
<span className="ml-2 text-gray-500">{info.getValue()}</span>
|
|
),
|
|
}),
|
|
columnHelper.accessor("program", {
|
|
header: () => (
|
|
<>
|
|
<Bars2Icon className="inline align-top h-4" /> Program
|
|
</>
|
|
),
|
|
cell: (info) => (
|
|
<TagsInput
|
|
presetValue={info.getValue()}
|
|
presetOptions={presetOptions}
|
|
setPresetOptions={setPresetOptions}
|
|
getTagColor={getTagColor}
|
|
/>
|
|
),
|
|
}),
|
|
columnHelper.accessor("requirements", {
|
|
header: () => (
|
|
<>
|
|
<Bars2Icon className="inline align-top h-4" /> Requirements
|
|
</>
|
|
),
|
|
cell: (info) => (
|
|
// TODO: Setup different tag handler for requirements
|
|
<TagsInput
|
|
presetValue={info.getValue()[0] !== "" ? info.getValue() : ["N/A"]}
|
|
presetOptions={presetOptions}
|
|
setPresetOptions={setPresetOptions}
|
|
getTagColor={getTagColor}
|
|
/>
|
|
),
|
|
}),
|
|
|
|
columnHelper.accessor("summary", {
|
|
header: () => (
|
|
<>
|
|
<Bars2Icon className="inline align-top h-4" /> Summary
|
|
</>
|
|
),
|
|
cell: (info) => (
|
|
<span className="ml-2 text-gray-500">{info.getValue()}</span>
|
|
),
|
|
}),
|
|
];
|
|
|
|
return <Table data={data} setData={setData} columns={columns} />
|
|
};
|