shadcn-vue/apps/www/registry/default/block/Dashboard04.vue
2024-11-21 11:52:31 +08:00

217 lines
7.4 KiB
Vue

<script lang="ts">
export const description = 'A settings page. The settings page has a sidebar navigation and a main content area. The main content area has a form to update the store name and a form to update the plugins directory. The sidebar navigation has links to general, security, integrations, support, organizations, and advanced settings.'
export const iframeHeight = '780px'
export const containerClass = 'w-full h-full'
</script>
<script setup lang="ts">
import { Button } from '@/lib/registry/default/ui/button'
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '@/lib/registry/default/ui/card'
import { Checkbox } from '@/lib/registry/default/ui/checkbox'
import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger } from '@/lib/registry/default/ui/dropdown-menu'
import { Input } from '@/lib/registry/default/ui/input'
import { Sheet, SheetContent, SheetTrigger } from '@/lib/registry/default/ui/sheet'
import { CircleUser, Menu, Package2, Search } from 'lucide-vue-next'
</script>
<template>
<div class="flex min-h-screen w-full flex-col">
<header class="sticky top-0 flex h-16 items-center gap-4 border-b bg-background px-4 md:px-6">
<nav class="hidden flex-col gap-6 text-lg font-medium md:flex md:flex-row md:items-center md:gap-5 md:text-sm lg:gap-6">
<a
href="#"
class="flex items-center gap-2 text-lg font-semibold md:text-base"
>
<Package2 class="h-6 w-6" />
<span class="sr-only">Acme Inc</span>
</a>
<a
href="#"
class="text-muted-foreground transition-colors hover:text-foreground"
>
Dashboard
</a>
<a
href="#"
class="text-muted-foreground transition-colors hover:text-foreground"
>
Orders
</a>
<a
href="#"
class="text-muted-foreground transition-colors hover:text-foreground"
>
Products
</a>
<a
href="#"
class="text-muted-foreground transition-colors hover:text-foreground"
>
Customers
</a>
<a
href="#"
class="text-foreground transition-colors hover:text-foreground"
>
Settings
</a>
</nav>
<Sheet>
<SheetTrigger as-child>
<Button
variant="outline"
size="icon"
class="shrink-0 md:hidden"
>
<Menu class="h-5 w-5" />
<span class="sr-only">Toggle navigation menu</span>
</Button>
</SheetTrigger>
<SheetContent side="left">
<nav class="grid gap-6 text-lg font-medium">
<a
href="#"
class="flex items-center gap-2 text-lg font-semibold"
>
<Package2 class="h-6 w-6" />
<span class="sr-only">Acme Inc</span>
</a>
<a
href="#"
class="text-muted-foreground hover:text-foreground"
>
Dashboard
</a>
<a
href="#"
class="text-muted-foreground hover:text-foreground"
>
Orders
</a>
<a
href="#"
class="text-muted-foreground hover:text-foreground"
>
Products
</a>
<a
href="#"
class="text-muted-foreground hover:text-foreground"
>
Customers
</a>
<a href="#" class="hover:text-foreground">
Settings
</a>
</nav>
</SheetContent>
</Sheet>
<div class="flex w-full items-center gap-4 md:ml-auto md:gap-2 lg:gap-4">
<form class="ml-auto flex-1 sm:flex-initial">
<div class="relative">
<Search class="absolute left-2.5 top-2.5 h-4 w-4 text-muted-foreground" />
<Input
type="search"
placeholder="Search products..."
class="pl-8 sm:w-[300px] md:w-[200px] lg:w-[300px]"
/>
</div>
</form>
<DropdownMenu>
<DropdownMenuTrigger as-child>
<Button variant="secondary" size="icon" class="rounded-full">
<CircleUser class="h-5 w-5" />
<span class="sr-only">Toggle user menu</span>
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end">
<DropdownMenuLabel>My Account</DropdownMenuLabel>
<DropdownMenuSeparator />
<DropdownMenuItem>Settings</DropdownMenuItem>
<DropdownMenuItem>Support</DropdownMenuItem>
<DropdownMenuSeparator />
<DropdownMenuItem>Logout</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
</div>
</header>
<main class="flex min-h-[calc(100vh_-_theme(spacing.16))] flex-1 flex-col gap-4 bg-muted/40 p-4 md:gap-8 md:p-10">
<div class="mx-auto grid w-full max-w-6xl gap-2">
<h1 class="text-3xl font-semibold">
Settings
</h1>
</div>
<div class="mx-auto grid w-full max-w-6xl items-start gap-6 md:grid-cols-[180px_1fr] lg:grid-cols-[250px_1fr]">
<nav class="grid gap-4 text-sm text-muted-foreground">
<a href="#" class="font-semibold text-primary">
General
</a>
<a href="#">
Security
</a>
<a href="#">
Integrations
</a>
<a href="#">
Support
</a>
<a href="#">
Organizations
</a>
<a href="#">
Advanced
</a>
</nav>
<div class="grid gap-6">
<Card>
<CardHeader>
<CardTitle>Store Name</CardTitle>
<CardDescription>
Used to identify your store in the marketplace.
</CardDescription>
</CardHeader>
<CardContent>
<form>
<Input placeholder="Store Name" />
</form>
</CardContent>
<CardFooter class="border-t px-6 py-4">
<Button>Save</Button>
</CardFooter>
</Card>
<Card>
<CardHeader>
<CardTitle>Plugins Directory</CardTitle>
<CardDescription>
The directory within your project, in which your plugins are
located.
</CardDescription>
</CardHeader>
<CardContent>
<form class="flex flex-col gap-4">
<Input
placeholder="Project Name"
default-value="/content/plugins"
/>
<div class="flex items-center space-x-2">
<Checkbox id="include" default-checked />
<label
for="include"
class="text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
>
Allow administrators to change the directory.
</label>
</div>
</form>
</CardContent>
<CardFooter class="border-t px-6 py-4">
<Button>Save</Button>
</CardFooter>
</Card>
</div>
</div>
</main>
</div>
</template>