168 lines
5.4 KiB
TypeScript
168 lines
5.4 KiB
TypeScript
import { DataGridColumnHeader, DataGridProvider, KeenIcon } from '@/components';
|
|
import { apiConfig } from '@/config/api.config';
|
|
import { useCallApi } from '@/hooks';
|
|
import { ColumnDef } from '@tanstack/react-table';
|
|
import React, { createContext, useCallback, useMemo, useState } from 'react';
|
|
import { Toaster } from 'sonner';
|
|
import ListToolbar from '../blocks/ListToolbar';
|
|
|
|
interface ProfessionProps {
|
|
name: string;
|
|
}
|
|
|
|
interface ContextProps {
|
|
profession: ProfessionProps[];
|
|
showEditDialog: boolean;
|
|
handleEditDialog: (show: boolean, selected_sucos: string | null) => void;
|
|
showAddDialog: boolean;
|
|
handleAddDialog: (show: boolean) => void;
|
|
showDeleteDialog: boolean;
|
|
handleDeleteDialog: (show: boolean, selected_sucos: string | null) => void;
|
|
selectedProfession: string | null;
|
|
getProfessionLists: (
|
|
limit: number,
|
|
page: number,
|
|
with_deleted: boolean,
|
|
order_field: any,
|
|
order_direction: any
|
|
) => Promise<{ data: ProfessionProps[]; totalCount: number } | undefined>;
|
|
}
|
|
|
|
const initialProps: ContextProps = {
|
|
profession: [],
|
|
showEditDialog: false,
|
|
handleEditDialog: () => {},
|
|
showAddDialog: false,
|
|
handleAddDialog: () => {},
|
|
showDeleteDialog: false,
|
|
handleDeleteDialog: () => {},
|
|
selectedProfession: null,
|
|
getProfessionLists: async () => undefined
|
|
};
|
|
|
|
const ManageProfessionContext = createContext<ContextProps>(initialProps);
|
|
const API_URL = apiConfig.service_master_data;
|
|
|
|
const ManageProfessionContextProvider = ({ children }: { children: React.ReactNode }) => {
|
|
const [profession, setProfession] = useState<ProfessionProps[]>([]);
|
|
const [showAddDialog, setShowAddDialog] = useState(false);
|
|
const [showEditDialog, setShowEditDialog] = useState(false);
|
|
const [showDeleteDialog, setShowDeleteDialog] = useState(false);
|
|
const [selectedProfession, setSelectedProfession] = useState<string | null>(null);
|
|
const { GetData } = useCallApi();
|
|
|
|
const handleAddDialog = useCallback((show: boolean) => {
|
|
setShowAddDialog(show);
|
|
}, []);
|
|
|
|
const handleEditDialog = useCallback((show: boolean, selected_profession: string | null) => {
|
|
setSelectedProfession(show ? selected_profession : null);
|
|
setShowEditDialog(show);
|
|
}, []);
|
|
|
|
const handleDeleteDialog = useCallback((show: boolean, selected_profession: string | null) => {
|
|
setSelectedProfession(show ? selected_profession : null);
|
|
setShowDeleteDialog(show);
|
|
}, []);
|
|
|
|
const columns = useMemo<ColumnDef<any>[]>(
|
|
() => [
|
|
{
|
|
accessorFn: (row) => row.name,
|
|
id: 'name',
|
|
header: ({ column }) => <DataGridColumnHeader title="Name" column={column} />,
|
|
enableSorting: true,
|
|
enableHiding: false,
|
|
meta: {
|
|
headerClassName: 'w-[250px]'
|
|
}
|
|
},
|
|
{
|
|
id: 'actions',
|
|
header: ({ column }) => <DataGridColumnHeader title="Actions" column={column} />,
|
|
enableSorting: false,
|
|
enableHiding: false,
|
|
cell: (data) => {
|
|
const row = data.row.original;
|
|
return (
|
|
<>
|
|
<button
|
|
className="btn btn-sm btn-icon btn-clear btn-light"
|
|
onClick={() => handleEditDialog(true, row.id)}
|
|
>
|
|
<KeenIcon icon="notepad-edit" />
|
|
</button>
|
|
<button
|
|
className="btn btn-sm btn-icon btn-clear btn-light"
|
|
onClick={() => handleDeleteDialog(true, row.id)}
|
|
>
|
|
<KeenIcon icon="trash" />
|
|
</button>
|
|
</>
|
|
);
|
|
},
|
|
meta: {
|
|
headerClassName: 'w-[100px]',
|
|
cellClassName: 'text-center'
|
|
}
|
|
}
|
|
],
|
|
[handleEditDialog, handleDeleteDialog]
|
|
);
|
|
|
|
const getProfessionLists = async (page: number, limit: number, sorting: any, filter: any) => {
|
|
try {
|
|
sorting = sorting.length == 0 ? [{ id: 'name', desc: false }] : sorting;
|
|
filter = filter.length == 0 ? {} : { any: filter[0].value?.toLowerCase() };
|
|
const response = await GetData(`${API_URL}/profession/list`, {
|
|
limit,
|
|
page: page + 1,
|
|
with_deleted: false,
|
|
order_field: sorting[0].id,
|
|
order_direction: sorting[0].desc == false ? 'ASC' : 'DESC',
|
|
filter: JSON.stringify(filter)
|
|
});
|
|
// console.log(response?.data);
|
|
setProfession(response?.data.list);
|
|
return { data: response?.data.list, totalCount: response?.data.total_count };
|
|
} catch (error) {
|
|
console.error('Error fetching Profession', error);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<ManageProfessionContext.Provider
|
|
value={{
|
|
profession,
|
|
showEditDialog,
|
|
handleEditDialog,
|
|
showAddDialog,
|
|
handleAddDialog,
|
|
showDeleteDialog,
|
|
handleDeleteDialog,
|
|
selectedProfession,
|
|
getProfessionLists
|
|
}}
|
|
>
|
|
<Toaster expand visibleToasts={9} duration={3000} />
|
|
|
|
<DataGridProvider
|
|
columns={columns}
|
|
pagination={{ size: 10 }}
|
|
toolbar={<ListToolbar />}
|
|
layout={{ card: true }}
|
|
sorting={[{ id: 'id', desc: false }]}
|
|
serverSide={true}
|
|
onFetchData={({ pageIndex, pageSize, sorting, columnFilters }) =>
|
|
getProfessionLists(pageIndex, pageSize, sorting, columnFilters)
|
|
}
|
|
>
|
|
{children}
|
|
</DataGridProvider>
|
|
</ManageProfessionContext.Provider>
|
|
);
|
|
};
|
|
|
|
export { ManageProfessionContextProvider, ManageProfessionContext };
|
|
export type { ProfessionProps };
|