first commit

This commit is contained in:
2026-08-07 09:40:16 +03:30
commit 0c51b30059
37 changed files with 5146 additions and 0 deletions
+86
View File
@@ -0,0 +1,86 @@
// کلاینتِ APIِ پنل. احرازِ هویت با Basic Auth (همان کاربر/پسوردِ پنل ادمین)
// که پس از ورود در localStorage نگه‌داری می‌شود و در هر درخواست فرستاده می‌شود.
// همان مبدأ (nginx، /admin/api → بک‌اند). برای توسعه‌ی محلی با
// NEXT_PUBLIC_API_URL قابلِ override است.
const BASE =
process.env.NEXT_PUBLIC_API_URL || "https://hakem.approagency.ir/admin/api";
// مبدأِ فایل‌های استاتیک (کارت/فرش): همان دامنه بدونِ /admin/api.
export const ASSET_BASE = BASE.replace(/\/admin\/api\/?$/, "");
const AUTH_KEY = "hakem_admin_auth";
export function saveAuth(user: string, pass: string) {
if (typeof window !== "undefined") {
localStorage.setItem(AUTH_KEY, btoa(`${user}:${pass}`));
}
}
export function clearAuth() {
if (typeof window !== "undefined") localStorage.removeItem(AUTH_KEY);
}
export function getAuth(): string | null {
if (typeof window === "undefined") return null;
return localStorage.getItem(AUTH_KEY);
}
export function isAuthed(): boolean {
return !!getAuth();
}
class ApiError extends Error {
status: number;
constructor(status: number, msg: string) {
super(msg);
this.status = status;
}
}
async function request<T>(
method: string,
path: string,
body?: unknown,
): Promise<T> {
const auth = getAuth();
const headers: Record<string, string> = { Accept: "application/json" };
if (auth) headers["Authorization"] = `Basic ${auth}`;
const opts: RequestInit = { method, headers };
if (body !== undefined) {
if (body instanceof FormData) {
opts.body = body;
} else {
headers["Content-Type"] = "application/json";
opts.body = JSON.stringify(body);
}
}
const res = await fetch(`${BASE}${path}`, opts);
if (res.status === 401) {
clearAuth();
if (typeof window !== "undefined") window.location.href = "/panel/login/";
throw new ApiError(401, "unauthorized");
}
if (!res.ok) {
const e = await res.json().catch(() => ({}));
throw new ApiError(res.status, (e as { error?: string }).error || "خطا");
}
return res.json() as Promise<T>;
}
export const api = {
get: <T>(p: string) => request<T>("GET", p),
post: <T>(p: string, body?: unknown) => request<T>("POST", p, body),
put: <T>(p: string, body?: unknown) => request<T>("PUT", p, body),
del: <T>(p: string) => request<T>("DELETE", p),
// ورود: اعتبارسنجی با فراخوانی /me.
async login(user: string, pass: string) {
const prev = getAuth();
saveAuth(user, pass);
try {
await request("GET", "/me");
return true;
} catch {
if (prev) localStorage.setItem(AUTH_KEY, prev);
else clearAuth();
return false;
}
},
};
+27
View File
@@ -0,0 +1,27 @@
import type { BadgeTone } from "@/components/Badge";
// برچسب‌ها و تن‌هایِ نشانکیِ مشترک بین صفحه‌ی تراکنش‌ها و داشبورد.
export const KIND_LABEL: Record<string, string> = {
coin: "سکه",
ticket: "بلیط",
booster: "بوستر",
vip: "VIP",
};
export const KIND_TONE: Record<string, BadgeTone> = {
coin: "gold",
ticket: "blue",
booster: "purple",
vip: "green",
};
export const STATUS_LABEL: Record<string, string> = {
verified: "پرداخت‌شده",
pending: "در انتظار",
};
export const STATUS_TONE: Record<string, BadgeTone> = {
verified: "green",
pending: "gray",
};
export const STORE_LABEL: Record<string, string> = {
bazaar: "بازار",
myket: "مایکت",
};
+37
View File
@@ -0,0 +1,37 @@
"use client";
// سیستمِ توستِ سبک (بدونِ وابستگی): یک pub/sub ساده که پیام‌ها را به Toaster می‌دهد.
export type ToastType = "error" | "success" | "info";
export type ToastItem = { id: number; msg: string; type: ToastType };
type Listener = (items: ToastItem[]) => void;
let items: ToastItem[] = [];
let seq = 1;
const listeners = new Set<Listener>();
function emit() {
for (const l of listeners) l(items);
}
/** یک توست نشان می‌دهد (پیش‌فرض: خطا). پس از چند ثانیه خودش محو می‌شود. */
export function toast(msg: string, type: ToastType = "error") {
const id = seq++;
items = [...items, { id, msg, type }];
emit();
setTimeout(() => {
items = items.filter((t) => t.id !== id);
emit();
}, type === "error" ? 5000 : 3000);
}
export const toastError = (msg: string) => toast(msg, "error");
export const toastSuccess = (msg: string) => toast(msg, "success");
export function subscribe(l: Listener) {
listeners.add(l);
l(items);
return () => {
listeners.delete(l);
};
}