309 lines
8.8 KiB
TypeScript
309 lines
8.8 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import { apiFetch, ApiError, toFormData } from "@/lib/api";
|
|
import { useList } from "@/lib/useResource";
|
|
import { useToast } from "@/components/toast";
|
|
import { DataTable, type Column } from "@/components/DataTable";
|
|
import {
|
|
Button,
|
|
ConfirmDialog,
|
|
Field,
|
|
Input,
|
|
Select,
|
|
Modal,
|
|
PageHeader,
|
|
} from "@/components/ui";
|
|
import { EditIcon, PlusIcon, TrashIcon } from "@/components/icons";
|
|
import { toFa, formatDuration } from "@/lib/utils";
|
|
import { MediaPreview } from "@/components/MediaPreview";
|
|
import { pickUrl, SOUND_KEYS, IMAGE_KEYS } from "@/lib/media";
|
|
|
|
interface Track {
|
|
id: number;
|
|
title?: string;
|
|
artist?: string;
|
|
duration?: number | null;
|
|
type?: string;
|
|
order?: number;
|
|
playlist_id?: number;
|
|
}
|
|
|
|
interface Playlist {
|
|
id: number;
|
|
name?: string;
|
|
}
|
|
|
|
export default function MusicTracksPage() {
|
|
const { data, loading, error, reload } = useList<Track>("/music");
|
|
const { data: playlists } = useList<Playlist>("/music-playlists");
|
|
const toast = useToast();
|
|
|
|
const [editing, setEditing] = useState<Track | null>(null);
|
|
const [open, setOpen] = useState(false);
|
|
const [saving, setSaving] = useState(false);
|
|
|
|
const [title, setTitle] = useState("");
|
|
const [artist, setArtist] = useState("");
|
|
const [type, setType] = useState("");
|
|
const [duration, setDuration] = useState("");
|
|
const [playlistId, setPlaylistId] = useState("");
|
|
const [imageId, setImageId] = useState("");
|
|
const [order, setOrder] = useState("");
|
|
const [file, setFile] = useState<File | null>(null);
|
|
|
|
const [deleting, setDeleting] = useState<Track | null>(null);
|
|
const [removing, setRemoving] = useState(false);
|
|
|
|
function openCreate() {
|
|
setEditing(null);
|
|
setTitle("");
|
|
setArtist("");
|
|
setType("");
|
|
setDuration("");
|
|
setPlaylistId("");
|
|
setImageId("");
|
|
setOrder("");
|
|
setFile(null);
|
|
setOpen(true);
|
|
}
|
|
function openEdit(row: Track) {
|
|
setEditing(row);
|
|
setTitle(row.title ?? "");
|
|
setArtist(row.artist ?? "");
|
|
setType(row.type ?? "");
|
|
setDuration(row.duration != null ? String(row.duration) : "");
|
|
setPlaylistId(row.playlist_id != null ? String(row.playlist_id) : "");
|
|
setImageId("");
|
|
setOrder(row.order != null ? String(row.order) : "");
|
|
setFile(null);
|
|
setOpen(true);
|
|
}
|
|
|
|
async function save(e: React.FormEvent) {
|
|
e.preventDefault();
|
|
setSaving(true);
|
|
try {
|
|
if (editing) {
|
|
// Update is JSON on /music/:id
|
|
await apiFetch(`/music/${editing.id}`, {
|
|
method: "PUT",
|
|
body: {
|
|
title,
|
|
artist,
|
|
order: order === "" ? undefined : Number(order),
|
|
},
|
|
});
|
|
toast.success("آهنگ ویرایش شد.");
|
|
} else {
|
|
// Create is multipart on /music
|
|
await apiFetch("/music", {
|
|
method: "POST",
|
|
body: toFormData({
|
|
title,
|
|
artist,
|
|
type,
|
|
duration,
|
|
playlist_id: playlistId,
|
|
image_id: imageId,
|
|
file,
|
|
}),
|
|
});
|
|
toast.success("آهنگ افزوده شد.");
|
|
}
|
|
setOpen(false);
|
|
reload();
|
|
} catch (err) {
|
|
toast.error(err instanceof ApiError ? err.message : "خطا در ذخیرهسازی");
|
|
} finally {
|
|
setSaving(false);
|
|
}
|
|
}
|
|
|
|
async function confirmDelete() {
|
|
if (!deleting) return;
|
|
setRemoving(true);
|
|
try {
|
|
await apiFetch(`/music/${deleting.id}`, { method: "DELETE" });
|
|
toast.success("آهنگ حذف شد.");
|
|
setDeleting(null);
|
|
reload();
|
|
} catch (err) {
|
|
toast.error(err instanceof ApiError ? err.message : "خطا در حذف");
|
|
} finally {
|
|
setRemoving(false);
|
|
}
|
|
}
|
|
|
|
const columns: Column<Track>[] = [
|
|
{
|
|
key: "play",
|
|
header: "پخش",
|
|
className: "w-20",
|
|
render: (r) => (
|
|
<MediaPreview kind="audio" src={pickUrl(r, SOUND_KEYS)} label={r.title} />
|
|
),
|
|
},
|
|
{
|
|
key: "thumbnail",
|
|
header: "تصویر",
|
|
className: "w-20",
|
|
render: (r) => (
|
|
<MediaPreview kind="image" src={pickUrl(r, IMAGE_KEYS)} label={r.title} />
|
|
),
|
|
},
|
|
{ key: "title", header: "عنوان" },
|
|
{ key: "artist", header: "هنرمند", render: (r) => r.artist ?? "—" },
|
|
{
|
|
key: "duration",
|
|
header: "مدت زمان",
|
|
render: (r) => formatDuration(r.duration),
|
|
},
|
|
{ key: "type", header: "نوع", render: (r) => r.type ?? "—" },
|
|
];
|
|
|
|
return (
|
|
<div>
|
|
<PageHeader
|
|
title="آهنگها"
|
|
subtitle="مدیریت آهنگها و فایلهای صوتی موسیقی"
|
|
action={
|
|
<Button icon={<PlusIcon className="h-4 w-4" />} onClick={openCreate}>
|
|
آهنگ جدید
|
|
</Button>
|
|
}
|
|
/>
|
|
|
|
<DataTable
|
|
columns={columns}
|
|
rows={data}
|
|
loading={loading}
|
|
error={error}
|
|
onRetry={reload}
|
|
emptyMessage="هنوز آهنگی بارگذاری نشده است."
|
|
emptyAction={
|
|
<Button icon={<PlusIcon className="h-4 w-4" />} onClick={openCreate}>
|
|
آهنگ جدید
|
|
</Button>
|
|
}
|
|
actions={(row) => (
|
|
<>
|
|
<Button variant="ghost" onClick={() => openEdit(row)} aria-label="ویرایش">
|
|
<EditIcon className="h-4 w-4" />
|
|
</Button>
|
|
<Button
|
|
variant="ghost"
|
|
onClick={() => setDeleting(row)}
|
|
aria-label="حذف"
|
|
className="text-danger"
|
|
>
|
|
<TrashIcon className="h-4 w-4" />
|
|
</Button>
|
|
</>
|
|
)}
|
|
/>
|
|
|
|
<Modal
|
|
open={open}
|
|
onClose={() => setOpen(false)}
|
|
title={editing ? "ویرایش آهنگ" : "آهنگ جدید"}
|
|
footer={
|
|
<>
|
|
<Button variant="secondary" onClick={() => setOpen(false)}>
|
|
انصراف
|
|
</Button>
|
|
<Button form="track-form" type="submit" loading={saving}>
|
|
ذخیره
|
|
</Button>
|
|
</>
|
|
}
|
|
>
|
|
<form id="track-form" onSubmit={save} className="flex flex-col gap-4">
|
|
<Field label="عنوان" required>
|
|
<Input
|
|
value={title}
|
|
onChange={(e) => setTitle(e.target.value)}
|
|
placeholder="مثلاً آرامش شبانه"
|
|
required
|
|
autoFocus
|
|
/>
|
|
</Field>
|
|
<Field label="هنرمند">
|
|
<Input
|
|
value={artist}
|
|
onChange={(e) => setArtist(e.target.value)}
|
|
placeholder="نام هنرمند"
|
|
/>
|
|
</Field>
|
|
|
|
{editing ? (
|
|
<Field label="ترتیب">
|
|
<Input
|
|
type="number"
|
|
value={order}
|
|
onChange={(e) => setOrder(e.target.value)}
|
|
dir="ltr"
|
|
/>
|
|
</Field>
|
|
) : (
|
|
<>
|
|
<Field label="نوع">
|
|
<Input
|
|
value={type}
|
|
onChange={(e) => setType(e.target.value)}
|
|
placeholder="مثلاً music"
|
|
/>
|
|
</Field>
|
|
<Field label="مدت زمان (ثانیه)">
|
|
<Input
|
|
type="number"
|
|
value={duration}
|
|
onChange={(e) => setDuration(e.target.value)}
|
|
dir="ltr"
|
|
/>
|
|
</Field>
|
|
<Field label="پلیلیست">
|
|
<Select
|
|
value={playlistId}
|
|
onChange={(e) => setPlaylistId(e.target.value)}
|
|
>
|
|
<option value="">انتخاب کنید…</option>
|
|
{playlists.map((p) => (
|
|
<option key={p.id} value={p.id}>
|
|
{p.name ?? `#${p.id}`}
|
|
</option>
|
|
))}
|
|
</Select>
|
|
</Field>
|
|
<Field label="شناسه تصویر">
|
|
<Input
|
|
value={imageId}
|
|
onChange={(e) => setImageId(e.target.value)}
|
|
dir="ltr"
|
|
placeholder="image_id"
|
|
/>
|
|
</Field>
|
|
<Field label="فایل صوتی" required>
|
|
<Input
|
|
type="file"
|
|
accept="audio/*"
|
|
onChange={(e) => setFile(e.target.files?.[0] ?? null)}
|
|
required
|
|
/>
|
|
</Field>
|
|
</>
|
|
)}
|
|
</form>
|
|
</Modal>
|
|
|
|
<ConfirmDialog
|
|
open={!!deleting}
|
|
message={`آیا از حذف «${deleting?.title ?? ""}» مطمئن هستید؟`}
|
|
loading={removing}
|
|
onConfirm={confirmDelete}
|
|
onClose={() => setDeleting(null)}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|