Compare commits
12
Commits
7b8b8949b9
...
V1.0.8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1b2d2dec7d | ||
|
|
e374829358 | ||
|
|
7c6d16693c | ||
|
|
3cc1d1385c | ||
|
|
bd71076c72 | ||
|
|
944d3bc00a | ||
|
|
2be0f3e2b8 | ||
|
|
d3089ff2dd | ||
|
|
2f976bade1 | ||
|
|
ef054280bb | ||
|
|
07cbeec816 | ||
|
|
4d67af0bfc |
Executable
+22
@@ -0,0 +1,22 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Runs on `git push`. If a tag ref is among what's being pushed, build locally
|
||||||
|
# and deploy to the server. Normal branch pushes are untouched.
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
deploy=0
|
||||||
|
tag=""
|
||||||
|
while read -r local_ref _local_sha _remote_ref _remote_sha; do
|
||||||
|
case "$local_ref" in
|
||||||
|
refs/tags/*)
|
||||||
|
deploy=1
|
||||||
|
tag="${local_ref#refs/tags/}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ "$deploy" = "1" ]; then
|
||||||
|
echo "→ Tag '$tag' is being pushed — building locally and deploying to the server…"
|
||||||
|
exec "$(git rev-parse --show-toplevel)/scripts/deploy.sh"
|
||||||
|
fi
|
||||||
|
|
||||||
|
exit 0
|
||||||
@@ -39,3 +39,6 @@ yarn-error.log*
|
|||||||
# typescript
|
# typescript
|
||||||
*.tsbuildinfo
|
*.tsbuildinfo
|
||||||
next-env.d.ts
|
next-env.d.ts
|
||||||
|
|
||||||
|
# local deploy secrets
|
||||||
|
.env.deploy
|
||||||
|
|||||||
@@ -0,0 +1,60 @@
|
|||||||
|
# Deployment
|
||||||
|
|
||||||
|
The site is a **static export**. It is built **on your machine** and the result
|
||||||
|
(`out/`) is copied to the server — nothing is built on the server.
|
||||||
|
|
||||||
|
- Server: `185.226.116.88`, user `ubuntu`
|
||||||
|
- Target dir: `/var/www/aramland-admin` (its contents are fully replaced each deploy)
|
||||||
|
|
||||||
|
## Deploy by pushing a git tag (automatic)
|
||||||
|
|
||||||
|
A versioned git hook ([`.githooks/pre-push`](.githooks/pre-push)) runs the local
|
||||||
|
build + upload whenever you push a **tag**:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git tag v1.0.0
|
||||||
|
git push origin v1.0.0 # ← hook builds locally, then uploads to the server
|
||||||
|
```
|
||||||
|
|
||||||
|
Normal branch pushes are unaffected — only tag pushes deploy.
|
||||||
|
|
||||||
|
> The hook path is set via `git config core.hooksPath .githooks` (already configured
|
||||||
|
> in this clone). On a fresh clone, run that once.
|
||||||
|
|
||||||
|
## Deploy manually (no tag)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm run deploy # = bash scripts/deploy.sh : build locally + upload
|
||||||
|
```
|
||||||
|
|
||||||
|
## The password
|
||||||
|
|
||||||
|
Both paths use [`scripts/deploy.sh`](scripts/deploy.sh), which streams `out/` over a
|
||||||
|
single SSH connection. By default **SSH asks for the server password once** per deploy.
|
||||||
|
|
||||||
|
To make it **unattended** (no prompt), provide the password without committing it:
|
||||||
|
|
||||||
|
1. Create `.env.deploy` in the project root (already gitignored):
|
||||||
|
```bash
|
||||||
|
DEPLOY_PASSWORD=your-server-password
|
||||||
|
```
|
||||||
|
2. Install `sshpass` (the only piece that can feed a password to SSH non-interactively):
|
||||||
|
- Linux/WSL: `sudo apt-get install -y sshpass`
|
||||||
|
- macOS: `brew install hudochenkov/sshpass/sshpass`
|
||||||
|
- Windows Git Bash has no sshpass — either deploy from WSL, or just answer the one
|
||||||
|
password prompt.
|
||||||
|
|
||||||
|
Override the host/user/path too if needed (env or `.env.deploy`):
|
||||||
|
`DEPLOY_HOST`, `DEPLOY_USER`, `DEPLOY_PATH`.
|
||||||
|
|
||||||
|
> **More robust option:** set up an SSH **key** (`ssh-copy-id ubuntu@185.226.116.88`).
|
||||||
|
> Then deploys are unattended on any OS with no password or sshpass at all.
|
||||||
|
|
||||||
|
## Notes / troubleshooting
|
||||||
|
|
||||||
|
- **Permission denied** writing the target: the `ubuntu` user must own it →
|
||||||
|
on the server run `sudo chown -R ubuntu:ubuntu /var/www/aramland-admin`.
|
||||||
|
- **Web server:** point nginx's site root at `/var/www/aramland-admin`. The export uses
|
||||||
|
`trailingSlash: true`, so clean URLs resolve to `…/index.html`.
|
||||||
|
- The deploy replaces the directory **contents** (including dotfiles) in place; it does
|
||||||
|
not touch nginx config or sibling folders.
|
||||||
@@ -0,0 +1,195 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useCallback, useEffect, useState } from "react";
|
||||||
|
import { apiFetch, ApiError } from "@/lib/api";
|
||||||
|
import { useToast } from "@/components/toast";
|
||||||
|
import { DataTable, type Column } from "@/components/DataTable";
|
||||||
|
import { Button, Card, ConfirmDialog, PageHeader } from "@/components/ui";
|
||||||
|
import { TrashIcon } from "@/components/icons";
|
||||||
|
import { toFa } from "@/lib/utils";
|
||||||
|
|
||||||
|
interface Feedback {
|
||||||
|
id: number;
|
||||||
|
stars?: number | null;
|
||||||
|
content?: string | null;
|
||||||
|
created_at?: string;
|
||||||
|
user?: {
|
||||||
|
name?: string | null;
|
||||||
|
identifier?: string | null;
|
||||||
|
mobile?: string | null;
|
||||||
|
} | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Summary {
|
||||||
|
total: number;
|
||||||
|
rated: number;
|
||||||
|
with_comment: number;
|
||||||
|
average_stars: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AdminResponse {
|
||||||
|
summary: Summary;
|
||||||
|
feedback: { data: Feedback[] };
|
||||||
|
}
|
||||||
|
|
||||||
|
function Stars({ value }: { value?: number | null }) {
|
||||||
|
if (!value) return <span className="text-muted">—</span>;
|
||||||
|
return (
|
||||||
|
<span className="text-amber-500" dir="ltr" title={toFa(value)}>
|
||||||
|
{"★".repeat(value)}
|
||||||
|
<span className="text-border">{"★".repeat(5 - value)}</span>
|
||||||
|
</span>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function userName(u: Feedback["user"]): string {
|
||||||
|
return u?.name || u?.identifier || u?.mobile || "—";
|
||||||
|
}
|
||||||
|
|
||||||
|
function faDate(value?: string): string {
|
||||||
|
if (!value) return "—";
|
||||||
|
try {
|
||||||
|
return toFa(new Date(value).toLocaleDateString("fa-IR"));
|
||||||
|
} catch {
|
||||||
|
return "—";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function AppFeedbackPage() {
|
||||||
|
const toast = useToast();
|
||||||
|
|
||||||
|
const [rows, setRows] = useState<Feedback[]>([]);
|
||||||
|
const [summary, setSummary] = useState<Summary | null>(null);
|
||||||
|
const [loading, setLoading] = useState(true);
|
||||||
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
|
||||||
|
const [deleting, setDeleting] = useState<Feedback | null>(null);
|
||||||
|
const [removing, setRemoving] = useState(false);
|
||||||
|
|
||||||
|
// Fetch without touching state synchronously (safe to call from an effect).
|
||||||
|
const fetchFeedback = useCallback(() => {
|
||||||
|
return apiFetch<AdminResponse>("/admin/app-feedback")
|
||||||
|
.then((res) => {
|
||||||
|
setRows(res.feedback?.data ?? []);
|
||||||
|
setSummary(res.summary ?? null);
|
||||||
|
setError(null);
|
||||||
|
})
|
||||||
|
.catch((e: unknown) =>
|
||||||
|
setError(e instanceof ApiError ? e.message : "خطا در دریافت اطلاعات"),
|
||||||
|
)
|
||||||
|
.finally(() => setLoading(false));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
// Reload triggered by user actions (retry / after delete): show the spinner.
|
||||||
|
const reload = useCallback(() => {
|
||||||
|
setLoading(true);
|
||||||
|
setError(null);
|
||||||
|
fetchFeedback();
|
||||||
|
}, [fetchFeedback]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
fetchFeedback();
|
||||||
|
}, [fetchFeedback]);
|
||||||
|
|
||||||
|
async function confirmDelete() {
|
||||||
|
if (!deleting) return;
|
||||||
|
setRemoving(true);
|
||||||
|
try {
|
||||||
|
await apiFetch(`/admin/app-feedback/${deleting.id}`, { method: "DELETE" });
|
||||||
|
toast.success("بازخورد حذف شد.");
|
||||||
|
setDeleting(null);
|
||||||
|
reload();
|
||||||
|
} catch (err) {
|
||||||
|
toast.error(err instanceof ApiError ? err.message : "خطا در حذف");
|
||||||
|
} finally {
|
||||||
|
setRemoving(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const columns: Column<Feedback>[] = [
|
||||||
|
{ key: "id", header: "شناسه", render: (r) => toFa(r.id), className: "w-20" },
|
||||||
|
{ key: "user", header: "کاربر", render: (r) => userName(r.user) },
|
||||||
|
{
|
||||||
|
key: "stars",
|
||||||
|
header: "امتیاز",
|
||||||
|
className: "w-28",
|
||||||
|
render: (r) => <Stars value={r.stars} />,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "content",
|
||||||
|
header: "ایده / نظر",
|
||||||
|
render: (r) => r.content || <span className="text-muted">—</span>,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "created_at",
|
||||||
|
header: "تاریخ",
|
||||||
|
className: "w-32",
|
||||||
|
render: (r) => faDate(r.created_at),
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<PageHeader
|
||||||
|
title="نظرات و ایدهها"
|
||||||
|
subtitle="بازخورد کاربران درباره برنامه"
|
||||||
|
/>
|
||||||
|
|
||||||
|
{summary && (
|
||||||
|
<div className="mb-6 grid grid-cols-2 gap-3 sm:grid-cols-4">
|
||||||
|
<Card>
|
||||||
|
<p className="text-sm text-muted">میانگین امتیاز</p>
|
||||||
|
<p className="mt-1 text-2xl font-bold text-foreground">
|
||||||
|
{toFa(summary.average_stars)} <span className="text-amber-500">★</span>
|
||||||
|
</p>
|
||||||
|
</Card>
|
||||||
|
<Card>
|
||||||
|
<p className="text-sm text-muted">کل بازخوردها</p>
|
||||||
|
<p className="mt-1 text-2xl font-bold text-foreground">
|
||||||
|
{toFa(summary.total)}
|
||||||
|
</p>
|
||||||
|
</Card>
|
||||||
|
<Card>
|
||||||
|
<p className="text-sm text-muted">دارای امتیاز</p>
|
||||||
|
<p className="mt-1 text-2xl font-bold text-foreground">
|
||||||
|
{toFa(summary.rated)}
|
||||||
|
</p>
|
||||||
|
</Card>
|
||||||
|
<Card>
|
||||||
|
<p className="text-sm text-muted">دارای نظر</p>
|
||||||
|
<p className="mt-1 text-2xl font-bold text-foreground">
|
||||||
|
{toFa(summary.with_comment)}
|
||||||
|
</p>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<DataTable
|
||||||
|
columns={columns}
|
||||||
|
rows={rows}
|
||||||
|
loading={loading}
|
||||||
|
error={error}
|
||||||
|
onRetry={reload}
|
||||||
|
emptyMessage="هنوز بازخوردی ثبت نشده است."
|
||||||
|
actions={(row) => (
|
||||||
|
<Button
|
||||||
|
variant="ghost"
|
||||||
|
onClick={() => setDeleting(row)}
|
||||||
|
aria-label="حذف"
|
||||||
|
className="text-danger"
|
||||||
|
>
|
||||||
|
<TrashIcon className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<ConfirmDialog
|
||||||
|
open={!!deleting}
|
||||||
|
message={`آیا از حذف بازخورد «${userName(deleting?.user)}» مطمئن هستید؟`}
|
||||||
|
loading={removing}
|
||||||
|
onConfirm={confirmDelete}
|
||||||
|
onClose={() => setDeleting(null)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,286 @@
|
|||||||
|
"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,
|
||||||
|
Textarea,
|
||||||
|
Modal,
|
||||||
|
PageHeader,
|
||||||
|
} from "@/components/ui";
|
||||||
|
import { EditIcon, PlusIcon, TrashIcon } from "@/components/icons";
|
||||||
|
import { MediaPreview } from "@/components/MediaPreview";
|
||||||
|
import { pickUrl } from "@/lib/media";
|
||||||
|
import { toFa } from "@/lib/utils";
|
||||||
|
|
||||||
|
type CategoryType = "media" | "playlist" | "breathing_template";
|
||||||
|
|
||||||
|
interface Category {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
type: CategoryType;
|
||||||
|
description?: string | null;
|
||||||
|
icon?: string | null;
|
||||||
|
subcategories_count?: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
// General category types, shared across media, playlists and breathing templates.
|
||||||
|
const TYPE_OPTIONS: { value: CategoryType; label: string }[] = [
|
||||||
|
{ value: "media", label: "رسانه" },
|
||||||
|
{ value: "playlist", label: "پلیلیست" },
|
||||||
|
{ value: "breathing_template", label: "قالب تنفس" },
|
||||||
|
];
|
||||||
|
|
||||||
|
const TYPE_LABELS: Record<CategoryType, string> = Object.fromEntries(
|
||||||
|
TYPE_OPTIONS.map((o) => [o.value, o.label]),
|
||||||
|
) as Record<CategoryType, string>;
|
||||||
|
|
||||||
|
// The icon is a direct image-file field on the category (not an image_id ref).
|
||||||
|
const ICON_KEYS = ["icon", "icon_url"];
|
||||||
|
|
||||||
|
export default function CategoriesPage() {
|
||||||
|
const [typeFilter, setTypeFilter] = useState<CategoryType>("media");
|
||||||
|
const { data, loading, error, reload } = useList<Category>("/categories", {
|
||||||
|
type: typeFilter,
|
||||||
|
});
|
||||||
|
const toast = useToast();
|
||||||
|
|
||||||
|
const [editing, setEditing] = useState<Category | null>(null);
|
||||||
|
const [open, setOpen] = useState(false);
|
||||||
|
const [name, setName] = useState("");
|
||||||
|
const [type, setType] = useState<CategoryType>("media");
|
||||||
|
const [description, setDescription] = useState("");
|
||||||
|
const [icon, setIcon] = useState<File | null>(null);
|
||||||
|
const [saving, setSaving] = useState(false);
|
||||||
|
|
||||||
|
const [deleting, setDeleting] = useState<Category | null>(null);
|
||||||
|
const [removing, setRemoving] = useState(false);
|
||||||
|
|
||||||
|
function openCreate() {
|
||||||
|
setEditing(null);
|
||||||
|
setName("");
|
||||||
|
setType(typeFilter);
|
||||||
|
setDescription("");
|
||||||
|
setIcon(null);
|
||||||
|
setOpen(true);
|
||||||
|
}
|
||||||
|
function openEdit(row: Category) {
|
||||||
|
setEditing(row);
|
||||||
|
setName(row.name ?? "");
|
||||||
|
setType(row.type ?? "media");
|
||||||
|
setDescription(row.description ?? "");
|
||||||
|
setIcon(null);
|
||||||
|
setOpen(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function save(e: React.FormEvent) {
|
||||||
|
e.preventDefault();
|
||||||
|
setSaving(true);
|
||||||
|
try {
|
||||||
|
if (editing) {
|
||||||
|
// Icon is a file, so update goes through POST + Laravel method spoofing.
|
||||||
|
const body = toFormData({
|
||||||
|
_method: "PUT",
|
||||||
|
name,
|
||||||
|
type,
|
||||||
|
description,
|
||||||
|
icon,
|
||||||
|
});
|
||||||
|
await apiFetch(`/categories/${editing.id}`, { method: "POST", body });
|
||||||
|
toast.success("دستهبندی ویرایش شد.");
|
||||||
|
} else {
|
||||||
|
await apiFetch("/categories", {
|
||||||
|
method: "POST",
|
||||||
|
body: toFormData({ name, type, description, icon }),
|
||||||
|
});
|
||||||
|
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(`/categories/${deleting.id}`, { method: "DELETE" });
|
||||||
|
toast.success("دستهبندی حذف شد.");
|
||||||
|
setDeleting(null);
|
||||||
|
reload();
|
||||||
|
} catch (err) {
|
||||||
|
toast.error(err instanceof ApiError ? err.message : "خطا در حذف");
|
||||||
|
} finally {
|
||||||
|
setRemoving(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const columns: Column<Category>[] = [
|
||||||
|
{
|
||||||
|
key: "icon",
|
||||||
|
header: "آیکن",
|
||||||
|
className: "w-20",
|
||||||
|
render: (r) => (
|
||||||
|
<MediaPreview kind="image" src={pickUrl(r, ICON_KEYS)} label={r.name} />
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{ key: "name", header: "نام دستهبندی" },
|
||||||
|
{
|
||||||
|
key: "type",
|
||||||
|
header: "نوع",
|
||||||
|
render: (r) => TYPE_LABELS[r.type] ?? r.type,
|
||||||
|
className: "w-28",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "description",
|
||||||
|
header: "توضیحات",
|
||||||
|
render: (r) => r.description || "—",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "subcategories_count",
|
||||||
|
header: "زیردستهها",
|
||||||
|
render: (r) => toFa(r.subcategories_count ?? 0),
|
||||||
|
className: "w-28",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<PageHeader
|
||||||
|
title="دستهبندیها"
|
||||||
|
subtitle="مدیریت دستهبندیهای عمومی رسانه، پلیلیست و قالب تنفس"
|
||||||
|
action={
|
||||||
|
<div className="flex items-center gap-3">
|
||||||
|
<Select
|
||||||
|
value={typeFilter}
|
||||||
|
onChange={(e) => setTypeFilter(e.target.value as CategoryType)}
|
||||||
|
aria-label="نوع دستهبندی"
|
||||||
|
className="w-40"
|
||||||
|
>
|
||||||
|
{TYPE_OPTIONS.map((o) => (
|
||||||
|
<option key={o.value} value={o.value}>
|
||||||
|
{o.label}
|
||||||
|
</option>
|
||||||
|
))}
|
||||||
|
</Select>
|
||||||
|
<Button icon={<PlusIcon className="h-4 w-4" />} onClick={openCreate}>
|
||||||
|
دستهبندی جدید
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<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="category-form" type="submit" loading={saving}>
|
||||||
|
ذخیره
|
||||||
|
</Button>
|
||||||
|
</>
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<form id="category-form" onSubmit={save} className="flex flex-col gap-4">
|
||||||
|
<Field label="نوع" required>
|
||||||
|
<Select
|
||||||
|
value={type}
|
||||||
|
onChange={(e) => setType(e.target.value as CategoryType)}
|
||||||
|
>
|
||||||
|
{TYPE_OPTIONS.map((o) => (
|
||||||
|
<option key={o.value} value={o.value}>
|
||||||
|
{o.label}
|
||||||
|
</option>
|
||||||
|
))}
|
||||||
|
</Select>
|
||||||
|
</Field>
|
||||||
|
|
||||||
|
<Field label="نام دستهبندی" required>
|
||||||
|
<Input
|
||||||
|
value={name}
|
||||||
|
onChange={(e) => setName(e.target.value)}
|
||||||
|
placeholder="مثلاً کودکان"
|
||||||
|
required
|
||||||
|
autoFocus
|
||||||
|
/>
|
||||||
|
</Field>
|
||||||
|
|
||||||
|
<Field label="توضیحات">
|
||||||
|
<Textarea
|
||||||
|
value={description}
|
||||||
|
onChange={(e) => setDescription(e.target.value)}
|
||||||
|
placeholder="توضیح کوتاه درباره این دستهبندی"
|
||||||
|
/>
|
||||||
|
</Field>
|
||||||
|
|
||||||
|
<Field
|
||||||
|
label="آیکن"
|
||||||
|
hint={
|
||||||
|
editing
|
||||||
|
? "در صورت عدم انتخاب، آیکن فعلی حفظ میشود."
|
||||||
|
: "یک تصویر برای نمایش دستهبندی انتخاب کنید."
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<Input
|
||||||
|
type="file"
|
||||||
|
accept="image/*"
|
||||||
|
onChange={(e) => setIcon(e.target.files?.[0] ?? null)}
|
||||||
|
/>
|
||||||
|
</Field>
|
||||||
|
</form>
|
||||||
|
</Modal>
|
||||||
|
|
||||||
|
<ConfirmDialog
|
||||||
|
open={!!deleting}
|
||||||
|
message={`آیا از حذف «${deleting?.name}» مطمئن هستید؟`}
|
||||||
|
loading={removing}
|
||||||
|
onConfirm={confirmDelete}
|
||||||
|
onClose={() => setDeleting(null)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,238 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useState } from "react";
|
||||||
|
import { apiFetch, ApiError } from "@/lib/api";
|
||||||
|
import { useList } from "@/lib/useResource";
|
||||||
|
import { useToast } from "@/components/toast";
|
||||||
|
import { DataTable, type Column } from "@/components/DataTable";
|
||||||
|
import {
|
||||||
|
Badge,
|
||||||
|
Button,
|
||||||
|
ConfirmDialog,
|
||||||
|
Field,
|
||||||
|
Input,
|
||||||
|
Textarea,
|
||||||
|
Switch,
|
||||||
|
Modal,
|
||||||
|
PageHeader,
|
||||||
|
} from "@/components/ui";
|
||||||
|
import { EditIcon, PlusIcon, TrashIcon } from "@/components/icons";
|
||||||
|
import { toFa } from "@/lib/utils";
|
||||||
|
|
||||||
|
interface ChatTopic {
|
||||||
|
id: number;
|
||||||
|
title?: string;
|
||||||
|
description?: string | null;
|
||||||
|
order?: number | null;
|
||||||
|
is_active?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function ChatTopicsPage() {
|
||||||
|
const { data, loading, error, reload } = useList<ChatTopic>("/chat-topics");
|
||||||
|
const toast = useToast();
|
||||||
|
|
||||||
|
const [editing, setEditing] = useState<ChatTopic | null>(null);
|
||||||
|
const [open, setOpen] = useState(false);
|
||||||
|
const [saving, setSaving] = useState(false);
|
||||||
|
|
||||||
|
const [title, setTitle] = useState("");
|
||||||
|
const [description, setDescription] = useState("");
|
||||||
|
const [order, setOrder] = useState("");
|
||||||
|
const [isActive, setIsActive] = useState(true);
|
||||||
|
|
||||||
|
const [deleting, setDeleting] = useState<ChatTopic | null>(null);
|
||||||
|
const [removing, setRemoving] = useState(false);
|
||||||
|
|
||||||
|
function openCreate() {
|
||||||
|
setEditing(null);
|
||||||
|
setTitle("");
|
||||||
|
setDescription("");
|
||||||
|
setOrder("");
|
||||||
|
setIsActive(true);
|
||||||
|
setOpen(true);
|
||||||
|
}
|
||||||
|
function openEdit(row: ChatTopic) {
|
||||||
|
setEditing(row);
|
||||||
|
setTitle(row.title ?? "");
|
||||||
|
setDescription(row.description ?? "");
|
||||||
|
setOrder(row.order != null ? String(row.order) : "");
|
||||||
|
setIsActive(row.is_active ?? true);
|
||||||
|
setOpen(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function save(e: React.FormEvent) {
|
||||||
|
e.preventDefault();
|
||||||
|
setSaving(true);
|
||||||
|
try {
|
||||||
|
// chat-topics is a JSON apiResource (no files).
|
||||||
|
const payload = {
|
||||||
|
title,
|
||||||
|
description: description || null,
|
||||||
|
order: order === "" ? null : Number(order),
|
||||||
|
is_active: isActive,
|
||||||
|
};
|
||||||
|
if (editing) {
|
||||||
|
await apiFetch(`/chat-topics/${editing.id}`, {
|
||||||
|
method: "PUT",
|
||||||
|
body: payload,
|
||||||
|
});
|
||||||
|
toast.success("موضوع ویرایش شد.");
|
||||||
|
} else {
|
||||||
|
await apiFetch("/chat-topics", { method: "POST", body: payload });
|
||||||
|
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(`/chat-topics/${deleting.id}`, { method: "DELETE" });
|
||||||
|
toast.success("موضوع حذف شد.");
|
||||||
|
setDeleting(null);
|
||||||
|
reload();
|
||||||
|
} catch (err) {
|
||||||
|
toast.error(err instanceof ApiError ? err.message : "خطا در حذف");
|
||||||
|
} finally {
|
||||||
|
setRemoving(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const columns: Column<ChatTopic>[] = [
|
||||||
|
{ key: "id", header: "شناسه", render: (r) => toFa(r.id), className: "w-20" },
|
||||||
|
{ key: "title", header: "عنوان", render: (r) => r.title ?? "—" },
|
||||||
|
{
|
||||||
|
key: "description",
|
||||||
|
header: "توضیحات",
|
||||||
|
render: (r) => r.description || "—",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "order",
|
||||||
|
header: "ترتیب",
|
||||||
|
render: (r) => toFa(r.order ?? "—"),
|
||||||
|
className: "w-20",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "is_active",
|
||||||
|
header: "وضعیت",
|
||||||
|
render: (r) =>
|
||||||
|
r.is_active ? (
|
||||||
|
<Badge tone="success">فعال</Badge>
|
||||||
|
) : (
|
||||||
|
<Badge tone="neutral">غیرفعال</Badge>
|
||||||
|
),
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
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="chat-topic-form" type="submit" loading={saving}>
|
||||||
|
ذخیره
|
||||||
|
</Button>
|
||||||
|
</>
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<form id="chat-topic-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="توضیحات">
|
||||||
|
<Textarea
|
||||||
|
value={description}
|
||||||
|
onChange={(e) => setDescription(e.target.value)}
|
||||||
|
placeholder="توضیح اختیاری درباره موضوع"
|
||||||
|
/>
|
||||||
|
</Field>
|
||||||
|
|
||||||
|
<Field label="ترتیب">
|
||||||
|
<Input
|
||||||
|
type="number"
|
||||||
|
dir="ltr"
|
||||||
|
value={order}
|
||||||
|
onChange={(e) => setOrder(e.target.value)}
|
||||||
|
placeholder="مثلاً ۱"
|
||||||
|
/>
|
||||||
|
</Field>
|
||||||
|
|
||||||
|
<Field label="وضعیت">
|
||||||
|
<Switch
|
||||||
|
checked={isActive}
|
||||||
|
onChange={setIsActive}
|
||||||
|
label={isActive ? "فعال" : "غیرفعال"}
|
||||||
|
/>
|
||||||
|
</Field>
|
||||||
|
</form>
|
||||||
|
</Modal>
|
||||||
|
|
||||||
|
<ConfirmDialog
|
||||||
|
open={!!deleting}
|
||||||
|
message={`آیا از حذف «${deleting?.title ?? ""}» مطمئن هستید؟`}
|
||||||
|
loading={removing}
|
||||||
|
onConfirm={confirmDelete}
|
||||||
|
onClose={() => setDeleting(null)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -5,6 +5,7 @@ import { useRouter } from "next/navigation";
|
|||||||
import { useAuth } from "@/lib/auth";
|
import { useAuth } from "@/lib/auth";
|
||||||
import { Sidebar } from "@/components/Sidebar";
|
import { Sidebar } from "@/components/Sidebar";
|
||||||
import { Spinner, Button } from "@/components/ui";
|
import { Spinner, Button } from "@/components/ui";
|
||||||
|
import { ThemeToggle } from "@/components/ThemeToggle";
|
||||||
import { LogoutIcon, MenuIcon, CloseIcon } from "@/components/icons";
|
import { LogoutIcon, MenuIcon, CloseIcon } from "@/components/icons";
|
||||||
|
|
||||||
export default function DashboardLayout({
|
export default function DashboardLayout({
|
||||||
@@ -64,6 +65,7 @@ export default function DashboardLayout({
|
|||||||
{mobileOpen ? <CloseIcon /> : <MenuIcon />}
|
{mobileOpen ? <CloseIcon /> : <MenuIcon />}
|
||||||
</button>
|
</button>
|
||||||
<div className="flex-1" />
|
<div className="flex-1" />
|
||||||
|
<ThemeToggle />
|
||||||
<Button variant="ghost" icon={<LogoutIcon className="h-4 w-4" />} onClick={onLogout}>
|
<Button variant="ghost" icon={<LogoutIcon className="h-4 w-4" />} onClick={onLogout}>
|
||||||
خروج
|
خروج
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
@@ -1,173 +0,0 @@
|
|||||||
"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,
|
|
||||||
Modal,
|
|
||||||
PageHeader,
|
|
||||||
} from "@/components/ui";
|
|
||||||
import { EditIcon, PlusIcon, TrashIcon } from "@/components/icons";
|
|
||||||
import { toFa } from "@/lib/utils";
|
|
||||||
|
|
||||||
interface Category {
|
|
||||||
id: number;
|
|
||||||
name: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function MediaCategoriesPage() {
|
|
||||||
const { data, loading, error, reload } = useList<Category>("/categories");
|
|
||||||
const toast = useToast();
|
|
||||||
|
|
||||||
const [editing, setEditing] = useState<Category | null>(null);
|
|
||||||
const [open, setOpen] = useState(false);
|
|
||||||
const [name, setName] = useState("");
|
|
||||||
const [saving, setSaving] = useState(false);
|
|
||||||
|
|
||||||
const [deleting, setDeleting] = useState<Category | null>(null);
|
|
||||||
const [removing, setRemoving] = useState(false);
|
|
||||||
|
|
||||||
function openCreate() {
|
|
||||||
setEditing(null);
|
|
||||||
setName("");
|
|
||||||
setOpen(true);
|
|
||||||
}
|
|
||||||
function openEdit(row: Category) {
|
|
||||||
setEditing(row);
|
|
||||||
setName(row.name);
|
|
||||||
setOpen(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function save(e: React.FormEvent) {
|
|
||||||
e.preventDefault();
|
|
||||||
setSaving(true);
|
|
||||||
try {
|
|
||||||
if (editing) {
|
|
||||||
// Update is JSON on /categories/:id
|
|
||||||
await apiFetch(`/categories/${editing.id}`, {
|
|
||||||
method: "PUT",
|
|
||||||
body: { name },
|
|
||||||
});
|
|
||||||
toast.success("دستهبندی ویرایش شد.");
|
|
||||||
} else {
|
|
||||||
// Create is multipart on /categories
|
|
||||||
await apiFetch("/categories", {
|
|
||||||
method: "POST",
|
|
||||||
body: toFormData({ name }),
|
|
||||||
});
|
|
||||||
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(`/categories/${deleting.id}`, { method: "DELETE" });
|
|
||||||
toast.success("دستهبندی حذف شد.");
|
|
||||||
setDeleting(null);
|
|
||||||
reload();
|
|
||||||
} catch (err) {
|
|
||||||
toast.error(err instanceof ApiError ? err.message : "خطا در حذف");
|
|
||||||
} finally {
|
|
||||||
setRemoving(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const columns: Column<Category>[] = [
|
|
||||||
{ key: "id", header: "شناسه", render: (r) => toFa(r.id), className: "w-24" },
|
|
||||||
{ key: "name", header: "نام دستهبندی" },
|
|
||||||
];
|
|
||||||
|
|
||||||
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="category-form" type="submit" loading={saving}>
|
|
||||||
ذخیره
|
|
||||||
</Button>
|
|
||||||
</>
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<form id="category-form" onSubmit={save}>
|
|
||||||
<Field label="نام دستهبندی" required>
|
|
||||||
<Input
|
|
||||||
value={name}
|
|
||||||
onChange={(e) => setName(e.target.value)}
|
|
||||||
placeholder="مثلاً کودکان"
|
|
||||||
required
|
|
||||||
autoFocus
|
|
||||||
/>
|
|
||||||
</Field>
|
|
||||||
</form>
|
|
||||||
</Modal>
|
|
||||||
|
|
||||||
<ConfirmDialog
|
|
||||||
open={!!deleting}
|
|
||||||
message={`آیا از حذف «${deleting?.name}» مطمئن هستید؟`}
|
|
||||||
loading={removing}
|
|
||||||
onConfirm={confirmDelete}
|
|
||||||
onClose={() => setDeleting(null)}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -10,6 +10,7 @@ import {
|
|||||||
ConfirmDialog,
|
ConfirmDialog,
|
||||||
Field,
|
Field,
|
||||||
Input,
|
Input,
|
||||||
|
Textarea,
|
||||||
Select,
|
Select,
|
||||||
Switch,
|
Switch,
|
||||||
Modal,
|
Modal,
|
||||||
@@ -17,7 +18,7 @@ import {
|
|||||||
Badge,
|
Badge,
|
||||||
} from "@/components/ui";
|
} from "@/components/ui";
|
||||||
import { EditIcon, PlusIcon, TrashIcon } from "@/components/icons";
|
import { EditIcon, PlusIcon, TrashIcon } from "@/components/icons";
|
||||||
import { formatMinutes } from "@/lib/utils";
|
import { formatMinutes, fileNameToTitle } from "@/lib/utils";
|
||||||
import { MediaPreview } from "@/components/MediaPreview";
|
import { MediaPreview } from "@/components/MediaPreview";
|
||||||
import { ImagePicker } from "@/components/ImagePicker";
|
import { ImagePicker } from "@/components/ImagePicker";
|
||||||
import { pickUrl, SOUND_KEYS, VIDEO_KEYS, IMAGE_KEYS } from "@/lib/media";
|
import { pickUrl, SOUND_KEYS, VIDEO_KEYS, IMAGE_KEYS } from "@/lib/media";
|
||||||
@@ -41,6 +42,9 @@ interface Media {
|
|||||||
is_premium?: boolean;
|
is_premium?: boolean;
|
||||||
external_url?: string | null;
|
external_url?: string | null;
|
||||||
image_id?: number | null;
|
image_id?: number | null;
|
||||||
|
image?: unknown;
|
||||||
|
detail_image_id?: number | null;
|
||||||
|
detail_image?: unknown;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Compact multi-select rendered as toggle chips.
|
// Compact multi-select rendered as toggle chips.
|
||||||
@@ -81,7 +85,9 @@ function ChipMultiSelect({
|
|||||||
export default function MediaPage() {
|
export default function MediaPage() {
|
||||||
const [search, setSearch] = useState("");
|
const [search, setSearch] = useState("");
|
||||||
const { data, loading, error, reload } = useList<Media>("/media", { search });
|
const { data, loading, error, reload } = useList<Media>("/media", { search });
|
||||||
const { data: categories } = useList<Category>("/categories");
|
const { data: categories } = useList<Category>("/categories", {
|
||||||
|
type: "media",
|
||||||
|
});
|
||||||
const { data: subCategories } = useList<Category>("/sub-categories");
|
const { data: subCategories } = useList<Category>("/sub-categories");
|
||||||
const toast = useToast();
|
const toast = useToast();
|
||||||
|
|
||||||
@@ -101,6 +107,8 @@ export default function MediaPage() {
|
|||||||
const [externalUrl, setExternalUrl] = useState("");
|
const [externalUrl, setExternalUrl] = useState("");
|
||||||
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 [detailImageId, setDetailImageId] = useState<number | null>(null);
|
||||||
|
const [detailImageFile, setDetailImageFile] = useState<File | null>(null);
|
||||||
|
|
||||||
const [deleting, setDeleting] = useState<Media | null>(null);
|
const [deleting, setDeleting] = useState<Media | null>(null);
|
||||||
const [removing, setRemoving] = useState(false);
|
const [removing, setRemoving] = useState(false);
|
||||||
@@ -118,6 +126,8 @@ export default function MediaPage() {
|
|||||||
setExternalUrl("");
|
setExternalUrl("");
|
||||||
setImageId(null);
|
setImageId(null);
|
||||||
setImageFile(null);
|
setImageFile(null);
|
||||||
|
setDetailImageId(null);
|
||||||
|
setDetailImageFile(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
function openCreate() {
|
function openCreate() {
|
||||||
@@ -142,6 +152,8 @@ export default function MediaPage() {
|
|||||||
setExternalUrl(row.external_url ?? "");
|
setExternalUrl(row.external_url ?? "");
|
||||||
setImageId(row.image_id ?? null);
|
setImageId(row.image_id ?? null);
|
||||||
setImageFile(null);
|
setImageFile(null);
|
||||||
|
setDetailImageId(row.detail_image_id ?? null);
|
||||||
|
setDetailImageFile(null);
|
||||||
setOpen(true);
|
setOpen(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -166,6 +178,8 @@ export default function MediaPage() {
|
|||||||
external_url: externalUrl,
|
external_url: externalUrl,
|
||||||
image_id: imageId,
|
image_id: imageId,
|
||||||
image: imageFile,
|
image: imageFile,
|
||||||
|
detail_image_id: detailImageId,
|
||||||
|
detail_image: detailImageFile,
|
||||||
});
|
});
|
||||||
if (editing) {
|
if (editing) {
|
||||||
// File-bearing update: POST /media/:id (multipart, file optional)
|
// File-bearing update: POST /media/:id (multipart, file optional)
|
||||||
@@ -328,14 +342,14 @@ export default function MediaPage() {
|
|||||||
</Field>
|
</Field>
|
||||||
|
|
||||||
<Field label="توضیحات">
|
<Field label="توضیحات">
|
||||||
<Input
|
<Textarea
|
||||||
value={caption}
|
value={caption}
|
||||||
onChange={(e) => setCaption(e.target.value)}
|
onChange={(e) => setCaption(e.target.value)}
|
||||||
placeholder="توضیح کوتاه"
|
placeholder="توضیح کوتاه"
|
||||||
/>
|
/>
|
||||||
</Field>
|
</Field>
|
||||||
|
|
||||||
<Field label="تصویر شاخص" hint="انتخاب از کتابخانه یا بارگذاری تصویر جدید">
|
<Field label="تصویر لیست" hint="در فهرست نمایش داده میشود">
|
||||||
<ImagePicker
|
<ImagePicker
|
||||||
imageId={imageId}
|
imageId={imageId}
|
||||||
onPickId={setImageId}
|
onPickId={setImageId}
|
||||||
@@ -345,6 +359,16 @@ export default function MediaPage() {
|
|||||||
/>
|
/>
|
||||||
</Field>
|
</Field>
|
||||||
|
|
||||||
|
<Field label="تصویر جزئیات" hint="در صفحه جزئیات نمایش داده میشود">
|
||||||
|
<ImagePicker
|
||||||
|
imageId={detailImageId}
|
||||||
|
onPickId={setDetailImageId}
|
||||||
|
file={detailImageFile}
|
||||||
|
onPickFile={setDetailImageFile}
|
||||||
|
existingUrl={editing ? pickUrl(editing, ["detail_image"]) : null}
|
||||||
|
/>
|
||||||
|
</Field>
|
||||||
|
|
||||||
<Field label="دستهبندیها">
|
<Field label="دستهبندیها">
|
||||||
<ChipMultiSelect
|
<ChipMultiSelect
|
||||||
options={categories}
|
options={categories}
|
||||||
@@ -375,7 +399,12 @@ export default function MediaPage() {
|
|||||||
<Input
|
<Input
|
||||||
type="file"
|
type="file"
|
||||||
accept="audio/*,video/*"
|
accept="audio/*,video/*"
|
||||||
onChange={(e) => setFile(e.target.files?.[0] ?? null)}
|
onChange={(e) => {
|
||||||
|
const f = e.target.files?.[0] ?? null;
|
||||||
|
setFile(f);
|
||||||
|
// Fill the title from the file name if still empty.
|
||||||
|
if (f && !title.trim()) setTitle(fileNameToTitle(f.name));
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</Field>
|
</Field>
|
||||||
|
|
||||||
|
|||||||
@@ -15,12 +15,19 @@ import {
|
|||||||
PageHeader,
|
PageHeader,
|
||||||
} from "@/components/ui";
|
} from "@/components/ui";
|
||||||
import { EditIcon, PlusIcon, TrashIcon } from "@/components/icons";
|
import { EditIcon, PlusIcon, TrashIcon } from "@/components/icons";
|
||||||
|
import { ImagePicker } from "@/components/ImagePicker";
|
||||||
|
import { MediaPreview } from "@/components/MediaPreview";
|
||||||
|
import { pickUrl, IMAGE_KEYS } from "@/lib/media";
|
||||||
import { toFa } from "@/lib/utils";
|
import { toFa } from "@/lib/utils";
|
||||||
|
|
||||||
interface Playlist {
|
interface Playlist {
|
||||||
id: number;
|
id: number;
|
||||||
name?: string;
|
name?: string;
|
||||||
description?: string;
|
description?: string;
|
||||||
|
image_id?: number | null;
|
||||||
|
image?: unknown;
|
||||||
|
detail_image_id?: number | null;
|
||||||
|
detail_image?: unknown;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface MusicCategory {
|
interface MusicCategory {
|
||||||
@@ -42,6 +49,10 @@ export default function MusicPlaylistsPage() {
|
|||||||
const [description, setDescription] = useState("");
|
const [description, setDescription] = useState("");
|
||||||
const [categoryIds, setCategoryIds] = useState<number[]>([]);
|
const [categoryIds, setCategoryIds] = useState<number[]>([]);
|
||||||
const [subcategoryIds, setSubcategoryIds] = useState<number[]>([]);
|
const [subcategoryIds, setSubcategoryIds] = useState<number[]>([]);
|
||||||
|
const [imageId, setImageId] = useState<number | null>(null);
|
||||||
|
const [imageFile, setImageFile] = useState<File | null>(null);
|
||||||
|
const [detailImageId, setDetailImageId] = useState<number | null>(null);
|
||||||
|
const [detailImageFile, setDetailImageFile] = useState<File | null>(null);
|
||||||
|
|
||||||
const [deleting, setDeleting] = useState<Playlist | null>(null);
|
const [deleting, setDeleting] = useState<Playlist | null>(null);
|
||||||
const [removing, setRemoving] = useState(false);
|
const [removing, setRemoving] = useState(false);
|
||||||
@@ -56,6 +67,10 @@ export default function MusicPlaylistsPage() {
|
|||||||
setDescription("");
|
setDescription("");
|
||||||
setCategoryIds([]);
|
setCategoryIds([]);
|
||||||
setSubcategoryIds([]);
|
setSubcategoryIds([]);
|
||||||
|
setImageId(null);
|
||||||
|
setImageFile(null);
|
||||||
|
setDetailImageId(null);
|
||||||
|
setDetailImageFile(null);
|
||||||
setOpen(true);
|
setOpen(true);
|
||||||
}
|
}
|
||||||
function openEdit(row: Playlist) {
|
function openEdit(row: Playlist) {
|
||||||
@@ -64,6 +79,10 @@ export default function MusicPlaylistsPage() {
|
|||||||
setDescription(row.description ?? "");
|
setDescription(row.description ?? "");
|
||||||
setCategoryIds([]);
|
setCategoryIds([]);
|
||||||
setSubcategoryIds([]);
|
setSubcategoryIds([]);
|
||||||
|
setImageId(row.image_id ?? null);
|
||||||
|
setImageFile(null);
|
||||||
|
setDetailImageId(row.detail_image_id ?? null);
|
||||||
|
setDetailImageFile(null);
|
||||||
setOpen(true);
|
setOpen(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -72,10 +91,17 @@ export default function MusicPlaylistsPage() {
|
|||||||
setSaving(true);
|
setSaving(true);
|
||||||
try {
|
try {
|
||||||
if (editing) {
|
if (editing) {
|
||||||
// Update is JSON on /music-playlists/:id
|
// Update is multipart (POST) so an image file can be uploaded.
|
||||||
await apiFetch(`/music-playlists/${editing.id}`, {
|
await apiFetch(`/music-playlists/${editing.id}`, {
|
||||||
method: "PUT",
|
method: "POST",
|
||||||
body: { name, description },
|
body: toFormData({
|
||||||
|
name,
|
||||||
|
description,
|
||||||
|
image_id: imageId,
|
||||||
|
image: imageFile,
|
||||||
|
detail_image_id: detailImageId,
|
||||||
|
detail_image: detailImageFile,
|
||||||
|
}),
|
||||||
});
|
});
|
||||||
toast.success("پلیلیست ویرایش شد.");
|
toast.success("پلیلیست ویرایش شد.");
|
||||||
} else {
|
} else {
|
||||||
@@ -87,6 +113,10 @@ export default function MusicPlaylistsPage() {
|
|||||||
description,
|
description,
|
||||||
category_ids: categoryIds,
|
category_ids: categoryIds,
|
||||||
subcategory_ids: subcategoryIds,
|
subcategory_ids: subcategoryIds,
|
||||||
|
image_id: imageId,
|
||||||
|
image: imageFile,
|
||||||
|
detail_image_id: detailImageId,
|
||||||
|
detail_image: detailImageFile,
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
toast.success("پلیلیست افزوده شد.");
|
toast.success("پلیلیست افزوده شد.");
|
||||||
@@ -117,6 +147,14 @@ export default function MusicPlaylistsPage() {
|
|||||||
|
|
||||||
const columns: Column<Playlist>[] = [
|
const columns: Column<Playlist>[] = [
|
||||||
{ key: "id", header: "شناسه", render: (r) => toFa(r.id), className: "w-24" },
|
{ key: "id", header: "شناسه", render: (r) => toFa(r.id), className: "w-24" },
|
||||||
|
{
|
||||||
|
key: "image",
|
||||||
|
header: "تصویر",
|
||||||
|
className: "w-20",
|
||||||
|
render: (r) => (
|
||||||
|
<MediaPreview kind="image" src={pickUrl(r, IMAGE_KEYS)} label={r.name} />
|
||||||
|
),
|
||||||
|
},
|
||||||
{ key: "name", header: "نام" },
|
{ key: "name", header: "نام" },
|
||||||
{
|
{
|
||||||
key: "description",
|
key: "description",
|
||||||
@@ -199,6 +237,26 @@ export default function MusicPlaylistsPage() {
|
|||||||
/>
|
/>
|
||||||
</Field>
|
</Field>
|
||||||
|
|
||||||
|
<Field label="تصویر لیست">
|
||||||
|
<ImagePicker
|
||||||
|
imageId={imageId}
|
||||||
|
onPickId={setImageId}
|
||||||
|
file={imageFile}
|
||||||
|
onPickFile={setImageFile}
|
||||||
|
existingUrl={editing ? pickUrl(editing, IMAGE_KEYS) : null}
|
||||||
|
/>
|
||||||
|
</Field>
|
||||||
|
|
||||||
|
<Field label="تصویر جزئیات">
|
||||||
|
<ImagePicker
|
||||||
|
imageId={detailImageId}
|
||||||
|
onPickId={setDetailImageId}
|
||||||
|
file={detailImageFile}
|
||||||
|
onPickFile={setDetailImageFile}
|
||||||
|
existingUrl={editing ? pickUrl(editing, ["detail_image"]) : null}
|
||||||
|
/>
|
||||||
|
</Field>
|
||||||
|
|
||||||
{!editing && (
|
{!editing && (
|
||||||
<>
|
<>
|
||||||
<Field label="دستهبندیها">
|
<Field label="دستهبندیها">
|
||||||
|
|||||||
@@ -15,11 +15,19 @@ import {
|
|||||||
PageHeader,
|
PageHeader,
|
||||||
} from "@/components/ui";
|
} from "@/components/ui";
|
||||||
import { EditIcon, PlusIcon, TrashIcon } from "@/components/icons";
|
import { EditIcon, PlusIcon, TrashIcon } from "@/components/icons";
|
||||||
import { formatMinutes } from "@/lib/utils";
|
import { formatMinutes, fileNameToTitle } from "@/lib/utils";
|
||||||
import { MediaPreview } from "@/components/MediaPreview";
|
import { MediaPreview } from "@/components/MediaPreview";
|
||||||
import { ImagePicker } from "@/components/ImagePicker";
|
import { ImagePicker } from "@/components/ImagePicker";
|
||||||
import { pickUrl, SOUND_KEYS, IMAGE_KEYS } from "@/lib/media";
|
import { pickUrl, SOUND_KEYS, IMAGE_KEYS } from "@/lib/media";
|
||||||
|
|
||||||
|
interface Playlist {
|
||||||
|
id: number;
|
||||||
|
name?: string;
|
||||||
|
// Some endpoints nest the playlist's sub-categories; key casing varies.
|
||||||
|
subcategories?: Playlist[];
|
||||||
|
subCategories?: Playlist[];
|
||||||
|
}
|
||||||
|
|
||||||
interface Track {
|
interface Track {
|
||||||
id: number;
|
id: number;
|
||||||
title?: string;
|
title?: string;
|
||||||
@@ -28,11 +36,12 @@ interface Track {
|
|||||||
type?: string;
|
type?: string;
|
||||||
playlist_id?: number;
|
playlist_id?: number;
|
||||||
image_id?: number | null;
|
image_id?: number | null;
|
||||||
}
|
// A track belongs to many playlists; the /music row embeds them as an array.
|
||||||
|
playlists?: Playlist[];
|
||||||
interface Playlist {
|
// Sub-categories may also be embedded directly on the track (key casing varies).
|
||||||
id: number;
|
subcategories?: Playlist[];
|
||||||
name?: string;
|
subCategories?: Playlist[];
|
||||||
|
sub_categories?: Playlist[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function MusicTracksPage() {
|
export default function MusicTracksPage() {
|
||||||
@@ -56,6 +65,26 @@ export default function MusicTracksPage() {
|
|||||||
const [deleting, setDeleting] = useState<Track | null>(null);
|
const [deleting, setDeleting] = useState<Track | null>(null);
|
||||||
const [removing, setRemoving] = useState(false);
|
const [removing, setRemoving] = useState(false);
|
||||||
|
|
||||||
|
// A track belongs to many playlists — list their names.
|
||||||
|
function playlistName(r: Track): string {
|
||||||
|
const names = (r.playlists ?? []).map((p) => p.name).filter(Boolean);
|
||||||
|
return names.length ? (names as string[]).join("، ") : "—";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Sub-categories may sit on the track directly or come through its playlists;
|
||||||
|
// key casing varies between endpoints, so gather from every shape.
|
||||||
|
function subCategoryNames(r: Track): string {
|
||||||
|
const subs: Playlist[] = [
|
||||||
|
...(r.subcategories ?? r.subCategories ?? r.sub_categories ?? []),
|
||||||
|
...(r.playlists ?? []).flatMap(
|
||||||
|
(p) => p.subcategories ?? p.subCategories ?? [],
|
||||||
|
),
|
||||||
|
];
|
||||||
|
const names = subs.map((s) => s.name).filter(Boolean) as string[];
|
||||||
|
const unique = Array.from(new Set(names));
|
||||||
|
return unique.length ? unique.join("، ") : "—";
|
||||||
|
}
|
||||||
|
|
||||||
function resetForm() {
|
function resetForm() {
|
||||||
setTitle("");
|
setTitle("");
|
||||||
setArtist("");
|
setArtist("");
|
||||||
@@ -163,6 +192,16 @@ export default function MusicTracksPage() {
|
|||||||
},
|
},
|
||||||
{ key: "title", header: "عنوان" },
|
{ key: "title", header: "عنوان" },
|
||||||
{ key: "artist", header: "هنرمند", render: (r) => r.artist ?? "—" },
|
{ key: "artist", header: "هنرمند", render: (r) => r.artist ?? "—" },
|
||||||
|
{
|
||||||
|
key: "playlist",
|
||||||
|
header: "پلیلیست",
|
||||||
|
render: (r) => playlistName(r),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "subcategory",
|
||||||
|
header: "زیردسته",
|
||||||
|
render: (r) => subCategoryNames(r),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
key: "duration",
|
key: "duration",
|
||||||
header: "مدت زمان",
|
header: "مدت زمان",
|
||||||
@@ -301,7 +340,12 @@ export default function MusicTracksPage() {
|
|||||||
<Input
|
<Input
|
||||||
type="file"
|
type="file"
|
||||||
accept="audio/*"
|
accept="audio/*"
|
||||||
onChange={(e) => setFile(e.target.files?.[0] ?? null)}
|
onChange={(e) => {
|
||||||
|
const f = e.target.files?.[0] ?? null;
|
||||||
|
setFile(f);
|
||||||
|
// Fill the title from the file name if still empty.
|
||||||
|
if (f && !title.trim()) setTitle(fileNameToTitle(f.name));
|
||||||
|
}}
|
||||||
required={!editing}
|
required={!editing}
|
||||||
/>
|
/>
|
||||||
</Field>
|
</Field>
|
||||||
|
|||||||
@@ -20,10 +20,17 @@ import { toFa } from "@/lib/utils";
|
|||||||
interface Question {
|
interface Question {
|
||||||
id: number;
|
id: number;
|
||||||
title?: string;
|
title?: string;
|
||||||
category?: string;
|
// Submitted as a string (name); returned by the API as a related object.
|
||||||
|
category?: { id?: number; name?: string } | string | null;
|
||||||
tags?: string[] | string;
|
tags?: string[] | string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function categoryName(c: Question["category"]): string {
|
||||||
|
if (!c) return "";
|
||||||
|
if (typeof c === "string") return c;
|
||||||
|
return c.name ?? "";
|
||||||
|
}
|
||||||
|
|
||||||
function asTags(value: Question["tags"]): string[] {
|
function asTags(value: Question["tags"]): string[] {
|
||||||
if (Array.isArray(value)) return value.map((t) => String(t));
|
if (Array.isArray(value)) return value.map((t) => String(t));
|
||||||
if (typeof value === "string" && value.trim() !== "") {
|
if (typeof value === "string" && value.trim() !== "") {
|
||||||
@@ -73,7 +80,7 @@ export default function QuestionsPage() {
|
|||||||
function openEdit(row: Question) {
|
function openEdit(row: Question) {
|
||||||
setEditing(row);
|
setEditing(row);
|
||||||
setTitle(row.title ?? "");
|
setTitle(row.title ?? "");
|
||||||
setCategory(row.category ?? "");
|
setCategory(categoryName(row.category));
|
||||||
setTagsInput(asTags(row.tags).join("، "));
|
setTagsInput(asTags(row.tags).join("، "));
|
||||||
setOpen(true);
|
setOpen(true);
|
||||||
}
|
}
|
||||||
@@ -125,7 +132,7 @@ export default function QuestionsPage() {
|
|||||||
const columns: Column<Question>[] = [
|
const columns: Column<Question>[] = [
|
||||||
{ key: "id", header: "شناسه", render: (r) => toFa(r.id), className: "w-20" },
|
{ key: "id", header: "شناسه", render: (r) => toFa(r.id), className: "w-20" },
|
||||||
{ key: "title", header: "عنوان", render: (r) => r.title ?? "—" },
|
{ key: "title", header: "عنوان", render: (r) => r.title ?? "—" },
|
||||||
{ key: "category", header: "دسته", render: (r) => r.category ?? "—" },
|
{ key: "category", header: "دسته", render: (r) => categoryName(r.category) || "—" },
|
||||||
{
|
{
|
||||||
key: "tags",
|
key: "tags",
|
||||||
header: "برچسبها",
|
header: "برچسبها",
|
||||||
|
|||||||
+20
-2
@@ -10,6 +10,7 @@ import {
|
|||||||
ConfirmDialog,
|
ConfirmDialog,
|
||||||
Field,
|
Field,
|
||||||
Input,
|
Input,
|
||||||
|
Textarea,
|
||||||
Select,
|
Select,
|
||||||
Modal,
|
Modal,
|
||||||
PageHeader,
|
PageHeader,
|
||||||
@@ -25,6 +26,7 @@ interface Category {
|
|||||||
interface SubCategory {
|
interface SubCategory {
|
||||||
id: number;
|
id: number;
|
||||||
name?: string;
|
name?: string;
|
||||||
|
description?: string | null;
|
||||||
category_id?: number;
|
category_id?: number;
|
||||||
category?: { id?: number; name?: string };
|
category?: { id?: number; name?: string };
|
||||||
}
|
}
|
||||||
@@ -39,6 +41,7 @@ export default function SubCategoriesPage() {
|
|||||||
const [saving, setSaving] = useState(false);
|
const [saving, setSaving] = useState(false);
|
||||||
|
|
||||||
const [name, setName] = useState("");
|
const [name, setName] = useState("");
|
||||||
|
const [description, setDescription] = useState("");
|
||||||
const [categoryId, setCategoryId] = useState("");
|
const [categoryId, setCategoryId] = useState("");
|
||||||
|
|
||||||
const [deleting, setDeleting] = useState<SubCategory | null>(null);
|
const [deleting, setDeleting] = useState<SubCategory | null>(null);
|
||||||
@@ -47,6 +50,7 @@ export default function SubCategoriesPage() {
|
|||||||
function openCreate() {
|
function openCreate() {
|
||||||
setEditing(null);
|
setEditing(null);
|
||||||
setName("");
|
setName("");
|
||||||
|
setDescription("");
|
||||||
setCategoryId("");
|
setCategoryId("");
|
||||||
setOpen(true);
|
setOpen(true);
|
||||||
}
|
}
|
||||||
@@ -54,6 +58,7 @@ export default function SubCategoriesPage() {
|
|||||||
function openEdit(row: SubCategory) {
|
function openEdit(row: SubCategory) {
|
||||||
setEditing(row);
|
setEditing(row);
|
||||||
setName(row.name ?? "");
|
setName(row.name ?? "");
|
||||||
|
setDescription(row.description ?? "");
|
||||||
setCategoryId(
|
setCategoryId(
|
||||||
row.category_id != null
|
row.category_id != null
|
||||||
? String(row.category_id)
|
? String(row.category_id)
|
||||||
@@ -72,14 +77,14 @@ export default function SubCategoriesPage() {
|
|||||||
// Update is JSON on /sub-categories/:id
|
// Update is JSON on /sub-categories/:id
|
||||||
await apiFetch(`/sub-categories/${editing.id}`, {
|
await apiFetch(`/sub-categories/${editing.id}`, {
|
||||||
method: "PUT",
|
method: "PUT",
|
||||||
body: { name, category_id: categoryId },
|
body: { name, category_id: categoryId, description },
|
||||||
});
|
});
|
||||||
toast.success("زیردسته ویرایش شد.");
|
toast.success("زیردسته ویرایش شد.");
|
||||||
} else {
|
} else {
|
||||||
// Create is multipart on /sub-categories
|
// Create is multipart on /sub-categories
|
||||||
await apiFetch("/sub-categories", {
|
await apiFetch("/sub-categories", {
|
||||||
method: "POST",
|
method: "POST",
|
||||||
body: toFormData({ category_id: categoryId, name }),
|
body: toFormData({ category_id: categoryId, name, description }),
|
||||||
});
|
});
|
||||||
toast.success("زیردسته افزوده شد.");
|
toast.success("زیردسته افزوده شد.");
|
||||||
}
|
}
|
||||||
@@ -115,6 +120,11 @@ export default function SubCategoriesPage() {
|
|||||||
header: "دستهبندی والد",
|
header: "دستهبندی والد",
|
||||||
render: (r) => r.category?.name ?? "—",
|
render: (r) => r.category?.name ?? "—",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: "description",
|
||||||
|
header: "توضیحات",
|
||||||
|
render: (r) => r.description || "—",
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -202,6 +212,14 @@ export default function SubCategoriesPage() {
|
|||||||
autoFocus
|
autoFocus
|
||||||
/>
|
/>
|
||||||
</Field>
|
</Field>
|
||||||
|
|
||||||
|
<Field label="توضیحات">
|
||||||
|
<Textarea
|
||||||
|
value={description}
|
||||||
|
onChange={(e) => setDescription(e.target.value)}
|
||||||
|
placeholder="توضیح کوتاه درباره این زیردسته"
|
||||||
|
/>
|
||||||
|
</Field>
|
||||||
</form>
|
</form>
|
||||||
</Modal>
|
</Modal>
|
||||||
|
|
||||||
@@ -20,9 +20,21 @@ import {
|
|||||||
import { EditIcon, PlusIcon, TrashIcon } from "@/components/icons";
|
import { EditIcon, PlusIcon, TrashIcon } from "@/components/icons";
|
||||||
import { toFa } from "@/lib/utils";
|
import { toFa } from "@/lib/utils";
|
||||||
|
|
||||||
|
interface SurveyTag {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
}
|
||||||
|
|
||||||
interface SurveyOption {
|
interface SurveyOption {
|
||||||
id?: number;
|
id?: number;
|
||||||
label?: string;
|
label?: string;
|
||||||
|
tags?: SurveyTag[];
|
||||||
|
}
|
||||||
|
|
||||||
|
// Form-side option: tags edited as a comma-separated string.
|
||||||
|
interface OptionDraft {
|
||||||
|
label: string;
|
||||||
|
tags: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface SurveyQuestion {
|
interface SurveyQuestion {
|
||||||
@@ -54,7 +66,9 @@ export default function SurveysPage() {
|
|||||||
const [type, setType] = useState("single");
|
const [type, setType] = useState("single");
|
||||||
const [order, setOrder] = useState("0");
|
const [order, setOrder] = useState("0");
|
||||||
const [isActive, setIsActive] = useState(true);
|
const [isActive, setIsActive] = useState(true);
|
||||||
const [options, setOptions] = useState<string[]>([""]);
|
const [options, setOptions] = useState<OptionDraft[]>([
|
||||||
|
{ label: "", tags: "" },
|
||||||
|
]);
|
||||||
|
|
||||||
const [deleting, setDeleting] = useState<SurveyQuestion | null>(null);
|
const [deleting, setDeleting] = useState<SurveyQuestion | null>(null);
|
||||||
const [removing, setRemoving] = useState(false);
|
const [removing, setRemoving] = useState(false);
|
||||||
@@ -66,7 +80,7 @@ export default function SurveysPage() {
|
|||||||
setType("single");
|
setType("single");
|
||||||
setOrder("0");
|
setOrder("0");
|
||||||
setIsActive(true);
|
setIsActive(true);
|
||||||
setOptions([""]);
|
setOptions([{ label: "", tags: "" }]);
|
||||||
setOpen(true);
|
setOpen(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -79,17 +93,22 @@ export default function SurveysPage() {
|
|||||||
setIsActive(row.is_active ?? true);
|
setIsActive(row.is_active ?? true);
|
||||||
setOptions(
|
setOptions(
|
||||||
row.options && row.options.length
|
row.options && row.options.length
|
||||||
? row.options.map((o) => o.label ?? "")
|
? row.options.map((o) => ({
|
||||||
: [""],
|
label: o.label ?? "",
|
||||||
|
tags: (o.tags ?? []).map((t) => t.name).join("، "),
|
||||||
|
}))
|
||||||
|
: [{ label: "", tags: "" }],
|
||||||
);
|
);
|
||||||
setOpen(true);
|
setOpen(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
function setOptionAt(index: number, value: string) {
|
function setOptionAt(index: number, patch: Partial<OptionDraft>) {
|
||||||
setOptions((prev) => prev.map((o, i) => (i === index ? value : o)));
|
setOptions((prev) =>
|
||||||
|
prev.map((o, i) => (i === index ? { ...o, ...patch } : o)),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
function addOption() {
|
function addOption() {
|
||||||
setOptions((prev) => [...prev, ""]);
|
setOptions((prev) => [...prev, { label: "", tags: "" }]);
|
||||||
}
|
}
|
||||||
function removeOption(index: number) {
|
function removeOption(index: number) {
|
||||||
setOptions((prev) =>
|
setOptions((prev) =>
|
||||||
@@ -108,9 +127,15 @@ export default function SurveysPage() {
|
|||||||
order: Number(order),
|
order: Number(order),
|
||||||
is_active: isActive,
|
is_active: isActive,
|
||||||
options: options
|
options: options
|
||||||
.map((label) => label.trim())
|
.map((o) => ({ label: o.label.trim(), tagsRaw: o.tags }))
|
||||||
.filter((label) => label !== "")
|
.filter((o) => o.label !== "")
|
||||||
.map((label) => ({ label })),
|
.map((o) => ({
|
||||||
|
label: o.label,
|
||||||
|
tags: o.tagsRaw
|
||||||
|
.split(/[,،]/)
|
||||||
|
.map((t) => t.trim())
|
||||||
|
.filter((t) => t !== ""),
|
||||||
|
})),
|
||||||
};
|
};
|
||||||
if (editing) {
|
if (editing) {
|
||||||
await apiFetch(`/survey-questions/${editing.id}`, {
|
await apiFetch(`/survey-questions/${editing.id}`, {
|
||||||
@@ -283,12 +308,22 @@ export default function SurveysPage() {
|
|||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
{options.map((opt, i) => (
|
{options.map((opt, i) => (
|
||||||
<div key={i} className="flex items-center gap-2">
|
<div
|
||||||
<Input
|
key={i}
|
||||||
value={opt}
|
className="flex items-start gap-2 rounded-lg border border-border p-2"
|
||||||
onChange={(e) => setOptionAt(i, e.target.value)}
|
>
|
||||||
placeholder={`گزینه ${toFa(i + 1)}`}
|
<div className="flex flex-1 flex-col gap-2">
|
||||||
/>
|
<Input
|
||||||
|
value={opt.label}
|
||||||
|
onChange={(e) => setOptionAt(i, { label: e.target.value })}
|
||||||
|
placeholder={`گزینه ${toFa(i + 1)}`}
|
||||||
|
/>
|
||||||
|
<Input
|
||||||
|
value={opt.tags}
|
||||||
|
onChange={(e) => setOptionAt(i, { tags: e.target.value })}
|
||||||
|
placeholder="برچسبها (با کاما جدا کنید) — برای پیشنهاد محتوا"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<Button
|
<Button
|
||||||
type="button"
|
type="button"
|
||||||
variant="ghost"
|
variant="ghost"
|
||||||
|
|||||||
+29
-1
@@ -1,10 +1,15 @@
|
|||||||
@import "tailwindcss";
|
@import "tailwindcss";
|
||||||
|
|
||||||
|
/* Enable class-based dark mode (toggle a `.dark` class on <html>). */
|
||||||
|
@custom-variant dark (&:where(.dark, .dark *));
|
||||||
|
|
||||||
/* Persian admin theme — calm meditation palette, RTL-first. */
|
/* Persian admin theme — calm meditation palette, RTL-first. */
|
||||||
:root {
|
:root {
|
||||||
|
color-scheme: light;
|
||||||
--background: #f4f6fb;
|
--background: #f4f6fb;
|
||||||
--surface: #ffffff;
|
--surface: #ffffff;
|
||||||
--surface-muted: #eef1f8;
|
--surface-muted: #eef1f8;
|
||||||
|
--surface-hover: #e2e6f2;
|
||||||
--foreground: #1f2433;
|
--foreground: #1f2433;
|
||||||
--muted: #6b7390;
|
--muted: #6b7390;
|
||||||
--border: #e1e5f0;
|
--border: #e1e5f0;
|
||||||
@@ -14,12 +19,34 @@
|
|||||||
--danger: #e25b6e;
|
--danger: #e25b6e;
|
||||||
--success: #2fb583;
|
--success: #2fb583;
|
||||||
--ring: rgba(91, 110, 225, 0.35);
|
--ring: rgba(91, 110, 225, 0.35);
|
||||||
|
--switch-off: #cdd3e6;
|
||||||
|
--scroll-thumb: #cdd3e6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dark {
|
||||||
|
color-scheme: dark;
|
||||||
|
--background: #0f1320;
|
||||||
|
--surface: #181d2e;
|
||||||
|
--surface-muted: #222840;
|
||||||
|
--surface-hover: #2c3450;
|
||||||
|
--foreground: #e7eaf3;
|
||||||
|
--muted: #97a0bd;
|
||||||
|
--border: #2c3450;
|
||||||
|
--primary: #6f7ff0;
|
||||||
|
--primary-hover: #5f6fe6;
|
||||||
|
--primary-soft: #232a47;
|
||||||
|
--danger: #f06b7d;
|
||||||
|
--success: #3ec79a;
|
||||||
|
--ring: rgba(111, 127, 240, 0.4);
|
||||||
|
--switch-off: #3a4566;
|
||||||
|
--scroll-thumb: #39425f;
|
||||||
}
|
}
|
||||||
|
|
||||||
@theme inline {
|
@theme inline {
|
||||||
--color-background: var(--background);
|
--color-background: var(--background);
|
||||||
--color-surface: var(--surface);
|
--color-surface: var(--surface);
|
||||||
--color-surface-muted: var(--surface-muted);
|
--color-surface-muted: var(--surface-muted);
|
||||||
|
--color-surface-hover: var(--surface-hover);
|
||||||
--color-foreground: var(--foreground);
|
--color-foreground: var(--foreground);
|
||||||
--color-muted: var(--muted);
|
--color-muted: var(--muted);
|
||||||
--color-border: var(--border);
|
--color-border: var(--border);
|
||||||
@@ -45,6 +72,7 @@ body {
|
|||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-vazir), system-ui, sans-serif;
|
font-family: var(--font-vazir), system-ui, sans-serif;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
|
transition: background-color 0.2s ease, color 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Persian digits feel native when the font handles them; keep tabular for tables. */
|
/* Persian digits feel native when the font handles them; keep tabular for tables. */
|
||||||
@@ -58,7 +86,7 @@ table {
|
|||||||
height: 10px;
|
height: 10px;
|
||||||
}
|
}
|
||||||
::-webkit-scrollbar-thumb {
|
::-webkit-scrollbar-thumb {
|
||||||
background: #cdd3e6;
|
background: var(--scroll-thumb);
|
||||||
border-radius: 999px;
|
border-radius: 999px;
|
||||||
}
|
}
|
||||||
::-webkit-scrollbar-track {
|
::-webkit-scrollbar-track {
|
||||||
|
|||||||
+13
-1
@@ -14,13 +14,25 @@ export const metadata: Metadata = {
|
|||||||
description: "پنل مدیریت محتوای اپلیکیشن آرام جان",
|
description: "پنل مدیریت محتوای اپلیکیشن آرام جان",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Runs before paint to set the `.dark` class from saved preference / system,
|
||||||
|
// avoiding a light flash on load. Kept inline + minimal on purpose.
|
||||||
|
const noFlashTheme = `(function(){try{var t=localStorage.getItem('aram_theme');if(!t){t=window.matchMedia('(prefers-color-scheme: dark)').matches?'dark':'light';}if(t==='dark'){document.documentElement.classList.add('dark');}}catch(e){}})();`;
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: Readonly<{
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}>) {
|
||||||
return (
|
return (
|
||||||
<html lang="fa" dir="rtl" className={`${vazir.variable} h-full`}>
|
<html
|
||||||
|
lang="fa"
|
||||||
|
dir="rtl"
|
||||||
|
className={`${vazir.variable} h-full`}
|
||||||
|
suppressHydrationWarning
|
||||||
|
>
|
||||||
|
<head>
|
||||||
|
<script dangerouslySetInnerHTML={{ __html: noFlashTheme }} />
|
||||||
|
</head>
|
||||||
<body className="min-h-full">
|
<body className="min-h-full">
|
||||||
<Providers>{children}</Providers>
|
<Providers>{children}</Providers>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
+5
-1
@@ -7,6 +7,7 @@ import { useToast } from "@/components/toast";
|
|||||||
import { ApiError } from "@/lib/api";
|
import { ApiError } from "@/lib/api";
|
||||||
import { Button, Field, Input } from "@/components/ui";
|
import { Button, Field, Input } from "@/components/ui";
|
||||||
import { Logo } from "@/components/Logo";
|
import { Logo } from "@/components/Logo";
|
||||||
|
import { ThemeToggle } from "@/components/ThemeToggle";
|
||||||
|
|
||||||
export default function LoginPage() {
|
export default function LoginPage() {
|
||||||
const { login, token, ready } = useAuth();
|
const { login, token, ready } = useAuth();
|
||||||
@@ -39,7 +40,10 @@ export default function LoginPage() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex min-h-screen items-center justify-center bg-gradient-to-bl from-[#eef1fb] to-[#f6f3fb] p-4">
|
<div className="relative flex min-h-screen items-center justify-center bg-gradient-to-bl from-[#eef1fb] to-[#f6f3fb] p-4 dark:from-[#11151f] dark:to-[#0d1018]">
|
||||||
|
<div className="absolute top-4 left-4">
|
||||||
|
<ThemeToggle />
|
||||||
|
</div>
|
||||||
<div className="w-full max-w-md rounded-3xl border border-border bg-surface p-8 shadow-lg">
|
<div className="w-full max-w-md rounded-3xl border border-border bg-surface p-8 shadow-lg">
|
||||||
<div className="mb-8 text-center">
|
<div className="mb-8 text-center">
|
||||||
<div className="mx-auto mb-4 flex h-20 w-20 items-center justify-center rounded-2xl bg-primary-soft">
|
<div className="mx-auto mb-4 flex h-20 w-20 items-center justify-center rounded-2xl bg-primary-soft">
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ export function ImagePicker({
|
|||||||
انتخاب از کتابخانه
|
انتخاب از کتابخانه
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<label className="inline-flex cursor-pointer items-center justify-center gap-2 rounded-xl border border-border bg-surface-muted px-4 py-2 text-sm font-medium text-foreground transition hover:bg-[#e2e6f2]">
|
<label className="inline-flex cursor-pointer items-center justify-center gap-2 rounded-xl border border-border bg-surface-muted px-4 py-2 text-sm font-medium text-foreground transition hover:bg-surface-hover">
|
||||||
بارگذاری تصویر
|
بارگذاری تصویر
|
||||||
<input
|
<input
|
||||||
type="file"
|
type="file"
|
||||||
|
|||||||
@@ -1,12 +1,15 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { AuthProvider } from "@/lib/auth";
|
import { AuthProvider } from "@/lib/auth";
|
||||||
|
import { ThemeProvider } from "@/lib/theme";
|
||||||
import { ToastProvider } from "./toast";
|
import { ToastProvider } from "./toast";
|
||||||
|
|
||||||
export function Providers({ children }: { children: React.ReactNode }) {
|
export function Providers({ children }: { children: React.ReactNode }) {
|
||||||
return (
|
return (
|
||||||
<ToastProvider>
|
<ThemeProvider>
|
||||||
<AuthProvider>{children}</AuthProvider>
|
<ToastProvider>
|
||||||
</ToastProvider>
|
<AuthProvider>{children}</AuthProvider>
|
||||||
|
</ToastProvider>
|
||||||
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,21 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useTheme } from "@/lib/theme";
|
||||||
|
import { SunIcon, MoonIcon } from "./icons";
|
||||||
|
|
||||||
|
export function ThemeToggle({ className }: { className?: string }) {
|
||||||
|
const { theme, toggle } = useTheme();
|
||||||
|
const dark = theme === "dark";
|
||||||
|
|
||||||
|
return (
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={toggle}
|
||||||
|
aria-label={dark ? "حالت روشن" : "حالت تاریک"}
|
||||||
|
title={dark ? "حالت روشن" : "حالت تاریک"}
|
||||||
|
className={`rounded-lg p-2 text-muted transition hover:bg-surface-muted hover:text-foreground ${className ?? ""}`}
|
||||||
|
>
|
||||||
|
{dark ? <SunIcon className="h-5 w-5" /> : <MoonIcon className="h-5 w-5" />}
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -70,6 +70,19 @@ export const SearchIcon = (p: IconProps) => (
|
|||||||
</svg>
|
</svg>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
export const SunIcon = (p: IconProps) => (
|
||||||
|
<svg {...base(p)}>
|
||||||
|
<circle cx="12" cy="12" r="4" />
|
||||||
|
<path d="M12 2v2M12 20v2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M2 12h2M20 12h2M4.9 19.1l1.4-1.4M17.7 6.3l1.4-1.4" />
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
|
||||||
|
export const MoonIcon = (p: IconProps) => (
|
||||||
|
<svg {...base(p)}>
|
||||||
|
<path d="M21 12.8A9 9 0 1 1 11.2 3a7 7 0 0 0 9.8 9.8Z" />
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
|
||||||
export const LogoutIcon = (p: IconProps) => (
|
export const LogoutIcon = (p: IconProps) => (
|
||||||
<svg {...base(p)}>
|
<svg {...base(p)}>
|
||||||
<path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" />
|
<path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" />
|
||||||
@@ -170,6 +183,13 @@ export const TrophyIcon = (p: IconProps) => (
|
|||||||
<path d="M17 5h3v2a3 3 0 0 1-3 3M7 5H4v2a3 3 0 0 0 3 3" />
|
<path d="M17 5h3v2a3 3 0 0 1-3 3M7 5H4v2a3 3 0 0 0 3 3" />
|
||||||
</svg>
|
</svg>
|
||||||
);
|
);
|
||||||
|
export const ChatIcon = (p: IconProps) => (
|
||||||
|
<svg {...base(p)}>
|
||||||
|
<path d="M21 11.5a8.38 8.38 0 0 1-9 8.34 9.5 9.5 0 0 1-3.4-.5L3 21l1.66-4.5A8.38 8.38 0 0 1 4 12a8.5 8.5 0 0 1 9-8.45 8.38 8.38 0 0 1 8 7.95Z" />
|
||||||
|
<path d="M8.5 12h.01M12 12h.01M15.5 12h.01" />
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
|
||||||
export const TagIcon = (p: IconProps) => (
|
export const TagIcon = (p: IconProps) => (
|
||||||
<svg {...base(p)}>
|
<svg {...base(p)}>
|
||||||
<path d="M3 12V5a2 2 0 0 1 2-2h7l9 9-9 9-9-9Z" />
|
<path d="M3 12V5a2 2 0 0 1 2-2h7l9 9-9 9-9-9Z" />
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ export function ToastProvider({ children }: { children: React.ReactNode }) {
|
|||||||
"min-w-64 rounded-xl px-4 py-3 text-sm text-white shadow-lg",
|
"min-w-64 rounded-xl px-4 py-3 text-sm text-white shadow-lg",
|
||||||
t.kind === "success" && "bg-success",
|
t.kind === "success" && "bg-success",
|
||||||
t.kind === "error" && "bg-danger",
|
t.kind === "error" && "bg-danger",
|
||||||
t.kind === "info" && "bg-foreground",
|
t.kind === "info" && "bg-primary",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{t.message}
|
{t.message}
|
||||||
|
|||||||
+4
-4
@@ -22,7 +22,7 @@ interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|||||||
const buttonVariants: Record<ButtonVariant, string> = {
|
const buttonVariants: Record<ButtonVariant, string> = {
|
||||||
primary: "bg-primary text-white hover:bg-primary-hover",
|
primary: "bg-primary text-white hover:bg-primary-hover",
|
||||||
secondary:
|
secondary:
|
||||||
"bg-surface-muted text-foreground hover:bg-[#e2e6f2] border border-border",
|
"bg-surface-muted text-foreground hover:bg-surface-hover border border-border",
|
||||||
danger: "bg-danger text-white hover:opacity-90",
|
danger: "bg-danger text-white hover:opacity-90",
|
||||||
ghost: "text-muted hover:bg-surface-muted",
|
ghost: "text-muted hover:bg-surface-muted",
|
||||||
};
|
};
|
||||||
@@ -115,7 +115,7 @@ export function Switch({
|
|||||||
<span
|
<span
|
||||||
className={cn(
|
className={cn(
|
||||||
"relative h-6 w-11 rounded-full transition",
|
"relative h-6 w-11 rounded-full transition",
|
||||||
checked ? "bg-primary" : "bg-[#cdd3e6]",
|
checked ? "bg-primary" : "bg-[var(--switch-off)]",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
@@ -182,8 +182,8 @@ export function Badge({
|
|||||||
className={cn(
|
className={cn(
|
||||||
"inline-flex items-center rounded-full px-2.5 py-0.5 text-xs font-medium",
|
"inline-flex items-center rounded-full px-2.5 py-0.5 text-xs font-medium",
|
||||||
tone === "neutral" && "bg-surface-muted text-muted",
|
tone === "neutral" && "bg-surface-muted text-muted",
|
||||||
tone === "success" && "bg-[#e3f6ee] text-success",
|
tone === "success" && "bg-success/15 text-success",
|
||||||
tone === "danger" && "bg-[#fbe7ea] text-danger",
|
tone === "danger" && "bg-danger/15 text-danger",
|
||||||
tone === "primary" && "bg-primary-soft text-primary",
|
tone === "primary" && "bg-primary-soft text-primary",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
|
|||||||
+5
-2
@@ -24,8 +24,8 @@ All meditation calls send `Authorization: Bearer <meditationToken>` and `Accept:
|
|||||||
- POST `/media/:id` — update (same multipart fields). Playable URL is in **`external_url`**; thumbnail in nested **`image.url`**.
|
- POST `/media/:id` — update (same multipart fields). Playable URL is in **`external_url`**; thumbnail in nested **`image.url`**.
|
||||||
- GET `/media/popular`, `/media/recently-played`, `/media/saved`
|
- GET `/media/popular`, `/media/recently-played`, `/media/saved`
|
||||||
- POST `/media/:id/play`, `/media/:id/save`, `/media/:id/note`, `/media/:id/feedback` (stars, content)
|
- POST `/media/:id/play`, `/media/:id/save`, `/media/:id/note`, `/media/:id/feedback` (stars, content)
|
||||||
- Categories: GET/POST/PUT/DELETE `/categories` (multipart name)
|
- Categories: GET `/categories`, POST `/categories` (multipart: name, description, `icon`(image file)), PUT `/categories/:id` (file → POST + `_method=PUT`), DELETE `/categories/:id`. Icon path in `icon`.
|
||||||
- Sub-categories: GET/POST `/sub-categories`, PUT/DELETE `/sub-categories/:id` (category_id, name)
|
- Sub-categories: GET/POST `/sub-categories` (category_id, name, description), PUT/DELETE `/sub-categories/:id` (json: category_id, name, description)
|
||||||
|
|
||||||
### Track (music)
|
### Track (music)
|
||||||
- Categories: GET `/music-categories/:id`, POST `/music-categories`, PUT/DELETE `/music-categories/:id` (name, description, order, image_id, is_active)
|
- Categories: GET `/music-categories/:id`, POST `/music-categories`, PUT/DELETE `/music-categories/:id` (name, description, order, image_id, is_active)
|
||||||
@@ -75,6 +75,9 @@ All meditation calls send `Authorization: Bearer <meditationToken>` and `Accept:
|
|||||||
- Saves: POST `/saves/toggle`, `/saves/save`, `/saves/unsave`, `/saves/check` (type, id), GET `/saves/my-saved?type=`
|
- Saves: POST `/saves/toggle`, `/saves/save`, `/saves/unsave`, `/saves/check` (type, id), GET `/saves/my-saved?type=`
|
||||||
- Ratings: GET/POST/DELETE `/ratings/:type/:id` (stars), GET `/ratings/:type/:id/user`
|
- Ratings: GET/POST/DELETE `/ratings/:type/:id` (stars), GET `/ratings/:type/:id/user`
|
||||||
|
|
||||||
|
### Chat topics (موضوعات پیشنهادی گفتگو با مشاور)
|
||||||
|
- GET `/chat-topics`, GET `/chat-topics/:id`, POST `/chat-topics`, PUT/DELETE `/chat-topics/:id` (json: title, description, order, is_active)
|
||||||
|
|
||||||
### Misc
|
### Misc
|
||||||
- GET `/leader-board`
|
- GET `/leader-board`
|
||||||
- GET `/profile`
|
- GET `/profile`
|
||||||
|
|||||||
BIN
Binary file not shown.
+19
-6
@@ -1,6 +1,7 @@
|
|||||||
import type { ComponentType, SVGProps } from "react";
|
import type { ComponentType, SVGProps } from "react";
|
||||||
import {
|
import {
|
||||||
BreathIcon,
|
BreathIcon,
|
||||||
|
ChatIcon,
|
||||||
HomeIcon,
|
HomeIcon,
|
||||||
ImageIcon,
|
ImageIcon,
|
||||||
MediaIcon,
|
MediaIcon,
|
||||||
@@ -32,14 +33,18 @@ export const NAV: NavSection[] = [
|
|||||||
icon: HomeIcon,
|
icon: HomeIcon,
|
||||||
items: [{ href: "/dashboard", label: "خانه" }],
|
items: [{ href: "/dashboard", label: "خانه" }],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: "عمومی",
|
||||||
|
icon: TagIcon,
|
||||||
|
items: [
|
||||||
|
{ href: "/dashboard/categories", label: "دستهبندیها" },
|
||||||
|
{ href: "/dashboard/sub-categories", label: "زیردستهها" },
|
||||||
|
],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: "رسانهها",
|
label: "رسانهها",
|
||||||
icon: MediaIcon,
|
icon: MediaIcon,
|
||||||
items: [
|
items: [{ href: "/dashboard/media", label: "فهرست رسانهها" }],
|
||||||
{ href: "/dashboard/media", label: "فهرست رسانهها" },
|
|
||||||
{ href: "/dashboard/media/categories", label: "دستهبندیها" },
|
|
||||||
{ href: "/dashboard/media/sub-categories", label: "زیردستهها" },
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "موسیقی",
|
label: "موسیقی",
|
||||||
@@ -94,6 +99,11 @@ export const NAV: NavSection[] = [
|
|||||||
icon: SurveyIcon,
|
icon: SurveyIcon,
|
||||||
items: [{ href: "/dashboard/surveys", label: "پرسشهای نظرسنجی" }],
|
items: [{ href: "/dashboard/surveys", label: "پرسشهای نظرسنجی" }],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: "گفتگو با مشاور",
|
||||||
|
icon: ChatIcon,
|
||||||
|
items: [{ href: "/dashboard/chat-topics", label: "موضوعات پیشنهادی" }],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: "حالوهوا",
|
label: "حالوهوا",
|
||||||
icon: MoodIcon,
|
icon: MoodIcon,
|
||||||
@@ -112,6 +122,9 @@ export const NAV: NavSection[] = [
|
|||||||
{
|
{
|
||||||
label: "محتوای کاربران",
|
label: "محتوای کاربران",
|
||||||
icon: TagIcon,
|
icon: TagIcon,
|
||||||
items: [{ href: "/dashboard/comments", label: "نظرات" }],
|
items: [
|
||||||
|
{ href: "/dashboard/comments", label: "نظرات" },
|
||||||
|
{ href: "/dashboard/app-feedback", label: "نظرات و ایدهها برنامه" },
|
||||||
|
],
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -0,0 +1,66 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
// Light/dark theme state. The actual `.dark` class is set on <html> by an inline
|
||||||
|
// script in the root layout (before paint, to avoid a flash) and kept in sync
|
||||||
|
// here. Preference persists in localStorage.
|
||||||
|
|
||||||
|
import {
|
||||||
|
createContext,
|
||||||
|
useCallback,
|
||||||
|
useContext,
|
||||||
|
useEffect,
|
||||||
|
useState,
|
||||||
|
} from "react";
|
||||||
|
|
||||||
|
export const THEME_STORAGE_KEY = "aram_theme";
|
||||||
|
type Theme = "light" | "dark";
|
||||||
|
|
||||||
|
interface ThemeApi {
|
||||||
|
theme: Theme;
|
||||||
|
toggle: () => void;
|
||||||
|
setTheme: (t: Theme) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
const ThemeContext = createContext<ThemeApi | null>(null);
|
||||||
|
|
||||||
|
function applyClass(theme: Theme) {
|
||||||
|
document.documentElement.classList.toggle("dark", theme === "dark");
|
||||||
|
}
|
||||||
|
|
||||||
|
export function ThemeProvider({ children }: { children: React.ReactNode }) {
|
||||||
|
const [theme, setThemeState] = useState<Theme>("light");
|
||||||
|
|
||||||
|
// Read whatever the no-flash script already decided.
|
||||||
|
useEffect(() => {
|
||||||
|
const isDark = document.documentElement.classList.contains("dark");
|
||||||
|
setThemeState(isDark ? "dark" : "light");
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const setTheme = useCallback((t: Theme) => {
|
||||||
|
setThemeState(t);
|
||||||
|
applyClass(t);
|
||||||
|
try {
|
||||||
|
window.localStorage.setItem(THEME_STORAGE_KEY, t);
|
||||||
|
} catch {
|
||||||
|
/* ignore (private mode) */
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const toggle = useCallback(() => {
|
||||||
|
setTheme(
|
||||||
|
document.documentElement.classList.contains("dark") ? "light" : "dark",
|
||||||
|
);
|
||||||
|
}, [setTheme]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ThemeContext.Provider value={{ theme, toggle, setTheme }}>
|
||||||
|
{children}
|
||||||
|
</ThemeContext.Provider>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useTheme(): ThemeApi {
|
||||||
|
const ctx = useContext(ThemeContext);
|
||||||
|
if (!ctx) throw new Error("useTheme must be used within <ThemeProvider>");
|
||||||
|
return ctx;
|
||||||
|
}
|
||||||
@@ -19,6 +19,16 @@ export function formatDuration(seconds?: number | null): string {
|
|||||||
return toFa(`${m}:${String(s).padStart(2, "0")}`);
|
return toFa(`${m}:${String(s).padStart(2, "0")}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Derive a clean title from an uploaded file name: drop the extension and turn
|
||||||
|
// underscores/dashes into spaces (e.g. "morning_calm-01.mp3" -> "morning calm 01").
|
||||||
|
export function fileNameToTitle(name: string): string {
|
||||||
|
return name
|
||||||
|
.replace(/\.[^./\\]+$/, "")
|
||||||
|
.replace(/[_-]+/g, " ")
|
||||||
|
.replace(/\s+/g, " ")
|
||||||
|
.trim();
|
||||||
|
}
|
||||||
|
|
||||||
// Minutes -> Persian label. Media and music store `duration` in minutes.
|
// Minutes -> Persian label. Media and music store `duration` in minutes.
|
||||||
export function formatMinutes(minutes?: number | null): string {
|
export function formatMinutes(minutes?: number | null): string {
|
||||||
if (minutes === null || minutes === undefined) return "—";
|
if (minutes === null || minutes === undefined) return "—";
|
||||||
|
|||||||
Generated
+1
-24
@@ -277,30 +277,6 @@
|
|||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@emnapi/core": {
|
|
||||||
"version": "1.10.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
|
|
||||||
"integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
|
|
||||||
"dev": true,
|
|
||||||
"license": "MIT",
|
|
||||||
"optional": true,
|
|
||||||
"peer": true,
|
|
||||||
"dependencies": {
|
|
||||||
"@emnapi/wasi-threads": "1.2.1",
|
|
||||||
"tslib": "^2.4.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/@emnapi/runtime": {
|
|
||||||
"version": "1.10.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
|
|
||||||
"integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
|
|
||||||
"license": "MIT",
|
|
||||||
"optional": true,
|
|
||||||
"peer": true,
|
|
||||||
"dependencies": {
|
|
||||||
"tslib": "^2.4.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/@emnapi/wasi-threads": {
|
"node_modules/@emnapi/wasi-threads": {
|
||||||
"version": "1.2.1",
|
"version": "1.2.1",
|
||||||
"resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
|
"resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
|
||||||
@@ -3312,6 +3288,7 @@
|
|||||||
"integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==",
|
"integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"peer": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@rtsao/scc": "^1.1.0",
|
"@rtsao/scc": "^1.1.0",
|
||||||
"array-includes": "^3.1.9",
|
"array-includes": "^3.1.9",
|
||||||
|
|||||||
+2
-1
@@ -6,7 +6,8 @@
|
|||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
"start": "next start",
|
"start": "next start",
|
||||||
"lint": "eslint"
|
"lint": "eslint",
|
||||||
|
"deploy": "bash scripts/deploy.sh"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"next": "16.2.7",
|
"next": "16.2.7",
|
||||||
|
|||||||
Executable
+46
@@ -0,0 +1,46 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Build the static site locally, then replace the server directory with it.
|
||||||
|
#
|
||||||
|
# - Builds on THIS machine (npm run build -> ./out).
|
||||||
|
# - Streams out/ over a single SSH connection (tar pipe) and swaps the
|
||||||
|
# contents of the target dir on the server. No rsync/sshpass required.
|
||||||
|
#
|
||||||
|
# Password handling:
|
||||||
|
# - If `sshpass` is installed AND DEPLOY_PASSWORD is set (env or .env.deploy),
|
||||||
|
# the deploy is fully unattended.
|
||||||
|
# - Otherwise SSH prompts for the password once (interactive).
|
||||||
|
#
|
||||||
|
# Config (override via env or .env.deploy):
|
||||||
|
set -euo pipefail
|
||||||
|
cd "$(git rev-parse --show-toplevel 2>/dev/null || dirname "$(dirname "$0")")"
|
||||||
|
|
||||||
|
# Optional local secrets file (gitignored).
|
||||||
|
[ -f .env.deploy ] && . ./.env.deploy
|
||||||
|
|
||||||
|
DEPLOY_HOST="${DEPLOY_HOST:-185.226.116.88}"
|
||||||
|
DEPLOY_USER="${DEPLOY_USER:-ubuntu}"
|
||||||
|
DEPLOY_PATH="${DEPLOY_PATH:-/var/www/aramland-admin}"
|
||||||
|
DEPLOY_PASSWORD="${DEPLOY_PASSWORD:-}"
|
||||||
|
|
||||||
|
echo "▸ Building locally…"
|
||||||
|
npm run build
|
||||||
|
|
||||||
|
if [ ! -d out ]; then
|
||||||
|
echo "✗ Build did not produce ./out" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Pick the SSH command: unattended with sshpass, else interactive prompt.
|
||||||
|
ssh_cmd=(ssh -o StrictHostKeyChecking=no "$DEPLOY_USER@$DEPLOY_HOST")
|
||||||
|
if command -v sshpass >/dev/null 2>&1 && [ -n "$DEPLOY_PASSWORD" ]; then
|
||||||
|
ssh_cmd=(sshpass -p "$DEPLOY_PASSWORD" "${ssh_cmd[@]}")
|
||||||
|
else
|
||||||
|
echo "ℹ sshpass/password not available — SSH will prompt for the password."
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "▸ Uploading to $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_PATH …"
|
||||||
|
# Replace the directory contents (incl. dotfiles) then extract the new build.
|
||||||
|
tar -C out -czf - . | "${ssh_cmd[@]}" \
|
||||||
|
"set -e; mkdir -p '$DEPLOY_PATH'; find '$DEPLOY_PATH' -mindepth 1 -delete; tar -C '$DEPLOY_PATH' -xzf -"
|
||||||
|
|
||||||
|
echo "✓ Deployed to $DEPLOY_HOST:$DEPLOY_PATH"
|
||||||
Reference in New Issue
Block a user