Compare commits

..
4 Commits
Author SHA1 Message Date
Amirmahdi 376e3e9473 Merge branch 'main' of http://git.approagency.ir/Amirmahdi/meditation-admin 2026-06-30 14:12:07 +03:30
Amirmahdi 01ad88adf9 fix: slider 2026-06-30 14:09:15 +03:30
Amirmahdi 638d1dad52 fix 2026-06-27 10:28:37 +03:30
Amirmahdi 4ac190f161 fix 2026-06-17 19:33:19 +03:30
3 changed files with 40 additions and 13 deletions
+2 -1
View File
@@ -129,7 +129,8 @@ export default function BreathingPage() {
duration: numOrUndefined(form.duration), duration: numOrUndefined(form.duration),
description: form.description, description: form.description,
image_id: numOrUndefined(form.image_id), image_id: numOrUndefined(form.image_id),
breathing_color_id: breathingColorId ?? undefined, // Send null (not undefined) so choosing "بدون رنگ" actually clears it.
breathing_color_id: breathingColorId,
}; };
if (editing) { if (editing) {
// Update is JSON on /breathing-templates/:id // Update is JSON on /breathing-templates/:id
+17 -1
View File
@@ -88,7 +88,19 @@ export default function CategoriesPage() {
e.preventDefault(); e.preventDefault();
setSaving(true); setSaving(true);
try { try {
// Playlist categories live in the music_categories table, so their writes
// go to /music-categories (image is the `image` field, not `icon`).
const targetType = editing ? editing.type : type;
if (targetType === "playlist") {
const body = toFormData({ name, description, order, image: icon });
if (editing) { if (editing) {
await apiFetch(`/music-categories/${editing.id}`, { method: "POST", body });
toast.success("دسته‌بندی ویرایش شد.");
} else {
await apiFetch("/music-categories", { method: "POST", body });
toast.success("دسته‌بندی افزوده شد.");
}
} else if (editing) {
// Icon is a file, so update goes through POST + Laravel method spoofing. // Icon is a file, so update goes through POST + Laravel method spoofing.
const body = toFormData({ const body = toFormData({
_method: "PUT", _method: "PUT",
@@ -120,7 +132,11 @@ export default function CategoriesPage() {
if (!deleting) return; if (!deleting) return;
setRemoving(true); setRemoving(true);
try { try {
await apiFetch(`/categories/${deleting.id}`, { method: "DELETE" }); const path =
deleting.type === "playlist"
? `/music-categories/${deleting.id}`
: `/categories/${deleting.id}`;
await apiFetch(path, { method: "DELETE" });
toast.success("دسته‌بندی حذف شد."); toast.success("دسته‌بندی حذف شد.");
setDeleting(null); setDeleting(null);
reload(); reload();
+20 -10
View File
@@ -16,10 +16,10 @@ import {
Textarea, Textarea,
} from "@/components/ui"; } from "@/components/ui";
import { EditIcon, PlusIcon, TrashIcon } from "@/components/icons"; import { EditIcon, PlusIcon, TrashIcon } from "@/components/icons";
import { toFa } from "@/lib/utils";
import { MediaPreview } from "@/components/MediaPreview";
import { ImagePicker } from "@/components/ImagePicker"; import { ImagePicker } from "@/components/ImagePicker";
import { MediaPreview } from "@/components/MediaPreview";
import { pickUrl, IMAGE_KEYS } from "@/lib/media"; import { pickUrl, IMAGE_KEYS } from "@/lib/media";
import { toFa } from "@/lib/utils";
interface SliderAction { interface SliderAction {
path?: string; path?: string;
@@ -37,7 +37,7 @@ interface Slider {
} }
const ACTION_TYPES = [ const ACTION_TYPES = [
{ value: "screen", label: "صفحه (screen)" }, { value: "navigation", label: "صفحه (navigation)" },
{ value: "link", label: "لینک (link)" }, { value: "link", label: "لینک (link)" },
]; ];
@@ -51,7 +51,7 @@ export default function SlidersPage() {
const [description, setDescription] = useState(""); const [description, setDescription] = useState("");
const [url, setUrl] = useState(""); const [url, setUrl] = useState("");
const [actionPath, setActionPath] = useState(""); const [actionPath, setActionPath] = useState("");
const [actionType, setActionType] = useState("screen"); const [actionType, setActionType] = useState("navigation");
const [imageId, setImageId] = useState<number | null>(null); const [imageId, setImageId] = useState<number | null>(null);
const [imageFile, setImageFile] = useState<File | null>(null); const [imageFile, setImageFile] = useState<File | null>(null);
const [saving, setSaving] = useState(false); const [saving, setSaving] = useState(false);
@@ -65,7 +65,7 @@ export default function SlidersPage() {
setDescription(""); setDescription("");
setUrl(""); setUrl("");
setActionPath(""); setActionPath("");
setActionType("screen"); setActionType("navigation");
setImageId(null); setImageId(null);
setImageFile(null); setImageFile(null);
setOpen(true); setOpen(true);
@@ -76,7 +76,7 @@ export default function SlidersPage() {
setDescription(row.description ?? ""); setDescription(row.description ?? "");
setUrl(row.url ?? ""); setUrl(row.url ?? "");
setActionPath(row.action?.path ?? ""); setActionPath(row.action?.path ?? "");
setActionType(row.action?.type ?? "screen"); setActionType(row.action?.type ?? "navigation");
setImageId(row.image_id ?? null); setImageId(row.image_id ?? null);
setImageFile(null); setImageFile(null);
setOpen(true); setOpen(true);
@@ -86,9 +86,8 @@ export default function SlidersPage() {
e.preventDefault(); e.preventDefault();
setSaving(true); setSaving(true);
try { try {
// Both create and edit go through multipart (the image is a file). The // Multipart for both (so an image file can be uploaded). Bracket keys
// nested action uses literal bracket keys; edit posts to /slider/:id, // build the nested action object; update uses POST /slider/:id.
// which the backend also accepts as a multipart update.
const body = toFormData({ const body = toFormData({
title, title,
description, description,
@@ -102,6 +101,7 @@ export default function SlidersPage() {
await apiFetch(`/slider/${editing.id}`, { method: "POST", body }); await apiFetch(`/slider/${editing.id}`, { method: "POST", body });
toast.success("اسلایدر ویرایش شد."); toast.success("اسلایدر ویرایش شد.");
} else { } else {
await apiFetch("/slider", { method: "POST", body });
await apiFetch("/slider", { method: "POST", body }); await apiFetch("/slider", { method: "POST", body });
toast.success("اسلایدر افزوده شد."); toast.success("اسلایدر افزوده شد.");
} }
@@ -132,7 +132,7 @@ export default function SlidersPage() {
const columns: Column<Slider>[] = [ const columns: Column<Slider>[] = [
{ key: "id", header: "شناسه", render: (r) => toFa(r.id), className: "w-24" }, { key: "id", header: "شناسه", render: (r) => toFa(r.id), className: "w-24" },
{ {
key: "thumbnail", key: "image",
header: "تصویر", header: "تصویر",
className: "w-20", className: "w-20",
render: (r) => ( render: (r) => (
@@ -236,6 +236,16 @@ export default function SlidersPage() {
/> />
</Field> </Field>
<Field label="تصویر">
<ImagePicker
imageId={imageId}
onPickId={setImageId}
file={imageFile}
onPickFile={setImageFile}
existingUrl={editing ? pickUrl(editing, IMAGE_KEYS) : null}
/>
</Field>
<Field label="توضیحات"> <Field label="توضیحات">
<Textarea <Textarea
value={description} value={description}