create-blitzpack 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +452 -0
- package/package.json +57 -0
- package/template/.dockerignore +59 -0
- package/template/.github/workflows/ci.yml +157 -0
- package/template/.husky/pre-commit +1 -0
- package/template/.husky/pre-push +1 -0
- package/template/.lintstagedrc.cjs +4 -0
- package/template/.nvmrc +1 -0
- package/template/.prettierrc +9 -0
- package/template/.vscode/settings.json +13 -0
- package/template/CLAUDE.md +175 -0
- package/template/CONTRIBUTING.md +32 -0
- package/template/Dockerfile +90 -0
- package/template/GETTING_STARTED.md +35 -0
- package/template/LICENSE +21 -0
- package/template/README.md +116 -0
- package/template/apps/api/.dockerignore +51 -0
- package/template/apps/api/.env.local.example +62 -0
- package/template/apps/api/emails/account-deleted-email.tsx +69 -0
- package/template/apps/api/emails/components/email-layout.tsx +154 -0
- package/template/apps/api/emails/config.ts +22 -0
- package/template/apps/api/emails/password-changed-email.tsx +88 -0
- package/template/apps/api/emails/password-reset-email.tsx +86 -0
- package/template/apps/api/emails/verification-email.tsx +85 -0
- package/template/apps/api/emails/welcome-email.tsx +70 -0
- package/template/apps/api/package.json +84 -0
- package/template/apps/api/prisma/migrations/20251012111439_init/migration.sql +13 -0
- package/template/apps/api/prisma/migrations/20251018162629_add_better_auth_fields/migration.sql +67 -0
- package/template/apps/api/prisma/migrations/20251019142208_add_user_role_enum/migration.sql +5 -0
- package/template/apps/api/prisma/migrations/20251019182151_user_auth/migration.sql +7 -0
- package/template/apps/api/prisma/migrations/20251019211416_faster_session_lookup/migration.sql +2 -0
- package/template/apps/api/prisma/migrations/20251119124337_add_upload_model/migration.sql +26 -0
- package/template/apps/api/prisma/migrations/20251120071241_add_scope_to_account/migration.sql +2 -0
- package/template/apps/api/prisma/migrations/20251120072608_add_oauth_token_expiration_fields/migration.sql +10 -0
- package/template/apps/api/prisma/migrations/20251120144705_add_audit_logs/migration.sql +29 -0
- package/template/apps/api/prisma/migrations/20251127123614_remove_impersonated_by/migration.sql +8 -0
- package/template/apps/api/prisma/migrations/20251127125630_remove_audit_logs/migration.sql +11 -0
- package/template/apps/api/prisma/migrations/migration_lock.toml +3 -0
- package/template/apps/api/prisma/schema.prisma +116 -0
- package/template/apps/api/prisma/seed.ts +159 -0
- package/template/apps/api/prisma.config.ts +14 -0
- package/template/apps/api/src/app.ts +377 -0
- package/template/apps/api/src/common/logger.service.ts +227 -0
- package/template/apps/api/src/config/env.ts +60 -0
- package/template/apps/api/src/config/rate-limit.ts +29 -0
- package/template/apps/api/src/hooks/auth.ts +122 -0
- package/template/apps/api/src/plugins/auth.ts +198 -0
- package/template/apps/api/src/plugins/database.ts +45 -0
- package/template/apps/api/src/plugins/logger.ts +33 -0
- package/template/apps/api/src/plugins/multipart.ts +16 -0
- package/template/apps/api/src/plugins/scalar.ts +20 -0
- package/template/apps/api/src/plugins/schedule.ts +52 -0
- package/template/apps/api/src/plugins/services.ts +66 -0
- package/template/apps/api/src/plugins/swagger.ts +56 -0
- package/template/apps/api/src/routes/accounts.ts +91 -0
- package/template/apps/api/src/routes/admin-sessions.ts +92 -0
- package/template/apps/api/src/routes/metrics.ts +71 -0
- package/template/apps/api/src/routes/password.ts +46 -0
- package/template/apps/api/src/routes/sessions.ts +53 -0
- package/template/apps/api/src/routes/stats.ts +38 -0
- package/template/apps/api/src/routes/uploads-serve.ts +27 -0
- package/template/apps/api/src/routes/uploads.ts +154 -0
- package/template/apps/api/src/routes/users.ts +114 -0
- package/template/apps/api/src/routes/verification.ts +90 -0
- package/template/apps/api/src/server.ts +34 -0
- package/template/apps/api/src/services/accounts.service.ts +125 -0
- package/template/apps/api/src/services/authorization.service.ts +162 -0
- package/template/apps/api/src/services/email.service.ts +170 -0
- package/template/apps/api/src/services/file-storage.service.ts +267 -0
- package/template/apps/api/src/services/metrics.service.ts +175 -0
- package/template/apps/api/src/services/password.service.ts +56 -0
- package/template/apps/api/src/services/sessions.service.spec.ts +134 -0
- package/template/apps/api/src/services/sessions.service.ts +276 -0
- package/template/apps/api/src/services/stats.service.ts +273 -0
- package/template/apps/api/src/services/uploads.service.ts +163 -0
- package/template/apps/api/src/services/users.service.spec.ts +249 -0
- package/template/apps/api/src/services/users.service.ts +198 -0
- package/template/apps/api/src/utils/file-validation.ts +108 -0
- package/template/apps/api/start.sh +33 -0
- package/template/apps/api/test/helpers/fastify-app.ts +24 -0
- package/template/apps/api/test/helpers/mock-authorization.ts +16 -0
- package/template/apps/api/test/helpers/mock-logger.ts +28 -0
- package/template/apps/api/test/helpers/mock-prisma.ts +30 -0
- package/template/apps/api/test/helpers/test-db.ts +125 -0
- package/template/apps/api/test/integration/auth-flow.integration.spec.ts +449 -0
- package/template/apps/api/test/integration/password.integration.spec.ts +427 -0
- package/template/apps/api/test/integration/rate-limit.integration.spec.ts +51 -0
- package/template/apps/api/test/integration/sessions.integration.spec.ts +445 -0
- package/template/apps/api/test/integration/users.integration.spec.ts +211 -0
- package/template/apps/api/test/setup.ts +31 -0
- package/template/apps/api/tsconfig.json +26 -0
- package/template/apps/api/vitest.config.ts +35 -0
- package/template/apps/web/.env.local.example +11 -0
- package/template/apps/web/components.json +24 -0
- package/template/apps/web/next.config.ts +22 -0
- package/template/apps/web/package.json +56 -0
- package/template/apps/web/postcss.config.js +5 -0
- package/template/apps/web/public/apple-icon.png +0 -0
- package/template/apps/web/public/icon.png +0 -0
- package/template/apps/web/public/robots.txt +3 -0
- package/template/apps/web/src/app/(admin)/admin/layout.tsx +222 -0
- package/template/apps/web/src/app/(admin)/admin/page.tsx +157 -0
- package/template/apps/web/src/app/(admin)/admin/sessions/page.tsx +18 -0
- package/template/apps/web/src/app/(admin)/admin/users/page.tsx +20 -0
- package/template/apps/web/src/app/(auth)/forgot-password/page.tsx +177 -0
- package/template/apps/web/src/app/(auth)/login/page.tsx +159 -0
- package/template/apps/web/src/app/(auth)/reset-password/page.tsx +245 -0
- package/template/apps/web/src/app/(auth)/signup/page.tsx +153 -0
- package/template/apps/web/src/app/dashboard/change-password/page.tsx +255 -0
- package/template/apps/web/src/app/dashboard/page.tsx +296 -0
- package/template/apps/web/src/app/error.tsx +32 -0
- package/template/apps/web/src/app/examples/file-upload/page.tsx +200 -0
- package/template/apps/web/src/app/favicon.ico +0 -0
- package/template/apps/web/src/app/global-error.tsx +96 -0
- package/template/apps/web/src/app/globals.css +22 -0
- package/template/apps/web/src/app/icon.png +0 -0
- package/template/apps/web/src/app/layout.tsx +34 -0
- package/template/apps/web/src/app/not-found.tsx +28 -0
- package/template/apps/web/src/app/page.tsx +192 -0
- package/template/apps/web/src/components/admin/activity-feed.tsx +101 -0
- package/template/apps/web/src/components/admin/charts/auth-breakdown-chart.tsx +114 -0
- package/template/apps/web/src/components/admin/charts/chart-tooltip.tsx +124 -0
- package/template/apps/web/src/components/admin/charts/realtime-metrics-chart.tsx +511 -0
- package/template/apps/web/src/components/admin/charts/role-distribution-chart.tsx +102 -0
- package/template/apps/web/src/components/admin/charts/session-activity-chart.tsx +90 -0
- package/template/apps/web/src/components/admin/charts/user-growth-chart.tsx +108 -0
- package/template/apps/web/src/components/admin/health-indicator.tsx +175 -0
- package/template/apps/web/src/components/admin/refresh-control.tsx +90 -0
- package/template/apps/web/src/components/admin/session-revoke-all-dialog.tsx +79 -0
- package/template/apps/web/src/components/admin/session-revoke-dialog.tsx +74 -0
- package/template/apps/web/src/components/admin/sessions-management-table.tsx +372 -0
- package/template/apps/web/src/components/admin/stat-card.tsx +137 -0
- package/template/apps/web/src/components/admin/user-create-dialog.tsx +152 -0
- package/template/apps/web/src/components/admin/user-delete-dialog.tsx +73 -0
- package/template/apps/web/src/components/admin/user-edit-dialog.tsx +170 -0
- package/template/apps/web/src/components/admin/users-management-table.tsx +285 -0
- package/template/apps/web/src/components/auth/email-verification-banner.tsx +85 -0
- package/template/apps/web/src/components/auth/github-button.tsx +40 -0
- package/template/apps/web/src/components/auth/google-button.tsx +54 -0
- package/template/apps/web/src/components/auth/protected-route.tsx +66 -0
- package/template/apps/web/src/components/auth/redirect-if-authenticated.tsx +31 -0
- package/template/apps/web/src/components/auth/with-auth.tsx +30 -0
- package/template/apps/web/src/components/error/error-card.tsx +47 -0
- package/template/apps/web/src/components/error/forbidden.tsx +25 -0
- package/template/apps/web/src/components/landing/command-block.tsx +64 -0
- package/template/apps/web/src/components/landing/feature-card.tsx +60 -0
- package/template/apps/web/src/components/landing/included-feature-card.tsx +63 -0
- package/template/apps/web/src/components/landing/logo.tsx +41 -0
- package/template/apps/web/src/components/landing/tech-badge.tsx +11 -0
- package/template/apps/web/src/components/layout/auth-nav.tsx +58 -0
- package/template/apps/web/src/components/layout/footer.tsx +3 -0
- package/template/apps/web/src/config/landing-data.ts +152 -0
- package/template/apps/web/src/config/site.ts +5 -0
- package/template/apps/web/src/hooks/api/__tests__/use-users.test.tsx +181 -0
- package/template/apps/web/src/hooks/api/use-admin-sessions.ts +75 -0
- package/template/apps/web/src/hooks/api/use-admin-stats.ts +33 -0
- package/template/apps/web/src/hooks/api/use-sessions.ts +52 -0
- package/template/apps/web/src/hooks/api/use-uploads.ts +156 -0
- package/template/apps/web/src/hooks/api/use-users.ts +149 -0
- package/template/apps/web/src/hooks/use-mobile.ts +21 -0
- package/template/apps/web/src/hooks/use-realtime-metrics.ts +120 -0
- package/template/apps/web/src/lib/__tests__/utils.test.ts +29 -0
- package/template/apps/web/src/lib/api.ts +151 -0
- package/template/apps/web/src/lib/auth.ts +13 -0
- package/template/apps/web/src/lib/env.ts +52 -0
- package/template/apps/web/src/lib/form-utils.ts +11 -0
- package/template/apps/web/src/lib/utils.ts +1 -0
- package/template/apps/web/src/providers.tsx +34 -0
- package/template/apps/web/src/store/atoms.ts +15 -0
- package/template/apps/web/src/test/helpers/test-utils.tsx +44 -0
- package/template/apps/web/src/test/setup.ts +8 -0
- package/template/apps/web/tailwind.config.ts +5 -0
- package/template/apps/web/tsconfig.json +26 -0
- package/template/apps/web/vitest.config.ts +32 -0
- package/template/assets/logo-512.png +0 -0
- package/template/assets/logo.svg +4 -0
- package/template/docker-compose.prod.yml +66 -0
- package/template/docker-compose.yml +36 -0
- package/template/eslint.config.ts +119 -0
- package/template/package.json +77 -0
- package/template/packages/tailwind-config/package.json +9 -0
- package/template/packages/tailwind-config/theme.css +179 -0
- package/template/packages/types/package.json +29 -0
- package/template/packages/types/src/__tests__/schemas.test.ts +255 -0
- package/template/packages/types/src/api-response.ts +53 -0
- package/template/packages/types/src/health-check.ts +11 -0
- package/template/packages/types/src/pagination.ts +41 -0
- package/template/packages/types/src/role.ts +5 -0
- package/template/packages/types/src/session.ts +48 -0
- package/template/packages/types/src/stats.ts +113 -0
- package/template/packages/types/src/upload.ts +51 -0
- package/template/packages/types/src/user.ts +36 -0
- package/template/packages/types/tsconfig.json +5 -0
- package/template/packages/types/vitest.config.ts +21 -0
- package/template/packages/ui/components.json +21 -0
- package/template/packages/ui/package.json +108 -0
- package/template/packages/ui/src/__tests__/button.test.tsx +70 -0
- package/template/packages/ui/src/alert-dialog.tsx +141 -0
- package/template/packages/ui/src/alert.tsx +66 -0
- package/template/packages/ui/src/animated-theme-toggler.tsx +167 -0
- package/template/packages/ui/src/avatar.tsx +53 -0
- package/template/packages/ui/src/badge.tsx +36 -0
- package/template/packages/ui/src/button.tsx +84 -0
- package/template/packages/ui/src/card.tsx +92 -0
- package/template/packages/ui/src/checkbox.tsx +32 -0
- package/template/packages/ui/src/data-table/data-table-column-header.tsx +68 -0
- package/template/packages/ui/src/data-table/data-table-pagination.tsx +99 -0
- package/template/packages/ui/src/data-table/data-table-toolbar.tsx +55 -0
- package/template/packages/ui/src/data-table/data-table-view-options.tsx +63 -0
- package/template/packages/ui/src/data-table/data-table.tsx +167 -0
- package/template/packages/ui/src/dialog.tsx +143 -0
- package/template/packages/ui/src/dropdown-menu.tsx +257 -0
- package/template/packages/ui/src/empty-state.tsx +52 -0
- package/template/packages/ui/src/file-upload-input.tsx +202 -0
- package/template/packages/ui/src/form.tsx +168 -0
- package/template/packages/ui/src/hooks/use-mobile.ts +19 -0
- package/template/packages/ui/src/icons/brand-icons.tsx +16 -0
- package/template/packages/ui/src/input.tsx +21 -0
- package/template/packages/ui/src/label.tsx +24 -0
- package/template/packages/ui/src/lib/utils.ts +6 -0
- package/template/packages/ui/src/password-input.tsx +102 -0
- package/template/packages/ui/src/popover.tsx +48 -0
- package/template/packages/ui/src/radio-group.tsx +45 -0
- package/template/packages/ui/src/scroll-area.tsx +58 -0
- package/template/packages/ui/src/select.tsx +187 -0
- package/template/packages/ui/src/separator.tsx +28 -0
- package/template/packages/ui/src/sheet.tsx +139 -0
- package/template/packages/ui/src/sidebar.tsx +726 -0
- package/template/packages/ui/src/skeleton-variants.tsx +87 -0
- package/template/packages/ui/src/skeleton.tsx +13 -0
- package/template/packages/ui/src/slider.tsx +63 -0
- package/template/packages/ui/src/sonner.tsx +25 -0
- package/template/packages/ui/src/spinner.tsx +16 -0
- package/template/packages/ui/src/switch.tsx +31 -0
- package/template/packages/ui/src/table.tsx +116 -0
- package/template/packages/ui/src/tabs.tsx +66 -0
- package/template/packages/ui/src/textarea.tsx +18 -0
- package/template/packages/ui/src/tooltip.tsx +61 -0
- package/template/packages/ui/src/user-avatar.tsx +97 -0
- package/template/packages/ui/test-config.js +3 -0
- package/template/packages/ui/tsconfig.json +12 -0
- package/template/packages/ui/turbo.json +18 -0
- package/template/packages/ui/vitest.config.ts +17 -0
- package/template/packages/ui/vitest.setup.ts +1 -0
- package/template/packages/utils/package.json +23 -0
- package/template/packages/utils/src/__tests__/utils.test.ts +223 -0
- package/template/packages/utils/src/array.ts +18 -0
- package/template/packages/utils/src/async.ts +3 -0
- package/template/packages/utils/src/date.ts +77 -0
- package/template/packages/utils/src/errors.ts +73 -0
- package/template/packages/utils/src/number.ts +11 -0
- package/template/packages/utils/src/string.ts +13 -0
- package/template/packages/utils/tsconfig.json +5 -0
- package/template/packages/utils/vitest.config.ts +21 -0
- package/template/pnpm-workspace.yaml +4 -0
- package/template/tsconfig.base.json +32 -0
- package/template/turbo.json +133 -0
- package/template/vitest.shared.ts +26 -0
- package/template/vitest.workspace.ts +9 -0
|
@@ -0,0 +1,726 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { Slot } from '@radix-ui/react-slot';
|
|
4
|
+
import { cva, type VariantProps } from 'class-variance-authority';
|
|
5
|
+
import { PanelLeftIcon } from 'lucide-react';
|
|
6
|
+
import * as React from 'react';
|
|
7
|
+
|
|
8
|
+
import { Button } from './button';
|
|
9
|
+
import { useIsMobile } from './hooks/use-mobile';
|
|
10
|
+
import { Input } from './input';
|
|
11
|
+
import { cn } from './lib/utils';
|
|
12
|
+
import { Separator } from './separator';
|
|
13
|
+
import {
|
|
14
|
+
Sheet,
|
|
15
|
+
SheetContent,
|
|
16
|
+
SheetDescription,
|
|
17
|
+
SheetHeader,
|
|
18
|
+
SheetTitle,
|
|
19
|
+
} from './sheet';
|
|
20
|
+
import { Skeleton } from './skeleton';
|
|
21
|
+
import {
|
|
22
|
+
Tooltip,
|
|
23
|
+
TooltipContent,
|
|
24
|
+
TooltipProvider,
|
|
25
|
+
TooltipTrigger,
|
|
26
|
+
} from './tooltip';
|
|
27
|
+
|
|
28
|
+
const SIDEBAR_COOKIE_NAME = 'sidebar_state';
|
|
29
|
+
const SIDEBAR_COOKIE_MAX_AGE = 60 * 60 * 24 * 7;
|
|
30
|
+
const SIDEBAR_WIDTH = '16rem';
|
|
31
|
+
const SIDEBAR_WIDTH_MOBILE = '18rem';
|
|
32
|
+
const SIDEBAR_WIDTH_ICON = '3rem';
|
|
33
|
+
const SIDEBAR_KEYBOARD_SHORTCUT = 'b';
|
|
34
|
+
|
|
35
|
+
type SidebarContextProps = {
|
|
36
|
+
state: 'expanded' | 'collapsed';
|
|
37
|
+
open: boolean;
|
|
38
|
+
setOpen: (open: boolean) => void;
|
|
39
|
+
openMobile: boolean;
|
|
40
|
+
setOpenMobile: (open: boolean) => void;
|
|
41
|
+
isMobile: boolean;
|
|
42
|
+
toggleSidebar: () => void;
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
const SidebarContext = React.createContext<SidebarContextProps | null>(null);
|
|
46
|
+
|
|
47
|
+
function useSidebar() {
|
|
48
|
+
const context = React.useContext(SidebarContext);
|
|
49
|
+
if (!context) {
|
|
50
|
+
throw new Error('useSidebar must be used within a SidebarProvider.');
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
return context;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
function SidebarProvider({
|
|
57
|
+
defaultOpen = true,
|
|
58
|
+
open: openProp,
|
|
59
|
+
onOpenChange: setOpenProp,
|
|
60
|
+
className,
|
|
61
|
+
style,
|
|
62
|
+
children,
|
|
63
|
+
...props
|
|
64
|
+
}: React.ComponentProps<'div'> & {
|
|
65
|
+
defaultOpen?: boolean;
|
|
66
|
+
open?: boolean;
|
|
67
|
+
onOpenChange?: (open: boolean) => void;
|
|
68
|
+
}) {
|
|
69
|
+
const isMobile = useIsMobile();
|
|
70
|
+
const [openMobile, setOpenMobile] = React.useState(false);
|
|
71
|
+
|
|
72
|
+
// This is the internal state of the sidebar.
|
|
73
|
+
// We use openProp and setOpenProp for control from outside the component.
|
|
74
|
+
const [_open, _setOpen] = React.useState(defaultOpen);
|
|
75
|
+
const open = openProp ?? _open;
|
|
76
|
+
const setOpen = React.useCallback(
|
|
77
|
+
(value: boolean | ((value: boolean) => boolean)) => {
|
|
78
|
+
const openState = typeof value === 'function' ? value(open) : value;
|
|
79
|
+
if (setOpenProp) {
|
|
80
|
+
setOpenProp(openState);
|
|
81
|
+
} else {
|
|
82
|
+
_setOpen(openState);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// This sets the cookie to keep the sidebar state.
|
|
86
|
+
document.cookie = `${SIDEBAR_COOKIE_NAME}=${openState}; path=/; max-age=${SIDEBAR_COOKIE_MAX_AGE}`;
|
|
87
|
+
},
|
|
88
|
+
[setOpenProp, open]
|
|
89
|
+
);
|
|
90
|
+
|
|
91
|
+
// Helper to toggle the sidebar.
|
|
92
|
+
const toggleSidebar = React.useCallback(() => {
|
|
93
|
+
return isMobile ? setOpenMobile((open) => !open) : setOpen((open) => !open);
|
|
94
|
+
}, [isMobile, setOpen, setOpenMobile]);
|
|
95
|
+
|
|
96
|
+
// Adds a keyboard shortcut to toggle the sidebar.
|
|
97
|
+
React.useEffect(() => {
|
|
98
|
+
const handleKeyDown = (event: KeyboardEvent) => {
|
|
99
|
+
if (
|
|
100
|
+
event.key === SIDEBAR_KEYBOARD_SHORTCUT &&
|
|
101
|
+
(event.metaKey || event.ctrlKey)
|
|
102
|
+
) {
|
|
103
|
+
event.preventDefault();
|
|
104
|
+
toggleSidebar();
|
|
105
|
+
}
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
window.addEventListener('keydown', handleKeyDown);
|
|
109
|
+
return () => window.removeEventListener('keydown', handleKeyDown);
|
|
110
|
+
}, [toggleSidebar]);
|
|
111
|
+
|
|
112
|
+
// We add a state so that we can do data-state="expanded" or "collapsed".
|
|
113
|
+
// This makes it easier to style the sidebar with Tailwind classes.
|
|
114
|
+
const state = open ? 'expanded' : 'collapsed';
|
|
115
|
+
|
|
116
|
+
const contextValue = React.useMemo<SidebarContextProps>(
|
|
117
|
+
() => ({
|
|
118
|
+
state,
|
|
119
|
+
open,
|
|
120
|
+
setOpen,
|
|
121
|
+
isMobile,
|
|
122
|
+
openMobile,
|
|
123
|
+
setOpenMobile,
|
|
124
|
+
toggleSidebar,
|
|
125
|
+
}),
|
|
126
|
+
[state, open, setOpen, isMobile, openMobile, setOpenMobile, toggleSidebar]
|
|
127
|
+
);
|
|
128
|
+
|
|
129
|
+
return (
|
|
130
|
+
<SidebarContext.Provider value={contextValue}>
|
|
131
|
+
<TooltipProvider delayDuration={0}>
|
|
132
|
+
<div
|
|
133
|
+
data-slot="sidebar-wrapper"
|
|
134
|
+
style={
|
|
135
|
+
{
|
|
136
|
+
'--sidebar-width': SIDEBAR_WIDTH,
|
|
137
|
+
'--sidebar-width-icon': SIDEBAR_WIDTH_ICON,
|
|
138
|
+
...style,
|
|
139
|
+
} as React.CSSProperties
|
|
140
|
+
}
|
|
141
|
+
className={cn(
|
|
142
|
+
'group/sidebar-wrapper has-data-[variant=inset]:bg-sidebar flex min-h-svh w-full',
|
|
143
|
+
className
|
|
144
|
+
)}
|
|
145
|
+
{...props}
|
|
146
|
+
>
|
|
147
|
+
{children}
|
|
148
|
+
</div>
|
|
149
|
+
</TooltipProvider>
|
|
150
|
+
</SidebarContext.Provider>
|
|
151
|
+
);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
function Sidebar({
|
|
155
|
+
side = 'left',
|
|
156
|
+
variant = 'sidebar',
|
|
157
|
+
collapsible = 'offcanvas',
|
|
158
|
+
className,
|
|
159
|
+
children,
|
|
160
|
+
...props
|
|
161
|
+
}: React.ComponentProps<'div'> & {
|
|
162
|
+
side?: 'left' | 'right';
|
|
163
|
+
variant?: 'sidebar' | 'floating' | 'inset';
|
|
164
|
+
collapsible?: 'offcanvas' | 'icon' | 'none';
|
|
165
|
+
}) {
|
|
166
|
+
const { isMobile, state, openMobile, setOpenMobile } = useSidebar();
|
|
167
|
+
|
|
168
|
+
if (collapsible === 'none') {
|
|
169
|
+
return (
|
|
170
|
+
<div
|
|
171
|
+
data-slot="sidebar"
|
|
172
|
+
className={cn(
|
|
173
|
+
'bg-sidebar text-sidebar-foreground w-(--sidebar-width) flex h-full flex-col',
|
|
174
|
+
className
|
|
175
|
+
)}
|
|
176
|
+
{...props}
|
|
177
|
+
>
|
|
178
|
+
{children}
|
|
179
|
+
</div>
|
|
180
|
+
);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
if (isMobile) {
|
|
184
|
+
return (
|
|
185
|
+
<Sheet open={openMobile} onOpenChange={setOpenMobile} {...props}>
|
|
186
|
+
<SheetContent
|
|
187
|
+
data-sidebar="sidebar"
|
|
188
|
+
data-slot="sidebar"
|
|
189
|
+
data-mobile="true"
|
|
190
|
+
className="bg-sidebar text-sidebar-foreground w-(--sidebar-width) p-0 [&>button]:hidden"
|
|
191
|
+
style={
|
|
192
|
+
{
|
|
193
|
+
'--sidebar-width': SIDEBAR_WIDTH_MOBILE,
|
|
194
|
+
} as React.CSSProperties
|
|
195
|
+
}
|
|
196
|
+
side={side}
|
|
197
|
+
>
|
|
198
|
+
<SheetHeader className="sr-only">
|
|
199
|
+
<SheetTitle>Sidebar</SheetTitle>
|
|
200
|
+
<SheetDescription>Displays the mobile sidebar.</SheetDescription>
|
|
201
|
+
</SheetHeader>
|
|
202
|
+
<div className="flex h-full w-full flex-col">{children}</div>
|
|
203
|
+
</SheetContent>
|
|
204
|
+
</Sheet>
|
|
205
|
+
);
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
return (
|
|
209
|
+
<div
|
|
210
|
+
className="text-sidebar-foreground group peer hidden md:block"
|
|
211
|
+
data-state={state}
|
|
212
|
+
data-collapsible={state === 'collapsed' ? collapsible : ''}
|
|
213
|
+
data-variant={variant}
|
|
214
|
+
data-side={side}
|
|
215
|
+
data-slot="sidebar"
|
|
216
|
+
>
|
|
217
|
+
{/* This is what handles the sidebar gap on desktop */}
|
|
218
|
+
<div
|
|
219
|
+
data-slot="sidebar-gap"
|
|
220
|
+
className={cn(
|
|
221
|
+
'w-(--sidebar-width) relative bg-transparent transition-[width] duration-200 ease-linear',
|
|
222
|
+
'group-data-[collapsible=offcanvas]:w-0',
|
|
223
|
+
'group-data-[side=right]:rotate-180',
|
|
224
|
+
variant === 'floating' || variant === 'inset'
|
|
225
|
+
? 'group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)+(--spacing(4)))]'
|
|
226
|
+
: 'group-data-[collapsible=icon]:w-(--sidebar-width-icon)'
|
|
227
|
+
)}
|
|
228
|
+
/>
|
|
229
|
+
<div
|
|
230
|
+
data-slot="sidebar-container"
|
|
231
|
+
className={cn(
|
|
232
|
+
'w-(--sidebar-width) fixed inset-y-0 z-10 hidden h-svh transition-[left,right,width] duration-200 ease-linear md:flex',
|
|
233
|
+
side === 'left'
|
|
234
|
+
? 'left-0 group-data-[collapsible=offcanvas]:left-[calc(var(--sidebar-width)*-1)]'
|
|
235
|
+
: 'right-0 group-data-[collapsible=offcanvas]:right-[calc(var(--sidebar-width)*-1)]',
|
|
236
|
+
// Adjust the padding for floating and inset variants.
|
|
237
|
+
variant === 'floating' || variant === 'inset'
|
|
238
|
+
? 'p-2 group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)+(--spacing(4))+2px)]'
|
|
239
|
+
: 'group-data-[collapsible=icon]:w-(--sidebar-width-icon) group-data-[side=left]:border-r group-data-[side=right]:border-l',
|
|
240
|
+
className
|
|
241
|
+
)}
|
|
242
|
+
{...props}
|
|
243
|
+
>
|
|
244
|
+
<div
|
|
245
|
+
data-sidebar="sidebar"
|
|
246
|
+
data-slot="sidebar-inner"
|
|
247
|
+
className="bg-sidebar group-data-[variant=floating]:border-sidebar-border flex h-full w-full flex-col group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:border group-data-[variant=floating]:shadow-sm"
|
|
248
|
+
>
|
|
249
|
+
{children}
|
|
250
|
+
</div>
|
|
251
|
+
</div>
|
|
252
|
+
</div>
|
|
253
|
+
);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
function SidebarTrigger({
|
|
257
|
+
className,
|
|
258
|
+
onClick,
|
|
259
|
+
...props
|
|
260
|
+
}: React.ComponentProps<typeof Button>) {
|
|
261
|
+
const { toggleSidebar } = useSidebar();
|
|
262
|
+
|
|
263
|
+
return (
|
|
264
|
+
<Button
|
|
265
|
+
data-sidebar="trigger"
|
|
266
|
+
data-slot="sidebar-trigger"
|
|
267
|
+
variant="ghost"
|
|
268
|
+
size="icon"
|
|
269
|
+
className={cn('size-7', className)}
|
|
270
|
+
onClick={(event) => {
|
|
271
|
+
onClick?.(event);
|
|
272
|
+
toggleSidebar();
|
|
273
|
+
}}
|
|
274
|
+
{...props}
|
|
275
|
+
>
|
|
276
|
+
<PanelLeftIcon />
|
|
277
|
+
<span className="sr-only">Toggle Sidebar</span>
|
|
278
|
+
</Button>
|
|
279
|
+
);
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
function SidebarRail({ className, ...props }: React.ComponentProps<'button'>) {
|
|
283
|
+
const { toggleSidebar } = useSidebar();
|
|
284
|
+
|
|
285
|
+
return (
|
|
286
|
+
<button
|
|
287
|
+
data-sidebar="rail"
|
|
288
|
+
data-slot="sidebar-rail"
|
|
289
|
+
aria-label="Toggle Sidebar"
|
|
290
|
+
tabIndex={-1}
|
|
291
|
+
onClick={toggleSidebar}
|
|
292
|
+
title="Toggle Sidebar"
|
|
293
|
+
className={cn(
|
|
294
|
+
'hover:after:bg-sidebar-border absolute inset-y-0 z-20 hidden w-4 -translate-x-1/2 transition-all ease-linear after:absolute after:inset-y-0 after:left-1/2 after:w-[2px] group-data-[side=left]:-right-4 group-data-[side=right]:left-0 sm:flex',
|
|
295
|
+
'in-data-[side=left]:cursor-w-resize in-data-[side=right]:cursor-e-resize',
|
|
296
|
+
'[[data-side=left][data-state=collapsed]_&]:cursor-e-resize [[data-side=right][data-state=collapsed]_&]:cursor-w-resize',
|
|
297
|
+
'hover:group-data-[collapsible=offcanvas]:bg-sidebar group-data-[collapsible=offcanvas]:translate-x-0 group-data-[collapsible=offcanvas]:after:left-full',
|
|
298
|
+
'[[data-side=left][data-collapsible=offcanvas]_&]:-right-2',
|
|
299
|
+
'[[data-side=right][data-collapsible=offcanvas]_&]:-left-2',
|
|
300
|
+
className
|
|
301
|
+
)}
|
|
302
|
+
{...props}
|
|
303
|
+
/>
|
|
304
|
+
);
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
function SidebarInset({ className, ...props }: React.ComponentProps<'main'>) {
|
|
308
|
+
return (
|
|
309
|
+
<main
|
|
310
|
+
data-slot="sidebar-inset"
|
|
311
|
+
className={cn(
|
|
312
|
+
'bg-background relative flex w-full flex-1 flex-col',
|
|
313
|
+
'md:peer-data-[variant=inset]:m-2 md:peer-data-[variant=inset]:ml-0 md:peer-data-[variant=inset]:peer-data-[state=collapsed]:ml-2 md:peer-data-[variant=inset]:rounded-xl md:peer-data-[variant=inset]:shadow-sm',
|
|
314
|
+
className
|
|
315
|
+
)}
|
|
316
|
+
{...props}
|
|
317
|
+
/>
|
|
318
|
+
);
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
function SidebarInput({
|
|
322
|
+
className,
|
|
323
|
+
...props
|
|
324
|
+
}: React.ComponentProps<typeof Input>) {
|
|
325
|
+
return (
|
|
326
|
+
<Input
|
|
327
|
+
data-slot="sidebar-input"
|
|
328
|
+
data-sidebar="input"
|
|
329
|
+
className={cn('bg-background h-8 w-full shadow-none', className)}
|
|
330
|
+
{...props}
|
|
331
|
+
/>
|
|
332
|
+
);
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
function SidebarHeader({ className, ...props }: React.ComponentProps<'div'>) {
|
|
336
|
+
return (
|
|
337
|
+
<div
|
|
338
|
+
data-slot="sidebar-header"
|
|
339
|
+
data-sidebar="header"
|
|
340
|
+
className={cn('flex flex-col gap-2 p-2', className)}
|
|
341
|
+
{...props}
|
|
342
|
+
/>
|
|
343
|
+
);
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
function SidebarFooter({ className, ...props }: React.ComponentProps<'div'>) {
|
|
347
|
+
return (
|
|
348
|
+
<div
|
|
349
|
+
data-slot="sidebar-footer"
|
|
350
|
+
data-sidebar="footer"
|
|
351
|
+
className={cn('flex flex-col gap-2 p-2', className)}
|
|
352
|
+
{...props}
|
|
353
|
+
/>
|
|
354
|
+
);
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
function SidebarSeparator({
|
|
358
|
+
className,
|
|
359
|
+
...props
|
|
360
|
+
}: React.ComponentProps<typeof Separator>) {
|
|
361
|
+
return (
|
|
362
|
+
<Separator
|
|
363
|
+
data-slot="sidebar-separator"
|
|
364
|
+
data-sidebar="separator"
|
|
365
|
+
className={cn('bg-sidebar-border mx-2 w-auto', className)}
|
|
366
|
+
{...props}
|
|
367
|
+
/>
|
|
368
|
+
);
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
function SidebarContent({ className, ...props }: React.ComponentProps<'div'>) {
|
|
372
|
+
return (
|
|
373
|
+
<div
|
|
374
|
+
data-slot="sidebar-content"
|
|
375
|
+
data-sidebar="content"
|
|
376
|
+
className={cn(
|
|
377
|
+
'flex min-h-0 flex-1 flex-col gap-2 overflow-auto group-data-[collapsible=icon]:overflow-hidden',
|
|
378
|
+
className
|
|
379
|
+
)}
|
|
380
|
+
{...props}
|
|
381
|
+
/>
|
|
382
|
+
);
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
function SidebarGroup({ className, ...props }: React.ComponentProps<'div'>) {
|
|
386
|
+
return (
|
|
387
|
+
<div
|
|
388
|
+
data-slot="sidebar-group"
|
|
389
|
+
data-sidebar="group"
|
|
390
|
+
className={cn('relative flex w-full min-w-0 flex-col p-2', className)}
|
|
391
|
+
{...props}
|
|
392
|
+
/>
|
|
393
|
+
);
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
function SidebarGroupLabel({
|
|
397
|
+
className,
|
|
398
|
+
asChild = false,
|
|
399
|
+
...props
|
|
400
|
+
}: React.ComponentProps<'div'> & { asChild?: boolean }) {
|
|
401
|
+
const Comp = asChild ? Slot : 'div';
|
|
402
|
+
|
|
403
|
+
return (
|
|
404
|
+
<Comp
|
|
405
|
+
data-slot="sidebar-group-label"
|
|
406
|
+
data-sidebar="group-label"
|
|
407
|
+
className={cn(
|
|
408
|
+
'text-sidebar-foreground/70 ring-sidebar-ring outline-hidden flex h-8 shrink-0 items-center rounded-md px-2 text-xs font-medium transition-[margin,opacity] duration-200 ease-linear focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0',
|
|
409
|
+
'group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0',
|
|
410
|
+
className
|
|
411
|
+
)}
|
|
412
|
+
{...props}
|
|
413
|
+
/>
|
|
414
|
+
);
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
function SidebarGroupAction({
|
|
418
|
+
className,
|
|
419
|
+
asChild = false,
|
|
420
|
+
...props
|
|
421
|
+
}: React.ComponentProps<'button'> & { asChild?: boolean }) {
|
|
422
|
+
const Comp = asChild ? Slot : 'button';
|
|
423
|
+
|
|
424
|
+
return (
|
|
425
|
+
<Comp
|
|
426
|
+
data-slot="sidebar-group-action"
|
|
427
|
+
data-sidebar="group-action"
|
|
428
|
+
className={cn(
|
|
429
|
+
'text-sidebar-foreground ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground outline-hidden absolute right-3 top-3.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 transition-transform focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0',
|
|
430
|
+
// Increases the hit area of the button on mobile.
|
|
431
|
+
'after:absolute after:-inset-2 md:after:hidden',
|
|
432
|
+
'group-data-[collapsible=icon]:hidden',
|
|
433
|
+
className
|
|
434
|
+
)}
|
|
435
|
+
{...props}
|
|
436
|
+
/>
|
|
437
|
+
);
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
function SidebarGroupContent({
|
|
441
|
+
className,
|
|
442
|
+
...props
|
|
443
|
+
}: React.ComponentProps<'div'>) {
|
|
444
|
+
return (
|
|
445
|
+
<div
|
|
446
|
+
data-slot="sidebar-group-content"
|
|
447
|
+
data-sidebar="group-content"
|
|
448
|
+
className={cn('w-full text-sm', className)}
|
|
449
|
+
{...props}
|
|
450
|
+
/>
|
|
451
|
+
);
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
function SidebarMenu({ className, ...props }: React.ComponentProps<'ul'>) {
|
|
455
|
+
return (
|
|
456
|
+
<ul
|
|
457
|
+
data-slot="sidebar-menu"
|
|
458
|
+
data-sidebar="menu"
|
|
459
|
+
className={cn('flex w-full min-w-0 flex-col gap-1', className)}
|
|
460
|
+
{...props}
|
|
461
|
+
/>
|
|
462
|
+
);
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
function SidebarMenuItem({ className, ...props }: React.ComponentProps<'li'>) {
|
|
466
|
+
return (
|
|
467
|
+
<li
|
|
468
|
+
data-slot="sidebar-menu-item"
|
|
469
|
+
data-sidebar="menu-item"
|
|
470
|
+
className={cn('group/menu-item relative', className)}
|
|
471
|
+
{...props}
|
|
472
|
+
/>
|
|
473
|
+
);
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
const sidebarMenuButtonVariants = cva(
|
|
477
|
+
'peer/menu-button flex w-full items-center gap-2 overflow-hidden rounded-md p-2 text-left text-sm outline-hidden ring-sidebar-ring transition-[width,height,padding] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 group-has-data-[sidebar=menu-action]/menu-item:pr-8 aria-disabled:pointer-events-none aria-disabled:opacity-50 data-[active=true]:bg-sidebar-accent data-[active=true]:font-medium data-[active=true]:text-sidebar-accent-foreground data-[state=open]:hover:bg-sidebar-accent data-[state=open]:hover:text-sidebar-accent-foreground group-data-[collapsible=icon]:size-8! group-data-[collapsible=icon]:p-2! [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0',
|
|
478
|
+
{
|
|
479
|
+
variants: {
|
|
480
|
+
variant: {
|
|
481
|
+
default: 'hover:bg-sidebar-accent hover:text-sidebar-accent-foreground',
|
|
482
|
+
outline:
|
|
483
|
+
'bg-background shadow-[0_0_0_1px_hsl(var(--sidebar-border))] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground hover:shadow-[0_0_0_1px_hsl(var(--sidebar-accent))]',
|
|
484
|
+
},
|
|
485
|
+
size: {
|
|
486
|
+
default: 'h-8 text-sm',
|
|
487
|
+
sm: 'h-7 text-xs',
|
|
488
|
+
lg: 'h-12 text-sm group-data-[collapsible=icon]:p-0!',
|
|
489
|
+
},
|
|
490
|
+
},
|
|
491
|
+
defaultVariants: {
|
|
492
|
+
variant: 'default',
|
|
493
|
+
size: 'default',
|
|
494
|
+
},
|
|
495
|
+
}
|
|
496
|
+
);
|
|
497
|
+
|
|
498
|
+
function SidebarMenuButton({
|
|
499
|
+
asChild = false,
|
|
500
|
+
isActive = false,
|
|
501
|
+
variant = 'default',
|
|
502
|
+
size = 'default',
|
|
503
|
+
tooltip,
|
|
504
|
+
className,
|
|
505
|
+
...props
|
|
506
|
+
}: React.ComponentProps<'button'> & {
|
|
507
|
+
asChild?: boolean;
|
|
508
|
+
isActive?: boolean;
|
|
509
|
+
tooltip?: string | React.ComponentProps<typeof TooltipContent>;
|
|
510
|
+
} & VariantProps<typeof sidebarMenuButtonVariants>) {
|
|
511
|
+
const Comp = asChild ? Slot : 'button';
|
|
512
|
+
const { isMobile, state } = useSidebar();
|
|
513
|
+
|
|
514
|
+
const button = (
|
|
515
|
+
<Comp
|
|
516
|
+
data-slot="sidebar-menu-button"
|
|
517
|
+
data-sidebar="menu-button"
|
|
518
|
+
data-size={size}
|
|
519
|
+
data-active={isActive}
|
|
520
|
+
className={cn(sidebarMenuButtonVariants({ variant, size }), className)}
|
|
521
|
+
{...props}
|
|
522
|
+
/>
|
|
523
|
+
);
|
|
524
|
+
|
|
525
|
+
if (!tooltip) {
|
|
526
|
+
return button;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
if (typeof tooltip === 'string') {
|
|
530
|
+
tooltip = {
|
|
531
|
+
children: tooltip,
|
|
532
|
+
};
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
return (
|
|
536
|
+
<Tooltip>
|
|
537
|
+
<TooltipTrigger asChild>{button}</TooltipTrigger>
|
|
538
|
+
<TooltipContent
|
|
539
|
+
side="right"
|
|
540
|
+
align="center"
|
|
541
|
+
hidden={state !== 'collapsed' || isMobile}
|
|
542
|
+
{...tooltip}
|
|
543
|
+
/>
|
|
544
|
+
</Tooltip>
|
|
545
|
+
);
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
function SidebarMenuAction({
|
|
549
|
+
className,
|
|
550
|
+
asChild = false,
|
|
551
|
+
showOnHover = false,
|
|
552
|
+
...props
|
|
553
|
+
}: React.ComponentProps<'button'> & {
|
|
554
|
+
asChild?: boolean;
|
|
555
|
+
showOnHover?: boolean;
|
|
556
|
+
}) {
|
|
557
|
+
const Comp = asChild ? Slot : 'button';
|
|
558
|
+
|
|
559
|
+
return (
|
|
560
|
+
<Comp
|
|
561
|
+
data-slot="sidebar-menu-action"
|
|
562
|
+
data-sidebar="menu-action"
|
|
563
|
+
className={cn(
|
|
564
|
+
'text-sidebar-foreground ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground peer-hover/menu-button:text-sidebar-accent-foreground outline-hidden absolute right-1 top-1.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 transition-transform focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0',
|
|
565
|
+
// Increases the hit area of the button on mobile.
|
|
566
|
+
'after:absolute after:-inset-2 md:after:hidden',
|
|
567
|
+
'peer-data-[size=sm]/menu-button:top-1',
|
|
568
|
+
'peer-data-[size=default]/menu-button:top-1.5',
|
|
569
|
+
'peer-data-[size=lg]/menu-button:top-2.5',
|
|
570
|
+
'group-data-[collapsible=icon]:hidden',
|
|
571
|
+
showOnHover &&
|
|
572
|
+
'peer-data-[active=true]/menu-button:text-sidebar-accent-foreground group-focus-within/menu-item:opacity-100 group-hover/menu-item:opacity-100 data-[state=open]:opacity-100 md:opacity-0',
|
|
573
|
+
className
|
|
574
|
+
)}
|
|
575
|
+
{...props}
|
|
576
|
+
/>
|
|
577
|
+
);
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
function SidebarMenuBadge({
|
|
581
|
+
className,
|
|
582
|
+
...props
|
|
583
|
+
}: React.ComponentProps<'div'>) {
|
|
584
|
+
return (
|
|
585
|
+
<div
|
|
586
|
+
data-slot="sidebar-menu-badge"
|
|
587
|
+
data-sidebar="menu-badge"
|
|
588
|
+
className={cn(
|
|
589
|
+
'text-sidebar-foreground pointer-events-none absolute right-1 flex h-5 min-w-5 select-none items-center justify-center rounded-md px-1 text-xs font-medium tabular-nums',
|
|
590
|
+
'peer-hover/menu-button:text-sidebar-accent-foreground peer-data-[active=true]/menu-button:text-sidebar-accent-foreground',
|
|
591
|
+
'peer-data-[size=sm]/menu-button:top-1',
|
|
592
|
+
'peer-data-[size=default]/menu-button:top-1.5',
|
|
593
|
+
'peer-data-[size=lg]/menu-button:top-2.5',
|
|
594
|
+
'group-data-[collapsible=icon]:hidden',
|
|
595
|
+
className
|
|
596
|
+
)}
|
|
597
|
+
{...props}
|
|
598
|
+
/>
|
|
599
|
+
);
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
function SidebarMenuSkeleton({
|
|
603
|
+
className,
|
|
604
|
+
showIcon = false,
|
|
605
|
+
...props
|
|
606
|
+
}: React.ComponentProps<'div'> & {
|
|
607
|
+
showIcon?: boolean;
|
|
608
|
+
}) {
|
|
609
|
+
// Random width between 50 to 90%.
|
|
610
|
+
const width = React.useMemo(() => {
|
|
611
|
+
return `${Math.floor(Math.random() * 40) + 50}%`;
|
|
612
|
+
}, []);
|
|
613
|
+
|
|
614
|
+
return (
|
|
615
|
+
<div
|
|
616
|
+
data-slot="sidebar-menu-skeleton"
|
|
617
|
+
data-sidebar="menu-skeleton"
|
|
618
|
+
className={cn('flex h-8 items-center gap-2 rounded-md px-2', className)}
|
|
619
|
+
{...props}
|
|
620
|
+
>
|
|
621
|
+
{showIcon && (
|
|
622
|
+
<Skeleton
|
|
623
|
+
className="size-4 rounded-md"
|
|
624
|
+
data-sidebar="menu-skeleton-icon"
|
|
625
|
+
/>
|
|
626
|
+
)}
|
|
627
|
+
<Skeleton
|
|
628
|
+
className="max-w-(--skeleton-width) h-4 flex-1"
|
|
629
|
+
data-sidebar="menu-skeleton-text"
|
|
630
|
+
style={
|
|
631
|
+
{
|
|
632
|
+
'--skeleton-width': width,
|
|
633
|
+
} as React.CSSProperties & Record<string, string>
|
|
634
|
+
}
|
|
635
|
+
/>
|
|
636
|
+
</div>
|
|
637
|
+
);
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
function SidebarMenuSub({ className, ...props }: React.ComponentProps<'ul'>) {
|
|
641
|
+
return (
|
|
642
|
+
<ul
|
|
643
|
+
data-slot="sidebar-menu-sub"
|
|
644
|
+
data-sidebar="menu-sub"
|
|
645
|
+
className={cn(
|
|
646
|
+
'border-sidebar-border mx-3.5 flex min-w-0 translate-x-px flex-col gap-1 border-l px-2.5 py-0.5',
|
|
647
|
+
'group-data-[collapsible=icon]:hidden',
|
|
648
|
+
className
|
|
649
|
+
)}
|
|
650
|
+
{...props}
|
|
651
|
+
/>
|
|
652
|
+
);
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
function SidebarMenuSubItem({
|
|
656
|
+
className,
|
|
657
|
+
...props
|
|
658
|
+
}: React.ComponentProps<'li'>) {
|
|
659
|
+
return (
|
|
660
|
+
<li
|
|
661
|
+
data-slot="sidebar-menu-sub-item"
|
|
662
|
+
data-sidebar="menu-sub-item"
|
|
663
|
+
className={cn('group/menu-sub-item relative', className)}
|
|
664
|
+
{...props}
|
|
665
|
+
/>
|
|
666
|
+
);
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
function SidebarMenuSubButton({
|
|
670
|
+
asChild = false,
|
|
671
|
+
size = 'md',
|
|
672
|
+
isActive = false,
|
|
673
|
+
className,
|
|
674
|
+
...props
|
|
675
|
+
}: React.ComponentProps<'a'> & {
|
|
676
|
+
asChild?: boolean;
|
|
677
|
+
size?: 'sm' | 'md';
|
|
678
|
+
isActive?: boolean;
|
|
679
|
+
}) {
|
|
680
|
+
const Comp = asChild ? Slot : 'a';
|
|
681
|
+
|
|
682
|
+
return (
|
|
683
|
+
<Comp
|
|
684
|
+
data-slot="sidebar-menu-sub-button"
|
|
685
|
+
data-sidebar="menu-sub-button"
|
|
686
|
+
data-size={size}
|
|
687
|
+
data-active={isActive}
|
|
688
|
+
className={cn(
|
|
689
|
+
'text-sidebar-foreground ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground active:bg-sidebar-accent active:text-sidebar-accent-foreground [&>svg]:text-sidebar-accent-foreground outline-hidden flex h-7 min-w-0 -translate-x-px items-center gap-2 overflow-hidden rounded-md px-2 focus-visible:ring-2 disabled:pointer-events-none disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0',
|
|
690
|
+
'data-[active=true]:bg-sidebar-accent data-[active=true]:text-sidebar-accent-foreground',
|
|
691
|
+
size === 'sm' && 'text-xs',
|
|
692
|
+
size === 'md' && 'text-sm',
|
|
693
|
+
'group-data-[collapsible=icon]:hidden',
|
|
694
|
+
className
|
|
695
|
+
)}
|
|
696
|
+
{...props}
|
|
697
|
+
/>
|
|
698
|
+
);
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
export {
|
|
702
|
+
Sidebar,
|
|
703
|
+
SidebarContent,
|
|
704
|
+
SidebarFooter,
|
|
705
|
+
SidebarGroup,
|
|
706
|
+
SidebarGroupAction,
|
|
707
|
+
SidebarGroupContent,
|
|
708
|
+
SidebarGroupLabel,
|
|
709
|
+
SidebarHeader,
|
|
710
|
+
SidebarInput,
|
|
711
|
+
SidebarInset,
|
|
712
|
+
SidebarMenu,
|
|
713
|
+
SidebarMenuAction,
|
|
714
|
+
SidebarMenuBadge,
|
|
715
|
+
SidebarMenuButton,
|
|
716
|
+
SidebarMenuItem,
|
|
717
|
+
SidebarMenuSkeleton,
|
|
718
|
+
SidebarMenuSub,
|
|
719
|
+
SidebarMenuSubButton,
|
|
720
|
+
SidebarMenuSubItem,
|
|
721
|
+
SidebarProvider,
|
|
722
|
+
SidebarRail,
|
|
723
|
+
SidebarSeparator,
|
|
724
|
+
SidebarTrigger,
|
|
725
|
+
useSidebar,
|
|
726
|
+
};
|