2c961b123b
Build backend images / build content-svc (push) Failing after 16s
Build backend images / build file-svc (push) Failing after 48s
Build backend images / build gateway (push) Failing after 17s
Build backend images / build identity-svc (push) Failing after 2m12s
Build backend images / build notification-svc (push) Failing after 3m15s
Build backend images / build render-svc (push) Failing after 51s
Build backend images / build studio-svc (push) Failing after 56s
- content-svc: template list gains popularity/rating sort modes (use_count_desc,
popular, rating_desc); new PATCH /v1/templates/{id}/sort to set manual sort
weight (feature/pin) without a full edit
- admin /admin/ranking: templates ordered by popularity with views/uses/rating
and inline manual-sort editor
- admin /admin/stats: overview dashboard (users, revenue, paying customers,
conversion, templates/categories/campaigns/blogs counts) aggregated from
existing identity + content endpoints
- nav: Dashboard + Ranking links
Completes the epic: SMS/Email/Templates → Marketing → CRM → Ranking + Stats.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
65 lines
2.3 KiB
TypeScript
65 lines
2.3 KiB
TypeScript
import { redirect } from "next/navigation";
|
|
import { getTranslations } from "next-intl/server";
|
|
|
|
import { getCurrentUser } from "@/lib/auth/session";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export default async function AdminLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
const user = await getCurrentUser();
|
|
if (!user || !user.is_admin) {
|
|
redirect("/dashboard");
|
|
}
|
|
const t = await getTranslations("auto.appAdminLayout");
|
|
const links: { href: string; label: string }[] = [
|
|
{ href: "/admin/stats", label: t("stats") },
|
|
{ href: "/admin/categories", label: t("categories") },
|
|
{ href: "/admin/templates", label: t("templates") },
|
|
{ href: "/admin/ranking", label: t("ranking") },
|
|
{ href: "/admin/tags", label: t("tags") },
|
|
{ href: "/admin/fonts", label: t("fonts") },
|
|
{ href: "/admin/blogs", label: t("blogs") },
|
|
{ href: "/admin/slides", label: t("slides") },
|
|
{ href: "/admin/files", label: t("media") },
|
|
{ href: "/admin/ai", label: t("aiContent") },
|
|
{ href: "/admin/messaging", label: t("messaging") },
|
|
{ href: "/admin/marketing", label: t("marketing") },
|
|
{ href: "/admin/crm", label: t("crm") },
|
|
{ href: "/admin/users", label: t("users") },
|
|
{ href: "/admin/plans", label: t("plans") },
|
|
{ href: "/admin/discounts", label: t("discounts") },
|
|
{ href: "/admin/settings", label: t("siteSettings") },
|
|
{ href: "/admin/nodes", label: t("nodes") },
|
|
{ href: "/admin/renders", label: t("renderQueue") },
|
|
];
|
|
return (
|
|
<div className="min-h-screen bg-[#0c0e1a] text-gray-200">
|
|
<nav className="border-b border-[#1e2235] bg-[#0f1120] px-6 py-3">
|
|
<div className="mx-auto flex max-w-7xl flex-wrap items-center gap-x-5 gap-y-2">
|
|
<span className="text-sm font-semibold text-white">{t("brand")}</span>
|
|
{links.map((l) => (
|
|
<a
|
|
key={l.href}
|
|
href={l.href}
|
|
className="text-sm text-gray-400 transition-colors hover:text-white"
|
|
>
|
|
{l.label}
|
|
</a>
|
|
))}
|
|
<a
|
|
href="/dashboard"
|
|
className="ml-auto text-xs text-gray-500 transition-colors hover:text-gray-300"
|
|
>
|
|
{t("backToDashboard")}
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
<main className="mx-auto max-w-7xl px-6 py-8">{children}</main>
|
|
</div>
|
|
);
|
|
}
|