407 lines
14 KiB
TypeScript
407 lines
14 KiB
TypeScript
import { apiConfig } from '@/config/api.config';
|
|
import { useManageWalletRuleContext } from '../hooks/useManageWalletRuleContext';
|
|
import { Alert, useDataGrid } from '@/components';
|
|
import { useCallApi } from '@/hooks';
|
|
import { useCallback, useEffect, useState } from 'react';
|
|
import { toast } from 'sonner';
|
|
import {
|
|
Dialog,
|
|
DialogBody,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogHeader,
|
|
DialogTitle
|
|
} from '@/components/ui/dialog';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Button } from '@/components/ui/button';
|
|
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 { NumericFormat } from 'react-number-format';
|
|
import { doSaveLogActivity } from '@/actions/GlobalActions';
|
|
import { RefreshCw } from 'lucide-react';
|
|
|
|
interface GroupProps {
|
|
ID: string;
|
|
is_bank: string;
|
|
name: string;
|
|
status: string;
|
|
}
|
|
|
|
interface WalletGroupProps {
|
|
id: string;
|
|
name: string;
|
|
description: string;
|
|
status: string;
|
|
}
|
|
|
|
interface WalletProps {
|
|
id: string;
|
|
name: string;
|
|
id_currency: string;
|
|
status: string;
|
|
group: WalletGroupProps[];
|
|
}
|
|
|
|
const API_URL_WALLET = apiConfig.service_wallet;
|
|
const API_URL_MASTERDATA = apiConfig.service_master_data;
|
|
|
|
const AddDialog = () => {
|
|
const { showAddDialog, handleAddDialog, selectedWalletRule } = useManageWalletRuleContext();
|
|
const { reload } = useDataGrid();
|
|
const { PostData, GetData } = useCallApi();
|
|
const [open, setOpen] = useState(false);
|
|
const [alert, setAlert] = useState({
|
|
show: false,
|
|
message: ''
|
|
});
|
|
const initialState: {
|
|
id_wallet: string;
|
|
id_group: string;
|
|
max_transaction_per_day: string | number | null;
|
|
balance_minimum: string | number | null;
|
|
balance_maximum: string | number | null;
|
|
credit_limit: string | number | null;
|
|
monthly_limit: string | 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 [wallets, setWallets] = useState<WalletProps[]>([]);
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
|
|
const resetForm = () => {
|
|
setFormField(initialState);
|
|
setAlert({ show: false, message: '' });
|
|
};
|
|
|
|
const doCreateWalletRule = useCallback(
|
|
async (e: React.FormEvent<HTMLFormElement>) => {
|
|
e.preventDefault();
|
|
setIsSubmitting(true);
|
|
|
|
try {
|
|
const response = await PostData(`${API_URL_WALLET}/dashboard/wallet_rule`, formField);
|
|
|
|
if (response?.status) {
|
|
handleAddDialog(false);
|
|
toast.success('Success Create Wallet Rule');
|
|
reload();
|
|
|
|
const createActivity = {
|
|
module: 'Manage Wallet Rule',
|
|
description: `Create Wallet Rule => ${selectedWalletRule?.ID}`,
|
|
action: 'C'
|
|
};
|
|
|
|
doSaveLogActivity(createActivity);
|
|
} else {
|
|
toast.error('Failed Create Wallet Rule');
|
|
setAlert({ show: true, message: response?.message });
|
|
}
|
|
} catch (error) {
|
|
toast.error('Something went wrong, please try again.');
|
|
} finally {
|
|
setIsSubmitting(false);
|
|
}
|
|
},
|
|
[formField]
|
|
);
|
|
|
|
const handleSubmit = (e: React.FormEvent<HTMLFormElement>) => {
|
|
e.preventDefault();
|
|
|
|
if (
|
|
formField.id_group.trim() === '' ||
|
|
formField.status.trim() === '' ||
|
|
formField.id_wallet.trim() === '' ||
|
|
formField.max_transaction_per_day === null ||
|
|
formField.balance_minimum === null ||
|
|
formField.balance_maximum === null ||
|
|
formField.credit_limit === null ||
|
|
formField.monthly_limit === null
|
|
) {
|
|
setAlert({ show: true, message: 'Please fill in all required fields.' });
|
|
return;
|
|
}
|
|
|
|
console.log(formField);
|
|
doCreateWalletRule(e);
|
|
setAlert({ show: false, message: '' });
|
|
};
|
|
|
|
const getWalletLists = async (sorting: any) => {
|
|
try {
|
|
const response = await GetData(`${API_URL_MASTERDATA}/wallet/list`, {
|
|
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 selectedWallet = wallets.find((wallet) => wallet.id === formField.id_wallet);
|
|
const filteredGroups = selectedWallet ? selectedWallet.group : [];
|
|
|
|
useEffect(() => {
|
|
getWalletLists([{ id: 'wallets.name', desc: false }]);
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (showAddDialog === false) {
|
|
resetForm();
|
|
}
|
|
}, [showAddDialog]);
|
|
|
|
return (
|
|
<Dialog open={showAddDialog} onOpenChange={(open) => handleAddDialog(open)}>
|
|
<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, id_group: '' })
|
|
}
|
|
>
|
|
<SelectTrigger>
|
|
<SelectValue placeholder="Select Wallet 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>
|
|
<Select
|
|
value={formField.id_group}
|
|
onValueChange={(value) => setFormField({ ...formField, id_group: value })}
|
|
disabled={filteredGroups.length === 0}
|
|
>
|
|
<SelectTrigger>
|
|
<SelectValue placeholder="Select Group Type" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
{filteredGroups.length > 0 ? (
|
|
filteredGroups.map((group) => (
|
|
<SelectItem key={group.id} value={group.id}>
|
|
{group.name}
|
|
</SelectItem>
|
|
))
|
|
) : (
|
|
<SelectItem value="empty">No groups available</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">
|
|
Max Transaction Per Day<span className="text-red-500">*</span>
|
|
</label>
|
|
<NumericFormat
|
|
className="input"
|
|
value={formField.max_transaction_per_day ?? ''}
|
|
thousandSeparator="."
|
|
decimalSeparator=","
|
|
allowNegative={false}
|
|
onValueChange={(values) => {
|
|
setFormField((prev) => ({
|
|
...prev,
|
|
max_transaction_per_day:
|
|
values.floatValue !== undefined ? values.floatValue : ''
|
|
}));
|
|
}}
|
|
placeholder="Enter Max Transaction Per Day"
|
|
/>
|
|
</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>
|
|
<NumericFormat
|
|
className="input"
|
|
value={formField.balance_minimum ?? ''}
|
|
thousandSeparator="."
|
|
decimalSeparator=","
|
|
allowNegative={false}
|
|
onValueChange={(values) => {
|
|
setFormField((prev) => ({
|
|
...prev,
|
|
balance_minimum: values.floatValue !== undefined ? values.floatValue : ''
|
|
}));
|
|
}}
|
|
placeholder="Enter Balance Minimum"
|
|
/>
|
|
</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>
|
|
<NumericFormat
|
|
className="input"
|
|
value={formField.balance_maximum ?? ''}
|
|
thousandSeparator="."
|
|
decimalSeparator=","
|
|
allowNegative={false}
|
|
onValueChange={(values) => {
|
|
setFormField((prev) => ({
|
|
...prev,
|
|
balance_maximum: values.floatValue !== undefined ? values.floatValue : ''
|
|
}));
|
|
}}
|
|
placeholder="Enter Balance Maximum"
|
|
/>
|
|
</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>
|
|
<NumericFormat
|
|
className="input"
|
|
value={formField.credit_limit ?? ''}
|
|
thousandSeparator="."
|
|
decimalSeparator=","
|
|
allowNegative={false}
|
|
onValueChange={(values) => {
|
|
setFormField((prev) => ({
|
|
...prev,
|
|
credit_limit: values.floatValue !== undefined ? values.floatValue : ''
|
|
}));
|
|
}}
|
|
placeholder="Enter Credit Limit"
|
|
/>
|
|
</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>
|
|
<NumericFormat
|
|
className="input"
|
|
value={formField.monthly_limit ?? ''}
|
|
thousandSeparator="."
|
|
decimalSeparator=","
|
|
allowNegative={false}
|
|
onValueChange={(values) => {
|
|
setFormField((prev) => ({
|
|
...prev,
|
|
monthly_limit: values.floatValue !== undefined ? values.floatValue : ''
|
|
}));
|
|
}}
|
|
placeholder="Enter Monthly Limit"
|
|
/>
|
|
</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" type="submit" disabled={isSubmitting}>
|
|
{isSubmitting ? (
|
|
<RefreshCw className="animate-spin h-8 w-8 text-white mx-3" />
|
|
) : (
|
|
'Create'
|
|
)}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</DialogBody>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|
|
|
|
export default AddDialog;
|