72 lines
2.2 KiB
TypeScript
72 lines
2.2 KiB
TypeScript
"use client";
|
|
|
|
import { Cross2Icon } from "@radix-ui/react-icons";
|
|
import { Table } from "@tanstack/react-table";
|
|
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
// import { DataTableViewOptions } from "./components/data-table-view-options"
|
|
|
|
import { DataTableFacetedFilter } from "./data-table-faceted-filter";
|
|
import { DataTableViewOptions } from "./data-table-view-options";
|
|
import { userFilterLabels } from "@/constants/data";
|
|
|
|
interface DataTableToolbarProps<TData> {
|
|
table: Table<TData>;
|
|
}
|
|
|
|
export function DataTableToolbar<TData>({
|
|
table,
|
|
}: DataTableToolbarProps<TData>) {
|
|
const isFiltered = table.getState().columnFilters.length > 0;
|
|
|
|
return (
|
|
<div className="flex items-center justify-between">
|
|
<div className="flex flex-1 items-center space-x-2">
|
|
<Input
|
|
placeholder="Search email..."
|
|
value={(table.getColumn("email")?.getFilterValue() as string) ?? ""}
|
|
onChange={(event: any) =>
|
|
table.getColumn("email")?.setFilterValue(event.target.value)
|
|
}
|
|
className="h-8 w-[150px] lg:w-[250px]"
|
|
/>
|
|
<Input
|
|
placeholder="Search name..."
|
|
value={(table.getColumn("fullName")?.getFilterValue() as string) ?? ""}
|
|
onChange={(event: any) =>
|
|
table.getColumn("fullName")?.setFilterValue(event.target.value)
|
|
}
|
|
className="h-8 w-[150px] lg:w-[250px]"
|
|
/>
|
|
{table.getColumn("role") && (
|
|
<DataTableFacetedFilter
|
|
column={table.getColumn("role")}
|
|
title="Role"
|
|
options={userFilterLabels}
|
|
/>
|
|
)}
|
|
{/*
|
|
{table.getColumn("pricing_model") && (
|
|
<DataTableFacetedFilter
|
|
column={table.getColumn("pricing_model")}
|
|
title="Pricing Model"
|
|
options={pricingModel}
|
|
/>
|
|
)} */}
|
|
{isFiltered && (
|
|
<Button
|
|
variant="ghost"
|
|
onClick={() => table.resetColumnFilters()}
|
|
className="h-8 px-2 lg:px-3"
|
|
>
|
|
Reset
|
|
<Cross2Icon className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
)}
|
|
</div>
|
|
<DataTableViewOptions table={table} />
|
|
</div>
|
|
);
|
|
}
|