50 lines
1.9 KiB
TypeScript
50 lines
1.9 KiB
TypeScript
import { DefaultTooltip, KeenIcon, useDataGrid } from '@/components';
|
|
import { Button } from '@/components/ui/button';
|
|
|
|
const ListToolBar = ({ createGroup }: { createGroup: () => void }) => {
|
|
const { table, reload } = useDataGrid();
|
|
|
|
return (
|
|
<div className="card-header flex-wrap gap-2 border-b-0 px-5">
|
|
<div className="flex flex-wrap gap-2 lg:gap-5 w-full">
|
|
<div className="flex justify-between w-full items-center">
|
|
<div className="flex w-[50%] gap-3 items-center">
|
|
<label className="input input-sm w-1/3">
|
|
<KeenIcon icon="magnifier" />
|
|
<input
|
|
type="text"
|
|
placeholder="Search users"
|
|
value={(table.getColumn('name')?.getFilterValue() as string) ?? ''}
|
|
onChange={(event) => table.getColumn('name')?.setFilterValue(event.target.value)}
|
|
/>
|
|
</label>
|
|
{/* <DefaultTooltip title={'Filter'} placement={'top'}>
|
|
<Button
|
|
variant="outline"
|
|
className="h-7.5 disabled:bg-gray-400"
|
|
// disabled={isLoading}
|
|
// onClick={handleFilterData}
|
|
>
|
|
{loadingButton === 'filter' ? <ContentLoader /> : <KeenIcon icon="filter" />}
|
|
<KeenIcon icon="filter" />
|
|
</Button>
|
|
</DefaultTooltip> */}
|
|
</div>
|
|
<div className="flex gap-3 items-center">
|
|
<Button variant="outline" className="h-7.5 text-[0.8rem]" onClick={createGroup}>
|
|
Add Data
|
|
</Button>
|
|
<DefaultTooltip title={'Refresh'} placement={'top'}>
|
|
<Button variant="outline" className="h-7.5" onClick={() => reload()}>
|
|
<KeenIcon icon="arrows-circle" />
|
|
</Button>
|
|
</DefaultTooltip>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export { ListToolBar };
|