import { DataGridColumnHeader, DataGridProvider, KeenIcon } from '@/components'; import { Toaster } from '@/components/ui/sonner'; import { apiConfig } from '@/config/api.config'; import { ColumnDef } from '@tanstack/react-table'; import axios from 'axios'; import React, { createContext, useCallback, useEffect, useMemo, useState } from 'react'; import { useCallApi } from '@/hooks'; import ListToolbar from '../blocks/ListToolbar'; import { Button } from '@/components/ui/button'; import { useNavigate } from 'react-router'; interface MunicipiosProps { id: number; name: string; } interface ContextProps { municipios: MunicipiosProps[]; showSearchDialog: boolean; handleSearchDialog: (show: boolean) => void; showEditDialog: boolean; handleEditDialog: (show: boolean, selected_user: string | null) => void; showAddDialog: boolean; handleAddDialog: (show: boolean) => void; showDeleteDialog: boolean; handleDeleteDialog: (show: boolean, selected_user: string | null) => void; selectedMunicipios: string | null; getMunicipiosLists: ( limit: number, page: number, with_deleted: boolean, order_field: any, order_direction: any ) => Promise<{ data: MunicipiosProps[]; totalCount: number } | undefined>; } const initialProps: ContextProps = { municipios: [], showSearchDialog: false, handleSearchDialog: (show: boolean) => {}, showEditDialog: false, handleEditDialog: (show: boolean, selected_user: string | null) => {}, showAddDialog: false, handleAddDialog: (show: boolean) => {}, showDeleteDialog: false, handleDeleteDialog: (show: boolean, selected_user: string | null) => {}, selectedMunicipios: null, getMunicipiosLists: async () => ({ data: [], totalCount: 0 }) }; // interface MunicipiosContext { // municipios: MunicipiosProps[]; // getMunicipiosLists: ( // limit: number, // page: number, // with_deleted: boolean, // order_field: any, // order_direction: any // ) => Promise; // getMunicipiosByName: (name: string) => Promise; // createMunicipios: (data: Partial) => Promise; // updateMunicipios: (id: number, data: Partial) => Promise; // deleteMunicipios: (id: number, hardDelete?: boolean) => Promise; // restoreMunicipios: (id: number) => Promise; // } const ManageMunicipiosContext = createContext(initialProps); const API_URL = apiConfig.service_master_data; const ManageMunicipiosProvider = ({ children }: { children: React.ReactNode }) => { const [showSearchDialog, setShowSearchDialog] = useState(false); const [showEditDialog, setShowEditDialog] = useState(false); const [showAddDialog, setShowAddDialog] = useState(false); const [showDeleteDialog, setShowDeleteDialog] = useState(false); const [selectedMunicipios, setSelectedMunicipios] = useState(null); const [municipios, setMunicipios] = useState([]); const { GetData } = useCallApi(); const navigate = useNavigate(); const handleSearchDialog = useCallback((show: boolean) => { setShowSearchDialog(show); }, []); const handleAddDialog = useCallback((show: boolean) => { setShowAddDialog(show); }, []); const handleEditDialog = useCallback((show: boolean, selected_municipios: string | null) => { setSelectedMunicipios(show ? selected_municipios : null); setShowEditDialog(show); }, []); const handleDeleteDialog = useCallback((show: boolean, selected_municipios: string | null) => { setSelectedMunicipios(show ? selected_municipios : null); setShowDeleteDialog(show); }, []); const handleNavigate = (path: string) => { const url = navigate(`${API_URL}/municipios/postoadms/${path}`); console.log(url); }; const columns = useMemo[]>( () => [ { // accessorFn: (row) => row.name, // id: 'name', accessorKey: 'name', header: ({ column }) => , enableSorting: true, enableHiding: false, meta: { headerClassName: 'w-[250px]' } }, { id: 'actions', header: ({ column }) => , enableSorting: false, enableHiding: false, cell: (data) => { const row = data.row.original; return ( <> ); }, meta: { headerClassName: 'w-[100px]', cellClassName: 'text-center' } } ], [handleEditDialog, handleDeleteDialog] ); const getMunicipiosLists = 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}/municipios/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); // const sortedList = response.data.data.list.sort((a: MunicipiosProps, b: MunicipiosProps) => { // if (a.name < b.name) return -1; // if (a.name > b.name) return 1; // return 0; // }); setMunicipios(response?.data.list); return { data: response?.data.list, totalCount: response?.data.total_count }; } catch (error) { console.error('Error fetching municipios', error); } }; return ( } layout={{ card: true }} sorting={[{ id: 'id', desc: false }]} serverSide={true} onFetchData={({ pageIndex, pageSize, sorting, columnFilters }) => getMunicipiosLists(pageIndex, pageSize, sorting, columnFilters) } > {children} ); }; export { ManageMunicipiosProvider, ManageMunicipiosContext }; export type { MunicipiosProps };