Dashboard und Benutzerverwaltung

This commit is contained in:
Schubert Ferenc 2026-07-02 00:01:25 +02:00
parent c4d27a1187
commit 4cf671e32d
16 changed files with 684 additions and 79 deletions

View file

@ -1,20 +1,12 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
import Sidebar from "@/components/Sidebar";
import Header from "@/components/Header";
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Olympus ERP",
description: "Olympus ERP",
};
export default function RootLayout({
@ -23,11 +15,28 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">{children}</body>
<html lang="de">
<body className="bg-slate-100">
<div className="flex h-screen">
<Sidebar />
<div className="flex flex-col flex-1">
<Header />
<main className="flex-1 overflow-auto p-8">
{children}
</main>
</div>
</div>
</body>
</html>
);
}
}

View file

@ -1,65 +1,20 @@
import Image from "next/image";
import StatCard from "@/components/StatCard";
import UserCounter from "@/components/UserCounter";
export default function Home() {
return (
<div className="flex flex-col flex-1 items-center justify-center bg-zinc-50 font-sans dark:bg-black">
<main className="flex flex-1 w-full max-w-3xl flex-col items-center justify-between py-32 px-16 bg-white dark:bg-black sm:items-start">
<Image
className="dark:invert"
src="/next.svg"
alt="Next.js logo"
width={100}
height={20}
priority
/>
<div className="flex flex-col items-center gap-6 text-center sm:items-start sm:text-left">
<h1 className="max-w-xs text-3xl font-semibold leading-10 tracking-tight text-black dark:text-zinc-50">
To get started, edit the page.tsx file.
</h1>
<p className="max-w-md text-lg leading-8 text-zinc-600 dark:text-zinc-400">
Looking for a starting point or more instructions? Head over to{" "}
<a
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
className="font-medium text-zinc-950 dark:text-zinc-50"
>
Templates
</a>{" "}
or the{" "}
<a
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
className="font-medium text-zinc-950 dark:text-zinc-50"
>
Learning
</a>{" "}
center.
</p>
</div>
<div className="flex flex-col gap-4 text-base font-medium sm:flex-row">
<a
className="flex h-12 w-full items-center justify-center gap-2 rounded-full bg-foreground px-5 text-background transition-colors hover:bg-[#383838] dark:hover:bg-[#ccc] md:w-[158px]"
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
<Image
className="dark:invert"
src="/vercel.svg"
alt="Vercel logomark"
width={16}
height={16}
/>
Deploy Now
</a>
<a
className="flex h-12 w-full items-center justify-center rounded-full border border-solid border-black/[.08] px-5 transition-colors hover:border-transparent hover:bg-black/[.04] dark:border-white/[.145] dark:hover:bg-[#1a1a1a] md:w-[158px]"
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
Documentation
</a>
</div>
</main>
</div>
<>
<div className="grid grid-cols-4 gap-6">
<StatCard title="Benutzer" value={<UserCounter />} />
<StatCard title="Kunden" value="0" />
<StatCard title="Reparaturen" value="0" />
<StatCard title="Lager" value="0" />
</div>
</>
);
}
}

View file

@ -0,0 +1,66 @@
"use client";
import { useEffect, useState } from "react";
import { api } from "@/lib/api";
import { User } from "@/types/user";
import UserDialog from "@/components/users/UserDialog";
import UserTable from "@/components/users/UserTable";
export default function UsersPage() {
const [users, setUsers] = useState<User[]>([]);
useEffect(() => {
loadUsers();
}, []);
function loadUsers() {
api
.get<User[]>("/users/")
.then((res) => {
console.log("API:", res.data);
setUsers(res.data);
})
.catch((err) => {
console.error("API Fehler:", err);
});
}
return (
<>
<div className="flex justify-between items-center mb-8">
<h1 className="text-4xl font-bold">
Benutzer
</h1>
<UserDialog />
</div>
<pre className="mb-6 rounded bg-black p-4 text-green-400 overflow-auto">
{JSON.stringify(users, null, 2)}
</pre>
<UserTable users={users} />
</>
);
}