73 lines
2.7 KiB
TypeScript
73 lines
2.7 KiB
TypeScript
import { DefaultTooltip, KeenIcon, useDataGrid } from '@/components';
|
|
import { Button } from '@/components/ui/button';
|
|
import { useManageSucosContext } from '../hooks/useManageSucosContext';
|
|
|
|
const ListToolbar = () => {
|
|
const { table, reload } = useDataGrid();
|
|
const { handleAddDialog, handleSearchDialog } = useManageSucosContext();
|
|
|
|
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 Sucos"
|
|
value={String(table.getColumn(`sucos_name`)?.getFilterValue() ?? '')}
|
|
onChange={(event) =>
|
|
table.getColumn('sucos_name')?.setFilterValue(event.target.value)
|
|
}
|
|
/>
|
|
<input
|
|
type="text"
|
|
placeholder="Search Posto Administrativo"
|
|
value={String(table.getColumn(`posto_name`)?.getFilterValue() ?? '')}
|
|
onChange={(event) =>
|
|
table.getColumn('posto_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>
|
|
{/* <Button
|
|
variant="outline"
|
|
className="h-7.5 text-[0.8rem]"
|
|
onClick={() => handleSearchDialog(true)}
|
|
>
|
|
Search Aldeias
|
|
</Button> */}
|
|
</div>
|
|
<div className="flex gap-3 items-center">
|
|
<Button
|
|
variant="outline"
|
|
className="h-7.5 text-[0.8rem]"
|
|
onClick={() => handleAddDialog(true)}
|
|
>
|
|
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 default ListToolbar;
|