feat create update Wallet Rule

This commit is contained in:
Wikzyy
2025-03-26 10:24:02 +07:00
parent d9dfe3e6a1
commit e44b20635c
4 changed files with 405 additions and 5 deletions

View File

@ -2,6 +2,7 @@ import { Container, DataGridInner } from '@/components';
import { ManageWalletRuleContextProvider } from './hooks/ManageWalletRuleContext';
import { Breadcrumbs, Link } from '@mui/material';
import AddDialog from './blocks/AddDialog';
import EditDialog from './blocks/EditDialog';
const WalletRuleMaster = () => {
return (
@ -27,6 +28,7 @@ const WalletRuleMaster = () => {
</div>
<AddDialog />
<EditDialog />
</Container>
</ManageWalletRuleContextProvider>
);

View File

@ -132,7 +132,7 @@ const AddDialog = () => {
order_direction: sorting[0].desc == false ? 'ASC' : 'DESC'
});
console.log('GROUPS: ', response?.data);
// console.log('GROUPS: ', response?.data);
setGroups(response?.data.list);
} catch (error) {
console.error('Error fetching groups', error);
@ -149,7 +149,7 @@ const AddDialog = () => {
order_direction: sorting[0].desc == false ? 'ASC' : 'DESC'
});
console.log('WALLET: ', response?.data);
// console.log('WALLET: ', response?.data);
setWallets(response?.data.list);
} catch (error) {
console.error('Error fetching wallet', error);

View File

@ -0,0 +1,398 @@
import { useCallApi } from '@/hooks';
import { useManageWalletRuleContext } from '../hooks/useManageWalletRuleContext';
import { Alert, useDataGrid } from '@/components';
import React, { useCallback, useEffect, useState } from 'react';
import { apiConfig } from '@/config/api.config';
import { toast } from 'sonner';
import {
Dialog,
DialogBody,
DialogContent,
DialogDescription,
DialogHeader,
DialogTitle
} from '@/components/ui/dialog';
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue
} from '@/components/ui/select';
import { Popover, PopoverContent, PopoverTrigger } from '@/components/ui/popover';
import {
Command,
CommandEmpty,
CommandGroup,
CommandInput,
CommandItem,
CommandList
} from '@/components/ui/command';
import { Input } from '@/components/ui/input';
import { Button } from '@/components/ui/button';
interface GroupProps {
ID: string;
is_bank: string;
name: string;
status: string;
}
interface WalletProps {
ID: string;
name: string;
id_currency: string;
status: string;
}
const API_URL_WALLET = apiConfig.service_wallet;
const EditDialog = () => {
const { showEditDialog, handleEditDialog, selectedWalletRule } = useManageWalletRuleContext();
const { GetData, PutData } = useCallApi();
const { reload } = useDataGrid();
const [open, setOpen] = useState(false);
const [alert, setAlert] = useState({
show: false,
message: ''
});
const initialState: {
id_wallet: string;
id_group: string;
max_transaction_per_day: number | null;
balance_minimum: number | null;
balance_maximum: number | null;
credit_limit: number | null;
monthly_limit: number | null;
status: string;
} = {
id_wallet: '',
id_group: '',
max_transaction_per_day: null,
balance_minimum: null,
balance_maximum: null,
credit_limit: null,
monthly_limit: null,
status: ''
};
const [formField, setFormField] = useState(initialState);
const [groups, setGroups] = useState<GroupProps[]>([]);
const [wallets, setWallets] = useState<WalletProps[]>([]);
const resetForm = () => {
setFormField(initialState);
setAlert({ show: false, message: '' });
};
const doUpdateWalletRule = useCallback(
async (e: React.FormEvent<HTMLFormElement>) => {
e.preventDefault();
const response = await PutData(
`${API_URL_WALLET}/dashboard/wallet_rule/${selectedWalletRule}`,
formField
);
if (response?.status) {
handleEditDialog(false, null);
toast.success('Success Update Wallet Rule');
reload();
} else {
toast.error('Failed Update Wallet Rule');
setAlert({ show: true, message: 'Failed Update Wallet Rule' });
}
},
[formField]
);
const handleSubmit = (e: React.FormEvent<HTMLFormElement>) => {
e.preventDefault();
if (
formField.id_group.trim() === '' ||
formField.max_transaction_per_day === 0 ||
formField.balance_minimum === 0 ||
formField.balance_maximum === 0 ||
formField.credit_limit === 0 ||
formField.monthly_limit === 0 ||
formField.status.trim() === ''
) {
setAlert({ show: true, message: 'Please fill in all required fields.' });
return;
}
// console.log(formField);
doUpdateWalletRule(e);
setAlert({ show: false, message: '' });
};
const getGroupLists = async (sorting: any) => {
try {
const response = await GetData(`${API_URL_WALLET}/dashboard/group`, {
limit: 100,
page: 1,
with_deleted: false,
order_field: sorting[0].id,
order_direction: sorting[0].desc == false ? 'ASC' : 'DESC'
});
// console.log('GROUPS: ', response?.data);
setGroups(response?.data.list);
} catch (error) {
console.error('Error fetching groups', error);
}
};
const getWalletLists = async (sorting: any) => {
try {
const response = await GetData(`${API_URL_WALLET}/dashboard/wallet`, {
limit: 100,
page: 1,
with_deleted: false,
order_field: sorting[0].id,
order_direction: sorting[0].desc == false ? 'ASC' : 'DESC'
});
// console.log('WALLET: ', response?.data);
setWallets(response?.data.list);
} catch (error) {
console.error('Error fetching wallet', error);
}
};
const doFetchData = useCallback(async (id: string) => {
const response = await GetData(`${API_URL_WALLET}/dashboard/wallet_rule/${id}`, { id });
console.log(response);
if (response?.status) {
setFormField((prev) => ({
...prev,
id_wallet: response?.data.id_wallet,
id_group: response?.data.id_group,
max_transaction_per_day: response?.data.max_transaction_per_day,
balance_minimum: response?.data.balance_minimum,
balance_maximum: response?.data.balance_maximum,
credit_limit: response?.data.credit_limit,
monthly_limit: response?.data.monthly_limit,
status: response?.data.status
}));
}
}, []);
useEffect(() => {
getWalletLists([{ id: 'name', desc: false }]);
getGroupLists([{ id: 'name', desc: false }]);
}, []);
useEffect(() => {
if (showEditDialog === false) {
resetForm();
}
}, [showEditDialog]);
useEffect(() => {
if (selectedWalletRule) {
doFetchData(selectedWalletRule);
}
}, [selectedWalletRule]);
// console.log(selectedWalletRule);
return (
<Dialog open={showEditDialog} onOpenChange={(open) => handleEditDialog(open, null)}>
<DialogContent className="container-fixed max-w-[768px] flex flex-col p-5 overflow-hidden">
<DialogHeader>
<DialogTitle>Wallet Rule - Create</DialogTitle>
<DialogDescription></DialogDescription>
</DialogHeader>
<DialogBody className="scrollable">
<div className="flex flex-col">
{alert.show && (
<Alert variant="danger">
<h3>{alert.message}</h3>
</Alert>
)}
<form onSubmit={handleSubmit}>
<div className="card-body grid gap-5">
<div className="w-full">
<div className="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
<label className="form-label flex items-center gap-1 max-w-56">
Wallet<span className="text-red-500">*</span>
</label>
<Select
value={formField.id_wallet}
onValueChange={(value) => setFormField({ ...formField, id_wallet: value })}
>
<SelectTrigger>
<SelectValue placeholder="Select Transaction Type" />
</SelectTrigger>
<SelectContent>
{wallets.map((wallet) => (
<SelectItem key={wallet.ID} value={wallet.ID}>
{wallet.name}
</SelectItem>
))}
</SelectContent>
</Select>
</div>
</div>
<div className="w-full">
<div className="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
<label className="form-label flex items-center gap-1 max-w-56">
Group<span className="text-red-500">*</span>
</label>
<Popover open={open} onOpenChange={setOpen}>
<PopoverTrigger asChild>
<button type="button" className="input col-span-5 text-left">
{groups.find((group) => group.ID === formField.id_group)?.name ||
'Select Groups'}
</button>
</PopoverTrigger>
<PopoverContent className="w-[400px] p-0">
<Command>
<CommandInput placeholder="Search Groups..." />
<CommandList>
<CommandEmpty>No Group found.</CommandEmpty>
<CommandGroup>
{groups.map((group) => (
<CommandItem
key={group.ID}
value={group.ID}
onSelect={() => {
setFormField({
...formField,
id_group: group.ID
});
setOpen(false);
}}
>
{group.name}
</CommandItem>
))}
</CommandGroup>
</CommandList>
</Command>
</PopoverContent>
</Popover>
</div>
</div>
<div className="w-full">
<div className="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
<label className="form-label flex items-center gap-1 max-w-56">
Max Transaction Per Day<span className="text-red-500">*</span>
</label>
<Input
className="input"
type="number"
value={formField.max_transaction_per_day ?? ''}
onChange={(e) =>
setFormField({
...formField,
max_transaction_per_day: parseInt(e.target.value)
})
}
/>
</div>
</div>
<div className="w-full">
<div className="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
<label className="form-label flex items-center gap-1 max-w-56">
Balance Minimum<span className="text-red-500">*</span>
</label>
<Input
className="input"
type="number"
value={formField.balance_minimum ?? ''}
onChange={(e) =>
setFormField({ ...formField, balance_minimum: parseInt(e.target.value) })
}
/>
</div>
</div>
<div className="w-full">
<div className="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
<label className="form-label flex items-center gap-1 max-w-56">
Balance Maximum<span className="text-red-500">*</span>
</label>
<Input
className="input"
type="number"
value={formField.balance_maximum ?? ''}
onChange={(e) =>
setFormField({ ...formField, balance_maximum: parseInt(e.target.value) })
}
/>
</div>
</div>
<div className="w-full">
<div className="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
<label className="form-label flex items-center gap-1 max-w-56">
Credit Limit<span className="text-red-500">*</span>
</label>
<Input
className="input"
type="number"
value={formField.credit_limit ?? ''}
onChange={(e) =>
setFormField({ ...formField, credit_limit: parseInt(e.target.value) })
}
/>
</div>
</div>
<div className="w-full">
<div className="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
<label className="form-label flex items-center gap-1 max-w-56">
Monthly Limit<span className="text-red-500">*</span>
</label>
<Input
className="input"
type="number"
value={formField.monthly_limit ?? ''}
onChange={(e) =>
setFormField({ ...formField, monthly_limit: parseInt(e.target.value) })
}
/>
</div>
</div>
<div className="w-full">
<div className="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
<label className="form-label flex items-center gap-1 max-w-56">
Status<span className="text-red-500">*</span>
</label>
<Select
value={formField.status}
onValueChange={(value) => setFormField({ ...formField, status: value })}
>
<SelectTrigger>
<SelectValue placeholder="Select Status" />
</SelectTrigger>
<SelectContent>
<SelectItem value="Y">Active</SelectItem>
<SelectItem value="N">Inactive</SelectItem>
</SelectContent>
</Select>
</div>
</div>
<div className="flex justify-end gap-5">
<Button type="button" variant="outline" onClick={resetForm}>
Reset
</Button>
<Button variant="default">Create</Button>
</div>
</div>
</form>
</div>
</DialogBody>
</DialogContent>
</Dialog>
);
};
export default EditDialog;

View File

@ -142,13 +142,13 @@ const ManageWalletRuleContextProvider = ({ children }: { children: React.ReactNo
<>
<button
className="btn btn-sm btn-icon btn-clear btn-light"
onClick={() => handleEditDialog(true, row.id)}
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)}
onClick={() => handleDeleteDialog(true, row.ID)}
>
<KeenIcon icon="trash" />
</button>
@ -176,7 +176,7 @@ const ManageWalletRuleContextProvider = ({ children }: { children: React.ReactNo
order_direction: sorting[0].desc == false ? 'ASC' : 'DESC',
filter: JSON.stringify(filter)
});
console.log(response?.data);
// console.log(response?.data);
setWalletRules(response?.data.list);
return { data: response?.data.list, totalCount: response?.data.total_count };
} catch (error) {