import MuiDialog from "@/components/MuiDialog"; import { Button, Card, Checkbox, DialogActions, Grid, TextField, Typography } from "@mui/material"; import { Paper } from "@mui/material"; import { Stack } from '@mui/material'; import React, { useState } from 'react'; import { fDateTimesecond, toTitleCase } from "@/utils/formatTime"; import axios from "@/utils/axios"; import { enqueueSnackbar } from "notistack"; import { useNavigate } from "react-router"; import { Autocomplete } from "@mui/material"; type DialogDeleteType = { openDialog: boolean; setOpenDialog: any; onSubmit?: void; id: number|undefined; } export default function DialogDeleteRequestLOG({id, setOpenDialog, openDialog,onSubmit} : DialogDeleteType ) { const style1 = { color: '#919EAB', width: '30%' } const style2 = { width: '70%' } const marginBottom2 = { marginBottom: 2, } const handleCloseDialog = () => { setOpenDialog(false); resetForm(); } const [isReasonSelected, setIsReasonSelected] = useState(false); const reasons = [ { value: 'agreement', label: 'Agreement changed' }, { value: 'endorsement', label: 'Endorsement' }, { value: 'renewal', label: 'Renewal' }, { value: 'wrong_setting', label: 'Wrong Setting' }, // Add more options as needed ]; const [formData, setFormData] = useState({ reason: null }); const resetForm = () => { setFormData({ reason: null }); }; const handleChange = (field, value) => { setFormData((prevData) => ({ ...prevData, [field]: value, })); if (field === 'reason') { setIsReasonSelected(!!value); } }; const handleSubmit = () => { if (isReasonSelected && formData.reason !== '') { axios .put(`customer-service/request/delete/${id}`, formData) .then((response) => { enqueueSnackbar('Request LOG has Deleted', { variant: 'success' }); setOpenDialog(false); window.location.reload() }) .catch(({ response }) => { enqueueSnackbar(response.data.message ?? 'Something went wrong!', { variant: 'error' }); }); } else { setIsReasonSelected(false); alert('Silakan pilih alasan sebelum menghapus data.'); } } const getContent = () => ( Are you sure to delete this detail LOG ? Reason* option.label} fullWidth value={reasons.find((r) => r.value === formData.reason) || null} // Use find to match the default value onChange={(e, newValue) => handleChange('reason', newValue?.value)} renderInput={(params) => ( )} /> ); return ( ); }