551 lines
19 KiB
TypeScript
551 lines
19 KiB
TypeScript
import { Head, router } from '@inertiajs/react';
|
|
import { format } from 'date-fns';
|
|
import { Plus } from 'lucide-react';
|
|
import { useState } from 'react';
|
|
import type { PaginationState } from '@/components/data-table';
|
|
import { DataTable } from '@/components/data-table';
|
|
import { DeleteConfirmDialog } from '@/components/delete-confirm-dialog';
|
|
import type { FilterField } from '@/components/filter-dialog';
|
|
import { FilterDialog } from '@/components/filter-dialog';
|
|
import { FormDialog } from '@/components/form-dialog';
|
|
import InputError from '@/components/input-error';
|
|
import { PageHeader } from '@/components/page-header';
|
|
import { Button } from '@/components/ui/button';
|
|
import {
|
|
Combobox,
|
|
ComboboxChip,
|
|
ComboboxChips,
|
|
ComboboxChipsInput,
|
|
ComboboxContent,
|
|
ComboboxEmpty,
|
|
ComboboxInput,
|
|
ComboboxItem,
|
|
ComboboxList,
|
|
useComboboxAnchor,
|
|
} from '@/components/ui/combobox';
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from '@/components/ui/dialog';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Label } from '@/components/ui/label';
|
|
import { Textarea } from '@/components/ui/textarea';
|
|
import { usePermissions } from '@/hooks/use-permissions';
|
|
import { useServerTable } from '@/hooks/use-server-table';
|
|
import {
|
|
index as academicAdvisingLogIndex,
|
|
destroy,
|
|
store,
|
|
update,
|
|
} from '@/routes/admin/services/academic-advising-logs';
|
|
import type {
|
|
AcademicAdvisingLog,
|
|
AcademicAdvisingLogLecturer,
|
|
AcademicAdvisingLogStudent,
|
|
} from '@/types/academic-advising-log';
|
|
import { createAcademicAdvisingLogColumns } from './columns';
|
|
|
|
type Props = {
|
|
logs: {
|
|
data: AcademicAdvisingLog[];
|
|
current_page: number;
|
|
last_page: number;
|
|
per_page: number;
|
|
total: number;
|
|
};
|
|
students: AcademicAdvisingLogStudent[];
|
|
lecturers: AcademicAdvisingLogLecturer[];
|
|
highlight?: number;
|
|
filters: {
|
|
lecturer_id?: string;
|
|
};
|
|
};
|
|
|
|
function studentLabel(student: AcademicAdvisingLogStudent): string {
|
|
return `${student.user?.profile?.full_name ?? 'N/A'} - ${student.student_number}`;
|
|
}
|
|
|
|
function lecturerLabel(lecturer: AcademicAdvisingLogLecturer): string {
|
|
return `${lecturer.user?.profile?.full_name ?? 'N/A'} - ${lecturer.lecturer_number}`;
|
|
}
|
|
|
|
export default function AcademicAdvisingLogIndex({
|
|
logs,
|
|
students,
|
|
lecturers,
|
|
highlight,
|
|
filters,
|
|
}: Props) {
|
|
const [createOpen, setCreateOpen] = useState(false);
|
|
const [editing, setEditing] = useState<AcademicAdvisingLog | null>(null);
|
|
const [deleting, setDeleting] = useState<AcademicAdvisingLog | null>(null);
|
|
const [viewing, setViewing] = useState<AcademicAdvisingLog | null>(null);
|
|
const { hasPermission } = usePermissions();
|
|
const canCreate = hasPermission('create-academic-advising-logs');
|
|
const canUpdate = hasPermission('update-academic-advising-logs');
|
|
const canDelete = hasPermission('delete-academic-advising-logs');
|
|
|
|
const filterFields: FilterField[] = [
|
|
{
|
|
key: 'lecturer_id',
|
|
label: 'Dosen',
|
|
options: lecturers.map((lecturer) => ({
|
|
value: String(lecturer.id),
|
|
label: lecturerLabel(lecturer),
|
|
})),
|
|
},
|
|
];
|
|
|
|
const pagination: PaginationState = {
|
|
current_page: logs.current_page,
|
|
last_page: logs.last_page,
|
|
per_page: logs.per_page,
|
|
total: logs.total,
|
|
};
|
|
|
|
const {
|
|
search,
|
|
handlePageChange,
|
|
handlePerPageChange,
|
|
handleSearchChange,
|
|
applyFilters,
|
|
} = useServerTable({
|
|
route: () => academicAdvisingLogIndex.url(),
|
|
pagination,
|
|
filters,
|
|
});
|
|
|
|
function handleDelete() {
|
|
if (!deleting) {
|
|
return;
|
|
}
|
|
|
|
router.delete(destroy(deleting.id), {
|
|
onSuccess: () => setDeleting(null),
|
|
});
|
|
}
|
|
|
|
const columns = createAcademicAdvisingLogColumns({
|
|
handleView: (log) => setViewing(log),
|
|
handleEdit: (log) => setEditing(log),
|
|
handleDeleteClick: (log) => setDeleting(log),
|
|
canUpdate,
|
|
canDelete,
|
|
});
|
|
|
|
return (
|
|
<>
|
|
<Head title="Bimbingan Akademik" />
|
|
|
|
<div className="flex h-full flex-1 flex-col gap-6 overflow-x-auto p-4 md:p-6">
|
|
<PageHeader
|
|
title="Bimbingan Akademik"
|
|
description={
|
|
highlight && (
|
|
<p className="mt-1 text-sm text-muted-foreground">
|
|
Menampilkan log bimbingan dari notifikasi.
|
|
</p>
|
|
)
|
|
}
|
|
actions={
|
|
canCreate && (
|
|
<Button asChild>
|
|
<button
|
|
type="button"
|
|
onClick={() => setCreateOpen(true)}
|
|
>
|
|
<Plus className="h-4 w-4" />
|
|
Tambah
|
|
</button>
|
|
</Button>
|
|
)
|
|
}
|
|
/>
|
|
|
|
<CreateForm
|
|
open={createOpen}
|
|
onOpenChange={setCreateOpen}
|
|
students={students}
|
|
lecturers={lecturers}
|
|
/>
|
|
|
|
<EditForm
|
|
key={editing?.id}
|
|
open={editing !== null}
|
|
onOpenChange={(open) => {
|
|
if (!open) {
|
|
setEditing(null);
|
|
}
|
|
}}
|
|
editing={editing}
|
|
students={students}
|
|
lecturers={lecturers}
|
|
/>
|
|
|
|
<ViewDetailDialog
|
|
open={viewing !== null}
|
|
onOpenChange={(open) => {
|
|
if (!open) {
|
|
setViewing(null);
|
|
}
|
|
}}
|
|
log={viewing}
|
|
/>
|
|
|
|
<DataTable
|
|
columns={columns}
|
|
data={logs.data}
|
|
pagination={pagination}
|
|
onPageChange={handlePageChange}
|
|
onPerPageChange={handlePerPageChange}
|
|
onSearchChange={handleSearchChange}
|
|
searchValue={search}
|
|
searchKey="student"
|
|
toolbar={
|
|
<FilterDialog
|
|
fields={filterFields}
|
|
activeFilters={filters}
|
|
onApply={applyFilters}
|
|
/>
|
|
}
|
|
/>
|
|
|
|
<DeleteConfirmDialog
|
|
target={deleting}
|
|
onOpenChange={(open) => {
|
|
if (!open) {
|
|
setDeleting(null);
|
|
}
|
|
}}
|
|
title="Hapus Log Bimbingan"
|
|
description={(log) =>
|
|
`Apakah Anda yakin ingin menghapus log bimbingan untuk "${log.students.map((s) => s.user?.profile?.full_name ?? 'N/A').join(', ') || 'mahasiswa ini'}"? Tindakan ini tidak dapat dibatalkan.`
|
|
}
|
|
onConfirm={handleDelete}
|
|
/>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
|
|
function ViewDetailDialog({
|
|
open,
|
|
onOpenChange,
|
|
log,
|
|
}: {
|
|
open: boolean;
|
|
onOpenChange: (open: boolean) => void;
|
|
log: AcademicAdvisingLog | null;
|
|
}) {
|
|
return (
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
<DialogContent className="flex max-h-[85vh] flex-col overflow-hidden sm:max-w-lg">
|
|
<DialogHeader className="shrink-0">
|
|
<DialogTitle>Detail Bimbingan Akademik</DialogTitle>
|
|
</DialogHeader>
|
|
|
|
{log && (
|
|
<div className="grid min-h-0 flex-1 gap-4 overflow-x-hidden overflow-y-auto">
|
|
<span className="text-xs text-muted-foreground">
|
|
Dicatat{' '}
|
|
{format(
|
|
new Date(log.created_at),
|
|
'd MMM yyyy, HH:mm',
|
|
)}
|
|
</span>
|
|
|
|
<div className="grid gap-1">
|
|
<Label className="text-muted-foreground">
|
|
Dosen Wali
|
|
</Label>
|
|
<p>
|
|
{log.lecturer?.user?.profile?.full_name ??
|
|
'N/A'}{' '}
|
|
· {log.lecturer?.lecturer_number}
|
|
</p>
|
|
</div>
|
|
|
|
<div className="grid gap-1">
|
|
<Label className="text-muted-foreground">
|
|
Mahasiswa
|
|
</Label>
|
|
{log.students.length === 0 ? (
|
|
<p className="text-muted-foreground">-</p>
|
|
) : (
|
|
<ul className="grid gap-1">
|
|
{log.students.map((student) => (
|
|
<li key={student.id}>
|
|
{student.user?.profile
|
|
?.full_name ?? 'N/A'}{' '}
|
|
· {student.student_number}
|
|
</li>
|
|
))}
|
|
</ul>
|
|
)}
|
|
</div>
|
|
|
|
<div className="grid gap-1">
|
|
<Label className="text-muted-foreground">
|
|
Topik
|
|
</Label>
|
|
<p className="font-medium">{log.topic ?? '-'}</p>
|
|
</div>
|
|
|
|
<div className="grid gap-1">
|
|
<Label className="text-muted-foreground">
|
|
Catatan
|
|
</Label>
|
|
<p className="whitespace-pre-line">
|
|
{log.notes ?? '-'}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|
|
|
|
function AdvisingLogFields({
|
|
errors,
|
|
editing,
|
|
students,
|
|
lecturers,
|
|
}: {
|
|
errors: Record<string, string>;
|
|
editing?: AcademicAdvisingLog;
|
|
students: AcademicAdvisingLogStudent[];
|
|
lecturers: AcademicAdvisingLogLecturer[];
|
|
}) {
|
|
const [lecturer, setLecturer] =
|
|
useState<AcademicAdvisingLogLecturer | null>(editing?.lecturer ?? null);
|
|
const [selectedStudents, setSelectedStudents] = useState<
|
|
AcademicAdvisingLogStudent[]
|
|
>(editing?.students ?? []);
|
|
const studentAnchor = useComboboxAnchor();
|
|
|
|
const availableStudents = lecturer
|
|
? students.filter((s) =>
|
|
lecturer.departments.some(
|
|
(department) => department.id === s.department?.id,
|
|
),
|
|
)
|
|
: [];
|
|
|
|
return (
|
|
<>
|
|
<div className="grid gap-2">
|
|
<Label>
|
|
Dosen Wali <span className="text-destructive">*</span>
|
|
</Label>
|
|
<input
|
|
type="hidden"
|
|
name="lecturer_id"
|
|
value={lecturer?.id ?? ''}
|
|
/>
|
|
<Combobox
|
|
items={lecturers}
|
|
value={lecturer}
|
|
onValueChange={(value) => {
|
|
setLecturer(value);
|
|
setSelectedStudents([]);
|
|
}}
|
|
itemToStringLabel={(l) => lecturerLabel(l)}
|
|
isItemEqualToValue={(a, b) => a.id === b.id}
|
|
>
|
|
<ComboboxInput
|
|
placeholder="Pilih dosen"
|
|
className="w-full"
|
|
/>
|
|
<ComboboxContent>
|
|
<ComboboxEmpty>Dosen tidak ditemukan.</ComboboxEmpty>
|
|
<ComboboxList>
|
|
{(l: AcademicAdvisingLogLecturer) => (
|
|
<ComboboxItem key={l.id} value={l}>
|
|
{lecturerLabel(l)}
|
|
</ComboboxItem>
|
|
)}
|
|
</ComboboxList>
|
|
</ComboboxContent>
|
|
</Combobox>
|
|
<InputError message={errors.lecturer_id} />
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<div className="flex items-center justify-between">
|
|
<Label>
|
|
Mahasiswa <span className="text-destructive">*</span>
|
|
</Label>
|
|
<button
|
|
type="button"
|
|
disabled={!lecturer}
|
|
className="text-xs text-primary underline underline-offset-4 hover:text-primary/80 disabled:pointer-events-none disabled:opacity-50"
|
|
onClick={() =>
|
|
setSelectedStudents(
|
|
selectedStudents.length ===
|
|
availableStudents.length
|
|
? []
|
|
: availableStudents,
|
|
)
|
|
}
|
|
>
|
|
{selectedStudents.length ===
|
|
availableStudents.length &&
|
|
availableStudents.length > 0
|
|
? 'Batalkan Semua'
|
|
: 'Pilih Semua'}
|
|
</button>
|
|
</div>
|
|
{selectedStudents.map((s) => (
|
|
<input
|
|
key={s.id}
|
|
type="hidden"
|
|
name="student_ids[]"
|
|
value={s.id}
|
|
/>
|
|
))}
|
|
<Combobox
|
|
items={availableStudents}
|
|
multiple
|
|
disabled={!lecturer}
|
|
value={selectedStudents}
|
|
onValueChange={setSelectedStudents}
|
|
itemToStringLabel={(s) => studentLabel(s)}
|
|
isItemEqualToValue={(a, b) => a.id === b.id}
|
|
>
|
|
<ComboboxChips ref={studentAnchor}>
|
|
{selectedStudents.map((s) => (
|
|
<ComboboxChip
|
|
key={s.id}
|
|
aria-label={studentLabel(s)}
|
|
>
|
|
{studentLabel(s)}
|
|
</ComboboxChip>
|
|
))}
|
|
<ComboboxChipsInput
|
|
disabled={!lecturer}
|
|
placeholder={
|
|
selectedStudents.length > 0
|
|
? ''
|
|
: lecturer
|
|
? 'Pilih mahasiswa'
|
|
: 'Pilih dosen terlebih dahulu'
|
|
}
|
|
/>
|
|
</ComboboxChips>
|
|
<ComboboxContent anchor={studentAnchor}>
|
|
<ComboboxEmpty>
|
|
Mahasiswa tidak ditemukan.
|
|
</ComboboxEmpty>
|
|
<ComboboxList>
|
|
{(s: AcademicAdvisingLogStudent) => (
|
|
<ComboboxItem key={s.id} value={s}>
|
|
{studentLabel(s)}
|
|
</ComboboxItem>
|
|
)}
|
|
</ComboboxList>
|
|
</ComboboxContent>
|
|
</Combobox>
|
|
<InputError message={errors.student_ids} />
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<Label htmlFor={editing ? 'edit-topic' : 'topic'}>
|
|
Topik <span className="text-destructive">*</span>
|
|
</Label>
|
|
<Input
|
|
id={editing ? 'edit-topic' : 'topic'}
|
|
name="topic"
|
|
placeholder="Masukkan topik bimbingan"
|
|
defaultValue={editing?.topic ?? ''}
|
|
/>
|
|
<InputError message={errors.topic} />
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<Label htmlFor={editing ? 'edit-notes' : 'notes'}>
|
|
Catatan
|
|
</Label>
|
|
<Textarea
|
|
id={editing ? 'edit-notes' : 'notes'}
|
|
name="notes"
|
|
placeholder="Masukkan catatan bimbingan"
|
|
defaultValue={editing?.notes ?? ''}
|
|
/>
|
|
<InputError message={errors.notes} />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
|
|
function CreateForm({
|
|
open,
|
|
onOpenChange,
|
|
students,
|
|
lecturers,
|
|
}: {
|
|
open: boolean;
|
|
onOpenChange: (open: boolean) => void;
|
|
students: AcademicAdvisingLogStudent[];
|
|
lecturers: AcademicAdvisingLogLecturer[];
|
|
}) {
|
|
return (
|
|
<FormDialog
|
|
open={open}
|
|
onOpenChange={onOpenChange}
|
|
title="Tambah Bimbingan Akademik"
|
|
action={store()}
|
|
resetOnSuccess
|
|
onSuccess={() => onOpenChange(false)}
|
|
>
|
|
{({ errors }) => (
|
|
<div className="grid gap-4">
|
|
<AdvisingLogFields
|
|
key={open ? 'open' : 'closed'}
|
|
errors={errors}
|
|
students={students}
|
|
lecturers={lecturers}
|
|
/>
|
|
</div>
|
|
)}
|
|
</FormDialog>
|
|
);
|
|
}
|
|
|
|
function EditForm({
|
|
open,
|
|
onOpenChange,
|
|
editing,
|
|
students,
|
|
lecturers,
|
|
}: {
|
|
open: boolean;
|
|
onOpenChange: (open: boolean) => void;
|
|
editing: AcademicAdvisingLog | null;
|
|
students: AcademicAdvisingLogStudent[];
|
|
lecturers: AcademicAdvisingLogLecturer[];
|
|
}) {
|
|
return (
|
|
<FormDialog
|
|
open={open}
|
|
onOpenChange={onOpenChange}
|
|
title="Edit Bimbingan Akademik"
|
|
action={editing ? update(editing.id) : ''}
|
|
resetOnSuccess
|
|
onSuccess={() => onOpenChange(false)}
|
|
>
|
|
{({ errors }) =>
|
|
editing && (
|
|
<div className="grid gap-4">
|
|
<AdvisingLogFields
|
|
errors={errors}
|
|
editing={editing}
|
|
students={students}
|
|
lecturers={lecturers}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
</FormDialog>
|
|
);
|
|
}
|