685 lines
23 KiB
TypeScript
685 lines
23 KiB
TypeScript
"use client";
|
|
|
|
import { useState, useEffect } from "react";
|
|
import {
|
|
Table,
|
|
TableBody,
|
|
TableCell,
|
|
TableHead,
|
|
TableHeader,
|
|
TableRow
|
|
} from "@/components/ui/table";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogFooter,
|
|
DialogClose
|
|
} from "@/components/ui/dialog";
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue
|
|
} from "@/components/ui/select";
|
|
import {
|
|
Pagination,
|
|
PaginationContent,
|
|
PaginationEllipsis,
|
|
PaginationItem,
|
|
PaginationLink,
|
|
PaginationNext,
|
|
PaginationPrevious,
|
|
} from "@/components/ui/pagination";
|
|
import {
|
|
PlusCircle,
|
|
Pencil,
|
|
Trash2,
|
|
Search,
|
|
X,
|
|
Loader2,
|
|
Filter
|
|
} from "lucide-react";
|
|
import UploadExcelBeasiswaMahasiswa from "@/components/datatable/upload-file-beasiswa-mahasiswa";
|
|
import { useToast } from "@/components/ui/toast-provider";
|
|
|
|
// Define the BeasiswaMahasiswa type
|
|
interface BeasiswaMahasiswa {
|
|
id_beasiswa: number;
|
|
nim: string;
|
|
nama: string;
|
|
nama_beasiswa: string;
|
|
sumber_beasiswa: string;
|
|
jenis_beasiswa: "Pemerintah" | "Non-Pemerintah";
|
|
created_at: string;
|
|
}
|
|
|
|
export default function DataTableBeasiswaMahasiswa() {
|
|
const { showSuccess, showError } = useToast();
|
|
|
|
// State for data
|
|
const [beasiswaMahasiswa, setBeasiswaMahasiswa] = useState<BeasiswaMahasiswa[]>([]);
|
|
const [filteredData, setFilteredData] = useState<BeasiswaMahasiswa[]>([]);
|
|
const [loading, setLoading] = useState(true);
|
|
const [error, setError] = useState<string | null>(null);
|
|
|
|
// State for filtering
|
|
const [searchTerm, setSearchTerm] = useState("");
|
|
const [filterJenisBeasiswa, setFilterJenisBeasiswa] = useState<string>("");
|
|
|
|
// State for pagination
|
|
const [currentPage, setCurrentPage] = useState(1);
|
|
const [pageSize, setPageSize] = useState(10);
|
|
const [paginatedData, setPaginatedData] = useState<BeasiswaMahasiswa[]>([]);
|
|
|
|
// State for form
|
|
const [formMode, setFormMode] = useState<"add" | "edit">("add");
|
|
const [formData, setFormData] = useState<Partial<BeasiswaMahasiswa>>({
|
|
jenis_beasiswa: "Pemerintah"
|
|
});
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
const [isDialogOpen, setIsDialogOpen] = useState(false);
|
|
|
|
// State for delete confirmation
|
|
const [deleteId, setDeleteId] = useState<number | null>(null);
|
|
const [isDeleting, setIsDeleting] = useState(false);
|
|
const [isDeleteDialogOpen, setIsDeleteDialogOpen] = useState(false);
|
|
|
|
// Fetch data on component mount
|
|
useEffect(() => {
|
|
fetchBeasiswaMahasiswa();
|
|
}, []);
|
|
|
|
// Filter data when search term or filter changes
|
|
useEffect(() => {
|
|
filterData();
|
|
}, [searchTerm, filterJenisBeasiswa, beasiswaMahasiswa]);
|
|
|
|
// Update paginated data when filtered data or pagination settings change
|
|
useEffect(() => {
|
|
paginateData();
|
|
}, [filteredData, currentPage, pageSize]);
|
|
|
|
// Fetch beasiswa mahasiswa data from API
|
|
const fetchBeasiswaMahasiswa = async () => {
|
|
try {
|
|
setLoading(true);
|
|
let url = "/api/keloladata/data-beasiswa-mahasiswa";
|
|
|
|
// Add filters to URL if they exist
|
|
const params = new URLSearchParams();
|
|
if (searchTerm) {
|
|
params.append("search", searchTerm);
|
|
}
|
|
if (filterJenisBeasiswa && filterJenisBeasiswa !== "all") {
|
|
params.append("jenis_beasiswa", filterJenisBeasiswa);
|
|
}
|
|
|
|
if (params.toString()) {
|
|
url += `?${params.toString()}`;
|
|
}
|
|
|
|
const response = await fetch(url);
|
|
|
|
if (!response.ok) {
|
|
throw new Error("Failed to fetch data");
|
|
}
|
|
|
|
const data = await response.json();
|
|
setBeasiswaMahasiswa(data);
|
|
setFilteredData(data);
|
|
setError(null);
|
|
} catch (err) {
|
|
setError("Error fetching data. Please try again later.");
|
|
console.error("Error fetching data:", err);
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
// Filter data based on search term and filters
|
|
const filterData = () => {
|
|
let filtered = [...beasiswaMahasiswa];
|
|
|
|
// Filter by search term
|
|
if (searchTerm) {
|
|
filtered = filtered.filter(
|
|
(item) =>
|
|
(item.nim?.toLowerCase() || "").includes(searchTerm.toLowerCase()) ||
|
|
(item.nama?.toLowerCase() || "").includes(searchTerm.toLowerCase()) ||
|
|
(item.nama_beasiswa?.toLowerCase() || "").includes(searchTerm.toLowerCase()) ||
|
|
(item.sumber_beasiswa?.toLowerCase() || "").includes(searchTerm.toLowerCase())
|
|
);
|
|
}
|
|
|
|
// Filter by jenis beasiswa
|
|
if (filterJenisBeasiswa && filterJenisBeasiswa !== "all") {
|
|
filtered = filtered.filter((item) => item.jenis_beasiswa === filterJenisBeasiswa);
|
|
}
|
|
|
|
setFilteredData(filtered);
|
|
// Reset to first page when filters change
|
|
setCurrentPage(1);
|
|
};
|
|
|
|
// Paginate data
|
|
const paginateData = () => {
|
|
const startIndex = (currentPage - 1) * pageSize;
|
|
const endIndex = startIndex + pageSize;
|
|
setPaginatedData(filteredData.slice(startIndex, endIndex));
|
|
};
|
|
|
|
// Get total number of pages
|
|
const getTotalPages = () => {
|
|
return Math.ceil(filteredData.length / pageSize);
|
|
};
|
|
|
|
// Handle page change
|
|
const handlePageChange = (page: number) => {
|
|
setCurrentPage(page);
|
|
};
|
|
|
|
// Handle page size change
|
|
const handlePageSizeChange = (size: string) => {
|
|
setPageSize(Number(size));
|
|
setCurrentPage(1); // Reset to first page when changing page size
|
|
};
|
|
|
|
// Reset form data
|
|
const resetForm = () => {
|
|
setFormData({
|
|
jenis_beasiswa: "Pemerintah"
|
|
});
|
|
};
|
|
|
|
// Handle form input changes
|
|
const handleInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
const { name, value } = e.target;
|
|
setFormData((prev) => ({ ...prev, [name]: value }));
|
|
};
|
|
|
|
// Handle select input changes
|
|
const handleSelectChange = (name: string, value: string) => {
|
|
setFormData((prev) => ({ ...prev, [name]: value }));
|
|
};
|
|
|
|
// Open form dialog for adding new beasiswa
|
|
const handleAdd = () => {
|
|
setFormMode("add");
|
|
resetForm();
|
|
setIsDialogOpen(true);
|
|
};
|
|
|
|
// Open form dialog for editing beasiswa
|
|
const handleEdit = (data: BeasiswaMahasiswa) => {
|
|
setFormMode("edit");
|
|
setFormData(data);
|
|
setIsDialogOpen(true);
|
|
};
|
|
|
|
// Open delete confirmation dialog
|
|
const handleDeleteConfirm = (id: number) => {
|
|
setDeleteId(id);
|
|
setIsDeleteDialogOpen(true);
|
|
};
|
|
|
|
// Submit form for add/edit
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
|
|
try {
|
|
setIsSubmitting(true);
|
|
|
|
if (formMode === "add") {
|
|
// Add new beasiswa
|
|
const response = await fetch("/api/keloladata/data-beasiswa-mahasiswa", {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify(formData),
|
|
});
|
|
|
|
const responseData = await response.json();
|
|
|
|
if (!response.ok) {
|
|
// Handle specific NIM not found error
|
|
if (response.status === 404 && responseData.message.includes("tidak terdaftar")) {
|
|
showError("Gagal!", `NIM ${formData.nim} tidak terdaftar dalam database. Silakan cek kembali NIM yang dimasukkan.`);
|
|
throw new Error(`NIM ${formData.nim} tidak terdaftar. Silakan cek kembali NIM yang dimasukkan.`);
|
|
}
|
|
showError("Gagal!", "Gagal menambahkan beasiswa");
|
|
throw new Error(responseData.message || "Failed to add beasiswa");
|
|
}
|
|
|
|
// Show success message with student info
|
|
showSuccess("Berhasil!", "Beasiswa mahasiswa berhasil ditambahkan");
|
|
} else {
|
|
// Edit existing beasiswa
|
|
const response = await fetch(`/api/keloladata/data-beasiswa-mahasiswa?id=${formData.id_beasiswa}`, {
|
|
method: "PUT",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify(formData),
|
|
});
|
|
|
|
const responseData = await response.json();
|
|
|
|
if (!response.ok) {
|
|
// Handle specific NIM not found error
|
|
if (response.status === 404 && responseData.message.includes("tidak terdaftar")) {
|
|
throw new Error(`NIM ${formData.nim} tidak terdaftar. Silakan cek kembali NIM yang dimasukkan.`);
|
|
}
|
|
showError("Gagal!", responseData.message || "Failed to update beasiswa");
|
|
throw new Error(responseData.message || "Failed to update beasiswa");
|
|
}
|
|
|
|
showSuccess("Berhasil!", "Beasiswa mahasiswa berhasil diperbarui");
|
|
}
|
|
|
|
// Refresh data after successful operation
|
|
await fetchBeasiswaMahasiswa();
|
|
setIsDialogOpen(false);
|
|
resetForm();
|
|
} catch (err) {
|
|
console.error("Error submitting form:", err);
|
|
} finally {
|
|
setIsSubmitting(false);
|
|
}
|
|
};
|
|
|
|
// Delete beasiswa
|
|
const handleDelete = async () => {
|
|
if (!deleteId) return;
|
|
|
|
try {
|
|
setIsDeleting(true);
|
|
|
|
const response = await fetch(`/api/keloladata/data-beasiswa-mahasiswa?id=${deleteId}`, {
|
|
method: "DELETE",
|
|
});
|
|
|
|
if (!response.ok) {
|
|
const errorData = await response.json();
|
|
throw new Error(errorData.message || "Failed to delete beasiswa");
|
|
}
|
|
|
|
// Refresh data after successful deletion
|
|
await fetchBeasiswaMahasiswa();
|
|
setIsDeleteDialogOpen(false);
|
|
setDeleteId(null);
|
|
showSuccess("Berhasil!", "Beasiswa mahasiswa berhasil dihapus");
|
|
} catch (err) {
|
|
console.error("Error deleting beasiswa:", err);
|
|
} finally {
|
|
setIsDeleting(false);
|
|
}
|
|
};
|
|
|
|
// Generate pagination items
|
|
const renderPaginationItems = () => {
|
|
const totalPages = getTotalPages();
|
|
const items = [];
|
|
|
|
// Always show first page
|
|
items.push(
|
|
<PaginationItem key="first">
|
|
<PaginationLink
|
|
isActive={currentPage === 1}
|
|
onClick={() => handlePageChange(1)}
|
|
>
|
|
1
|
|
</PaginationLink>
|
|
</PaginationItem>
|
|
);
|
|
|
|
// Show ellipsis if needed
|
|
if (currentPage > 3) {
|
|
items.push(
|
|
<PaginationItem key="ellipsis-start">
|
|
<PaginationEllipsis />
|
|
</PaginationItem>
|
|
);
|
|
}
|
|
|
|
// Show pages around current page
|
|
for (let i = Math.max(2, currentPage - 1); i <= Math.min(totalPages - 1, currentPage + 1); i++) {
|
|
if (i === 1 || i === totalPages) continue; // Skip first and last pages as they're always shown
|
|
items.push(
|
|
<PaginationItem key={i}>
|
|
<PaginationLink
|
|
isActive={currentPage === i}
|
|
onClick={() => handlePageChange(i)}
|
|
>
|
|
{i}
|
|
</PaginationLink>
|
|
</PaginationItem>
|
|
);
|
|
}
|
|
|
|
// Show ellipsis if needed
|
|
if (currentPage < totalPages - 2) {
|
|
items.push(
|
|
<PaginationItem key="ellipsis-end">
|
|
<PaginationEllipsis />
|
|
</PaginationItem>
|
|
);
|
|
}
|
|
|
|
// Always show last page if there's more than one page
|
|
if (totalPages > 1) {
|
|
items.push(
|
|
<PaginationItem key="last">
|
|
<PaginationLink
|
|
isActive={currentPage === totalPages}
|
|
onClick={() => handlePageChange(totalPages)}
|
|
>
|
|
{totalPages}
|
|
</PaginationLink>
|
|
</PaginationItem>
|
|
);
|
|
}
|
|
|
|
return items;
|
|
};
|
|
|
|
// Calculate the range of entries being displayed
|
|
const getDisplayRange = () => {
|
|
if (filteredData.length === 0) return { start: 0, end: 0 };
|
|
|
|
const start = (currentPage - 1) * pageSize + 1;
|
|
const end = Math.min(currentPage * pageSize, filteredData.length);
|
|
|
|
return { start, end };
|
|
};
|
|
|
|
return (
|
|
<div className="space-y-4">
|
|
<div className="flex flex-col sm:flex-row justify-between items-start sm:items-center gap-4">
|
|
<h2 className="text-2xl font-bold">Data Beasiswa Mahasiswa</h2>
|
|
<div className="flex flex-col sm:flex-row gap-2">
|
|
<UploadExcelBeasiswaMahasiswa onUploadSuccess={fetchBeasiswaMahasiswa} />
|
|
<Button onClick={handleAdd}>
|
|
<PlusCircle className="mr-2 h-4 w-4" />
|
|
Tambah Beasiswa
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Filters */}
|
|
<div className="flex flex-col sm:flex-row gap-4">
|
|
<div className="relative flex-1">
|
|
<Search className="absolute left-2.5 top-2.5 h-4 w-4 text-muted-foreground" />
|
|
<Input
|
|
placeholder="Cari berdasarkan NIM, nama, nama beasiswa, atau sumber..."
|
|
className="pl-8"
|
|
value={searchTerm}
|
|
onChange={(e) => setSearchTerm(e.target.value)}
|
|
/>
|
|
{searchTerm && (
|
|
<X
|
|
className="absolute right-2.5 top-2.5 h-4 w-4 text-muted-foreground cursor-pointer"
|
|
onClick={() => setSearchTerm("")}
|
|
/>
|
|
)}
|
|
</div>
|
|
<Select
|
|
value={filterJenisBeasiswa}
|
|
onValueChange={(value) => setFilterJenisBeasiswa(value)}
|
|
>
|
|
<SelectTrigger className="w-[200px]">
|
|
<SelectValue placeholder="Jenis Beasiswa" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="all">Semua Jenis</SelectItem>
|
|
<SelectItem value="Pemerintah">Pemerintah</SelectItem>
|
|
<SelectItem value="Non-Pemerintah">Non-Pemerintah</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
|
|
{/* Show entries selector */}
|
|
<div className="flex items-center gap-2">
|
|
<span className="text-sm">Show</span>
|
|
<Select
|
|
value={pageSize.toString()}
|
|
onValueChange={handlePageSizeChange}
|
|
>
|
|
<SelectTrigger className="w-[80px]">
|
|
<SelectValue placeholder={pageSize.toString()} />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="5">5</SelectItem>
|
|
<SelectItem value="10">10</SelectItem>
|
|
<SelectItem value="25">25</SelectItem>
|
|
<SelectItem value="50">50</SelectItem>
|
|
<SelectItem value="100">100</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
<span className="text-sm">entries</span>
|
|
</div>
|
|
|
|
{/* Table */}
|
|
{loading ? (
|
|
<div className="flex justify-center items-center py-8">
|
|
<Loader2 className="h-8 w-8 animate-spin text-primary" />
|
|
</div>
|
|
) : error ? (
|
|
<div className="bg-destructive/10 p-4 rounded-md text-destructive text-center">
|
|
{error}
|
|
</div>
|
|
) : (
|
|
<div className="border rounded-md">
|
|
<Table>
|
|
<TableHeader>
|
|
<TableRow>
|
|
{/* <TableHead className="w-[80px]">ID</TableHead> */}
|
|
<TableHead className="w-[100px]">NIM</TableHead>
|
|
<TableHead>Nama</TableHead>
|
|
<TableHead>Nama Beasiswa</TableHead>
|
|
<TableHead>Sumber Beasiswa</TableHead>
|
|
<TableHead>Jenis Beasiswa</TableHead>
|
|
{/* <TableHead>Tanggal</TableHead> */}
|
|
<TableHead className="text-right">Aksi</TableHead>
|
|
</TableRow>
|
|
</TableHeader>
|
|
<TableBody>
|
|
{paginatedData.length === 0 ? (
|
|
<TableRow>
|
|
<TableCell colSpan={9} className="text-center py-8">
|
|
Tidak ada data yang sesuai dengan filter
|
|
</TableCell>
|
|
</TableRow>
|
|
) : (
|
|
paginatedData.map((beasiswa) => (
|
|
<TableRow key={beasiswa.id_beasiswa}>
|
|
{/* <TableCell>{beasiswa.id_beasiswa}</TableCell> */}
|
|
<TableCell className="font-medium">{beasiswa.nim}</TableCell>
|
|
<TableCell>{beasiswa.nama}</TableCell>
|
|
<TableCell>{beasiswa.nama_beasiswa}</TableCell>
|
|
<TableCell>{beasiswa.sumber_beasiswa}</TableCell>
|
|
<TableCell>
|
|
<span
|
|
className={`px-2 py-1 rounded-full text-xs font-medium ${
|
|
beasiswa.jenis_beasiswa === "Pemerintah"
|
|
? "bg-purple-100 text-purple-800"
|
|
: "bg-orange-100 text-orange-800"
|
|
}`}
|
|
>
|
|
{beasiswa.jenis_beasiswa}
|
|
</span>
|
|
</TableCell>
|
|
<TableCell className="text-right">
|
|
<div className="flex justify-end gap-2">
|
|
<Button
|
|
size="sm"
|
|
variant="outline"
|
|
onClick={() => handleEdit(beasiswa)}
|
|
>
|
|
<Pencil className="h-4 w-4" />
|
|
</Button>
|
|
<Button
|
|
size="sm"
|
|
variant="outline"
|
|
className="text-destructive hover:bg-destructive/10"
|
|
onClick={() => handleDeleteConfirm(beasiswa.id_beasiswa)}
|
|
>
|
|
<Trash2 className="h-4 w-4" />
|
|
</Button>
|
|
</div>
|
|
</TableCell>
|
|
</TableRow>
|
|
))
|
|
)}
|
|
</TableBody>
|
|
</Table>
|
|
</div>
|
|
)}
|
|
|
|
{/* Pagination info and controls */}
|
|
{!loading && !error && filteredData.length > 0 && (
|
|
<div className="flex flex-col sm:flex-row justify-between items-center gap-4">
|
|
<div className="text-sm text-muted-foreground">
|
|
Showing {getDisplayRange().start} to {getDisplayRange().end} of {filteredData.length} entries
|
|
</div>
|
|
<Pagination>
|
|
<PaginationContent>
|
|
<PaginationItem>
|
|
<PaginationPrevious
|
|
onClick={() => handlePageChange(Math.max(1, currentPage - 1))}
|
|
className={currentPage === 1 ? "pointer-events-none opacity-50" : ""}
|
|
/>
|
|
</PaginationItem>
|
|
|
|
{renderPaginationItems()}
|
|
|
|
<PaginationItem>
|
|
<PaginationNext
|
|
onClick={() => handlePageChange(Math.min(getTotalPages(), currentPage + 1))}
|
|
className={currentPage === getTotalPages() ? "pointer-events-none opacity-50" : ""}
|
|
/>
|
|
</PaginationItem>
|
|
</PaginationContent>
|
|
</Pagination>
|
|
</div>
|
|
)}
|
|
|
|
{/* Add/Edit Dialog */}
|
|
<Dialog open={isDialogOpen} onOpenChange={setIsDialogOpen}>
|
|
<DialogContent className="sm:max-w-[600px]">
|
|
<DialogHeader>
|
|
<DialogTitle>
|
|
{formMode === "add" ? "Tambah Beasiswa" : "Edit Beasiswa"}
|
|
</DialogTitle>
|
|
</DialogHeader>
|
|
<form onSubmit={handleSubmit}>
|
|
<div className="grid gap-4 py-4">
|
|
<div className="grid grid-cols-1 sm:grid-cols-2 gap-4">
|
|
<div className="space-y-2">
|
|
<label htmlFor="nim" className="text-sm font-medium">
|
|
NIM <span className="text-destructive">*</span>
|
|
</label>
|
|
<Input
|
|
id="nim"
|
|
name="nim"
|
|
value={formData.nim || ""}
|
|
onChange={handleInputChange}
|
|
required
|
|
maxLength={11}
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<label htmlFor="nama_beasiswa" className="text-sm font-medium">
|
|
Nama Beasiswa <span className="text-destructive">*</span>
|
|
</label>
|
|
<Input
|
|
id="nama_beasiswa"
|
|
name="nama_beasiswa"
|
|
value={formData.nama_beasiswa || ""}
|
|
onChange={handleInputChange}
|
|
required
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<label htmlFor="sumber_beasiswa" className="text-sm font-medium">
|
|
Sumber Beasiswa <span className="text-destructive">*</span>
|
|
</label>
|
|
<Input
|
|
id="sumber_beasiswa"
|
|
name="sumber_beasiswa"
|
|
value={formData.sumber_beasiswa || ""}
|
|
onChange={handleInputChange}
|
|
required
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<label htmlFor="jenis_beasiswa" className="text-sm font-medium">
|
|
Jenis Beasiswa <span className="text-destructive">*</span>
|
|
</label>
|
|
<Select
|
|
value={formData.jenis_beasiswa || "Pemerintah"}
|
|
onValueChange={(value) => handleSelectChange("jenis_beasiswa", value)}
|
|
>
|
|
<SelectTrigger>
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="Pemerintah">Pemerintah</SelectItem>
|
|
<SelectItem value="Non-Pemerintah">Non-Pemerintah</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<DialogFooter>
|
|
<DialogClose asChild>
|
|
<Button type="button" variant="outline">
|
|
Batal
|
|
</Button>
|
|
</DialogClose>
|
|
<Button type="submit" disabled={isSubmitting}>
|
|
{isSubmitting && <Loader2 className="mr-2 h-4 w-4 animate-spin" />}
|
|
{formMode === "add" ? "Tambah" : "Simpan"}
|
|
</Button>
|
|
</DialogFooter>
|
|
</form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
|
|
{/* Delete Confirmation Dialog */}
|
|
<Dialog open={isDeleteDialogOpen} onOpenChange={setIsDeleteDialogOpen}>
|
|
<DialogContent className="sm:max-w-[400px]">
|
|
<DialogHeader>
|
|
<DialogTitle>Konfirmasi Hapus</DialogTitle>
|
|
</DialogHeader>
|
|
<div className="py-4">
|
|
<p>Apakah Anda yakin ingin menghapus data beasiswa ini?</p>
|
|
<p className="text-sm text-muted-foreground mt-1">
|
|
Tindakan ini tidak dapat dibatalkan.
|
|
</p>
|
|
</div>
|
|
<DialogFooter>
|
|
<DialogClose asChild>
|
|
<Button type="button" variant="outline">
|
|
Batal
|
|
</Button>
|
|
</DialogClose>
|
|
<Button
|
|
variant="destructive"
|
|
onClick={handleDelete}
|
|
disabled={isDeleting}
|
|
>
|
|
{isDeleting && <Loader2 className="mr-2 h-4 w-4 animate-spin" />}
|
|
Hapus
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</div>
|
|
);
|
|
}
|