mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-30 06:29:23 +02:00
65 lines
2 KiB
TypeScript
65 lines
2 KiB
TypeScript
// This file is licensed under the Fossorial Commercial License.
|
|
// Unauthorized use, copying, modification, or distribution is strictly prohibited.
|
|
//
|
|
// Copyright (c) 2025 Fossorial LLC. All rights reserved.
|
|
|
|
import { internal } from "@app/lib/api";
|
|
import { AxiosResponse } from "axios";
|
|
import { redirect } from "next/navigation";
|
|
import { authCookieHeader } from "@app/lib/api/cookies";
|
|
import { SidebarSettings } from "@app/components/SidebarSettings";
|
|
import Link from "next/link";
|
|
import SettingsSectionTitle from "@app/components/SettingsSectionTitle";
|
|
import {
|
|
Breadcrumb,
|
|
BreadcrumbItem,
|
|
BreadcrumbList,
|
|
BreadcrumbPage,
|
|
BreadcrumbSeparator
|
|
} from "@app/components/ui/breadcrumb";
|
|
import { GetApiKeyResponse } from "@server/routers/apiKeys";
|
|
import ApiKeyProvider from "@app/providers/ApiKeyProvider";
|
|
import { HorizontalTabs } from "@app/components/HorizontalTabs";
|
|
import { useTranslations } from "next-intl";
|
|
|
|
interface SettingsLayoutProps {
|
|
children: React.ReactNode;
|
|
params: Promise<{ apiKeyId: string }>;
|
|
}
|
|
|
|
export default async function SettingsLayout(props: SettingsLayoutProps) {
|
|
const params = await props.params;
|
|
|
|
const t = useTranslations();
|
|
|
|
const { children } = props;
|
|
|
|
let apiKey = null;
|
|
try {
|
|
const res = await internal.get<AxiosResponse<GetApiKeyResponse>>(
|
|
`/api-key/${params.apiKeyId}`,
|
|
await authCookieHeader()
|
|
);
|
|
apiKey = res.data.data;
|
|
} catch (e) {
|
|
console.error(e);
|
|
redirect(`/admin/api-keys`);
|
|
}
|
|
|
|
const navItems = [
|
|
{
|
|
title: t('apiKeysPermissionsTitle'),
|
|
href: "/admin/api-keys/{apiKeyId}/permissions"
|
|
}
|
|
];
|
|
|
|
return (
|
|
<>
|
|
<SettingsSectionTitle title={t('apiKeysSettings', {apiKeyName: apiKey?.name})} />
|
|
|
|
<ApiKeyProvider apiKey={apiKey}>
|
|
<HorizontalTabs items={navItems}>{children}</HorizontalTabs>
|
|
</ApiKeyProvider>
|
|
</>
|
|
);
|
|
}
|