itsi 0.2.15 → 0.2.17
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +23 -0
- data/Cargo.lock +76 -74
- data/crates/itsi_acme/Cargo.toml +1 -1
- data/crates/itsi_scheduler/Cargo.toml +1 -1
- data/crates/itsi_scheduler/extconf.rb +3 -1
- data/crates/itsi_server/Cargo.lock +1 -1
- data/crates/itsi_server/Cargo.toml +3 -1
- data/crates/itsi_server/extconf.rb +3 -1
- data/crates/itsi_server/src/lib.rs +7 -1
- data/crates/itsi_server/src/ruby_types/itsi_body_proxy/mod.rs +2 -0
- data/crates/itsi_server/src/ruby_types/itsi_grpc_call.rs +6 -6
- data/crates/itsi_server/src/ruby_types/itsi_grpc_response_stream/mod.rs +14 -13
- data/crates/itsi_server/src/ruby_types/itsi_http_request.rs +71 -42
- data/crates/itsi_server/src/ruby_types/itsi_http_response.rs +151 -152
- data/crates/itsi_server/src/ruby_types/itsi_server/file_watcher.rs +6 -15
- data/crates/itsi_server/src/ruby_types/itsi_server/itsi_server_config.rs +32 -6
- data/crates/itsi_server/src/ruby_types/itsi_server.rs +1 -1
- data/crates/itsi_server/src/server/binds/listener.rs +49 -8
- data/crates/itsi_server/src/server/frame_stream.rs +142 -0
- data/crates/itsi_server/src/server/http_message_types.rs +143 -10
- data/crates/itsi_server/src/server/io_stream.rs +28 -5
- data/crates/itsi_server/src/server/lifecycle_event.rs +1 -1
- data/crates/itsi_server/src/server/middleware_stack/middlewares/auth_basic.rs +2 -3
- data/crates/itsi_server/src/server/middleware_stack/middlewares/compression.rs +8 -10
- data/crates/itsi_server/src/server/middleware_stack/middlewares/cors.rs +2 -3
- data/crates/itsi_server/src/server/middleware_stack/middlewares/csp.rs +3 -3
- data/crates/itsi_server/src/server/middleware_stack/middlewares/error_response/default_responses.rs +54 -58
- data/crates/itsi_server/src/server/middleware_stack/middlewares/error_response.rs +6 -9
- data/crates/itsi_server/src/server/middleware_stack/middlewares/etag.rs +27 -42
- data/crates/itsi_server/src/server/middleware_stack/middlewares/log_requests.rs +65 -14
- data/crates/itsi_server/src/server/middleware_stack/middlewares/max_body.rs +1 -1
- data/crates/itsi_server/src/server/middleware_stack/middlewares/proxy.rs +8 -11
- data/crates/itsi_server/src/server/middleware_stack/middlewares/rate_limit.rs +21 -8
- data/crates/itsi_server/src/server/middleware_stack/middlewares/redirect.rs +2 -3
- data/crates/itsi_server/src/server/middleware_stack/middlewares/ruby_app.rs +1 -5
- data/crates/itsi_server/src/server/middleware_stack/middlewares/static_assets.rs +1 -2
- data/crates/itsi_server/src/server/middleware_stack/middlewares/static_response.rs +13 -6
- data/crates/itsi_server/src/server/mod.rs +1 -0
- data/crates/itsi_server/src/server/process_worker.rs +5 -5
- data/crates/itsi_server/src/server/serve_strategy/acceptor.rs +100 -0
- data/crates/itsi_server/src/server/serve_strategy/cluster_mode.rs +87 -31
- data/crates/itsi_server/src/server/serve_strategy/mod.rs +1 -0
- data/crates/itsi_server/src/server/serve_strategy/single_mode.rs +166 -206
- data/crates/itsi_server/src/server/signal.rs +37 -9
- data/crates/itsi_server/src/server/thread_worker.rs +92 -70
- data/crates/itsi_server/src/services/itsi_http_service.rs +67 -62
- data/crates/itsi_server/src/services/mime_types.rs +185 -183
- data/crates/itsi_server/src/services/rate_limiter.rs +16 -34
- data/crates/itsi_server/src/services/static_file_server.rs +35 -60
- data/docs/benchmark-dashboard/.gitignore +27 -0
- data/docs/benchmark-dashboard/app/api/benchmarks/route.ts +22 -0
- data/docs/benchmark-dashboard/app/globals.css +94 -0
- data/docs/benchmark-dashboard/app/layout.tsx +20 -0
- data/docs/benchmark-dashboard/app/page.tsx +252 -0
- data/docs/benchmark-dashboard/components/benchmark-dashboard.tsx +1663 -0
- data/docs/benchmark-dashboard/components/theme-provider.tsx +11 -0
- data/docs/benchmark-dashboard/components/ui/accordion.tsx +58 -0
- data/docs/benchmark-dashboard/components/ui/alert-dialog.tsx +141 -0
- data/docs/benchmark-dashboard/components/ui/alert.tsx +59 -0
- data/docs/benchmark-dashboard/components/ui/aspect-ratio.tsx +7 -0
- data/docs/benchmark-dashboard/components/ui/avatar.tsx +50 -0
- data/docs/benchmark-dashboard/components/ui/badge.tsx +36 -0
- data/docs/benchmark-dashboard/components/ui/breadcrumb.tsx +115 -0
- data/docs/benchmark-dashboard/components/ui/button.tsx +56 -0
- data/docs/benchmark-dashboard/components/ui/calendar.tsx +66 -0
- data/docs/benchmark-dashboard/components/ui/card.tsx +79 -0
- data/docs/benchmark-dashboard/components/ui/carousel.tsx +262 -0
- data/docs/benchmark-dashboard/components/ui/chart.tsx +365 -0
- data/docs/benchmark-dashboard/components/ui/checkbox.tsx +30 -0
- data/docs/benchmark-dashboard/components/ui/collapsible.tsx +11 -0
- data/docs/benchmark-dashboard/components/ui/command.tsx +153 -0
- data/docs/benchmark-dashboard/components/ui/context-menu.tsx +200 -0
- data/docs/benchmark-dashboard/components/ui/dialog.tsx +122 -0
- data/docs/benchmark-dashboard/components/ui/drawer.tsx +118 -0
- data/docs/benchmark-dashboard/components/ui/dropdown-menu.tsx +200 -0
- data/docs/benchmark-dashboard/components/ui/form.tsx +178 -0
- data/docs/benchmark-dashboard/components/ui/hover-card.tsx +29 -0
- data/docs/benchmark-dashboard/components/ui/input-otp.tsx +71 -0
- data/docs/benchmark-dashboard/components/ui/input.tsx +22 -0
- data/docs/benchmark-dashboard/components/ui/label.tsx +26 -0
- data/docs/benchmark-dashboard/components/ui/loading-spinner.tsx +12 -0
- data/docs/benchmark-dashboard/components/ui/menubar.tsx +236 -0
- data/docs/benchmark-dashboard/components/ui/navigation-menu.tsx +128 -0
- data/docs/benchmark-dashboard/components/ui/pagination.tsx +117 -0
- data/docs/benchmark-dashboard/components/ui/popover.tsx +31 -0
- data/docs/benchmark-dashboard/components/ui/progress.tsx +28 -0
- data/docs/benchmark-dashboard/components/ui/radio-group.tsx +44 -0
- data/docs/benchmark-dashboard/components/ui/resizable.tsx +45 -0
- data/docs/benchmark-dashboard/components/ui/scroll-area.tsx +48 -0
- data/docs/benchmark-dashboard/components/ui/select.tsx +160 -0
- data/docs/benchmark-dashboard/components/ui/separator.tsx +31 -0
- data/docs/benchmark-dashboard/components/ui/sheet.tsx +140 -0
- data/docs/benchmark-dashboard/components/ui/sidebar.tsx +763 -0
- data/docs/benchmark-dashboard/components/ui/skeleton.tsx +15 -0
- data/docs/benchmark-dashboard/components/ui/slider.tsx +28 -0
- data/docs/benchmark-dashboard/components/ui/sonner.tsx +31 -0
- data/docs/benchmark-dashboard/components/ui/switch.tsx +29 -0
- data/docs/benchmark-dashboard/components/ui/table.tsx +117 -0
- data/docs/benchmark-dashboard/components/ui/tabs.tsx +55 -0
- data/docs/benchmark-dashboard/components/ui/textarea.tsx +22 -0
- data/docs/benchmark-dashboard/components/ui/toast.tsx +129 -0
- data/docs/benchmark-dashboard/components/ui/toaster.tsx +35 -0
- data/docs/benchmark-dashboard/components/ui/toggle-group.tsx +61 -0
- data/docs/benchmark-dashboard/components/ui/toggle.tsx +45 -0
- data/docs/benchmark-dashboard/components/ui/tooltip.tsx +30 -0
- data/docs/benchmark-dashboard/components/ui/use-mobile.tsx +19 -0
- data/docs/benchmark-dashboard/components/ui/use-toast.ts +194 -0
- data/docs/benchmark-dashboard/components.json +21 -0
- data/docs/benchmark-dashboard/dist/benchmark-dashboard.css +1 -0
- data/docs/benchmark-dashboard/dist/benchmark-dashboard.iife.js +211 -0
- data/docs/benchmark-dashboard/dist/placeholder-logo.png +0 -0
- data/docs/benchmark-dashboard/dist/placeholder-logo.svg +1 -0
- data/docs/benchmark-dashboard/dist/placeholder-user.jpg +0 -0
- data/docs/benchmark-dashboard/dist/placeholder.jpg +0 -0
- data/docs/benchmark-dashboard/dist/placeholder.svg +1 -0
- data/docs/benchmark-dashboard/embed.tsx +13 -0
- data/docs/benchmark-dashboard/hooks/use-mobile.tsx +19 -0
- data/docs/benchmark-dashboard/hooks/use-toast.ts +194 -0
- data/docs/benchmark-dashboard/lib/benchmark-utils.ts +54 -0
- data/docs/benchmark-dashboard/lib/utils.ts +6 -0
- data/docs/benchmark-dashboard/next.config.mjs +14 -0
- data/docs/benchmark-dashboard/package-lock.json +5859 -0
- data/docs/benchmark-dashboard/package.json +72 -0
- data/docs/benchmark-dashboard/pnpm-lock.yaml +5 -0
- data/docs/benchmark-dashboard/postcss.config.mjs +8 -0
- data/docs/benchmark-dashboard/styles/globals.css +94 -0
- data/docs/benchmark-dashboard/tailwind.config.ts +96 -0
- data/docs/benchmark-dashboard/tsconfig.json +27 -0
- data/docs/benchmark-dashboard/vite.config.ts +24 -0
- data/docs/build.rb +52 -0
- data/docs/content/benchmarks/index.md +96 -0
- data/docs/content/features/_index.md +1 -1
- data/docs/content/getting_started/_index.md +76 -46
- data/docs/hugo.yaml +3 -0
- data/docs/static/results.json +1 -0
- data/docs/static/scripts/benchmark-dashboard.iife.js +211 -0
- data/docs/static/styles/benchmark-dashboard.css +1 -0
- data/examples/rails_with_static_assets/Gemfile.lock +1 -1
- data/examples/rails_with_static_assets/Itsi.rb +4 -1
- data/gems/scheduler/Cargo.lock +15 -15
- data/gems/scheduler/lib/itsi/scheduler/version.rb +1 -1
- data/gems/server/Cargo.lock +75 -73
- data/gems/server/exe/itsi +6 -1
- data/gems/server/lib/itsi/http_request.rb +31 -39
- data/gems/server/lib/itsi/http_response.rb +5 -0
- data/gems/server/lib/itsi/rack_env_pool.rb +59 -0
- data/gems/server/lib/itsi/server/config/config_helpers.rb +1 -2
- data/gems/server/lib/itsi/server/config/dsl.rb +5 -4
- data/gems/server/lib/itsi/server/config/middleware/etag.md +3 -7
- data/gems/server/lib/itsi/server/config/middleware/etag.rb +2 -4
- data/gems/server/lib/itsi/server/config/middleware/proxy.rb +1 -1
- data/gems/server/lib/itsi/server/config/middleware/rackup_file.rb +2 -2
- data/gems/server/lib/itsi/server/config/options/auto_reload_config.rb +6 -2
- data/gems/server/lib/itsi/server/config/options/include.rb +5 -2
- data/gems/server/lib/itsi/server/config/options/listen_backlog.rb +1 -1
- data/gems/server/lib/itsi/server/config/options/pipeline_flush.md +16 -0
- data/gems/server/lib/itsi/server/config/options/pipeline_flush.rb +19 -0
- data/gems/server/lib/itsi/server/config/options/send_buffer_size.md +15 -0
- data/gems/server/lib/itsi/server/config/options/send_buffer_size.rb +19 -0
- data/gems/server/lib/itsi/server/config/options/writev.md +25 -0
- data/gems/server/lib/itsi/server/config/options/writev.rb +19 -0
- data/gems/server/lib/itsi/server/config.rb +43 -31
- data/gems/server/lib/itsi/server/default_config/Itsi.rb +1 -4
- data/gems/server/lib/itsi/server/grpc/grpc_call.rb +2 -0
- data/gems/server/lib/itsi/server/grpc/grpc_interface.rb +2 -2
- data/gems/server/lib/itsi/server/rack/handler/itsi.rb +3 -1
- data/gems/server/lib/itsi/server/rack_interface.rb +17 -12
- data/gems/server/lib/itsi/server/route_tester.rb +1 -1
- data/gems/server/lib/itsi/server/scheduler_interface.rb +2 -0
- data/gems/server/lib/itsi/server/version.rb +1 -1
- data/gems/server/lib/itsi/server.rb +1 -0
- data/gems/server/lib/ruby_lsp/itsi/addon.rb +12 -13
- data/gems/server/test/helpers/test_helper.rb +12 -13
- data/gems/server/test/middleware/etag.rb +3 -3
- data/gems/server/test/middleware/grpc/grpc.rb +13 -14
- data/gems/server/test/middleware/grpc/test_service_impl.rb +3 -3
- data/gems/server/test/middleware/proxy.rb +262 -268
- data/gems/server/test/options/ruby_thread_request_backlog_size.rb +2 -3
- data/lib/itsi/version.rb +1 -1
- metadata +99 -6
- data/tasks.txt +0 -27
@@ -0,0 +1,11 @@
|
|
1
|
+
'use client'
|
2
|
+
|
3
|
+
import * as React from 'react'
|
4
|
+
import {
|
5
|
+
ThemeProvider as NextThemesProvider,
|
6
|
+
type ThemeProviderProps,
|
7
|
+
} from 'next-themes'
|
8
|
+
|
9
|
+
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
|
10
|
+
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
|
11
|
+
}
|
@@ -0,0 +1,58 @@
|
|
1
|
+
"use client"
|
2
|
+
|
3
|
+
import * as React from "react"
|
4
|
+
import * as AccordionPrimitive from "@radix-ui/react-accordion"
|
5
|
+
import { ChevronDown } from "lucide-react"
|
6
|
+
|
7
|
+
import { cn } from "@/lib/utils"
|
8
|
+
|
9
|
+
const Accordion = AccordionPrimitive.Root
|
10
|
+
|
11
|
+
const AccordionItem = React.forwardRef<
|
12
|
+
React.ElementRef<typeof AccordionPrimitive.Item>,
|
13
|
+
React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Item>
|
14
|
+
>(({ className, ...props }, ref) => (
|
15
|
+
<AccordionPrimitive.Item
|
16
|
+
ref={ref}
|
17
|
+
className={cn("border-b", className)}
|
18
|
+
{...props}
|
19
|
+
/>
|
20
|
+
))
|
21
|
+
AccordionItem.displayName = "AccordionItem"
|
22
|
+
|
23
|
+
const AccordionTrigger = React.forwardRef<
|
24
|
+
React.ElementRef<typeof AccordionPrimitive.Trigger>,
|
25
|
+
React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Trigger>
|
26
|
+
>(({ className, children, ...props }, ref) => (
|
27
|
+
<AccordionPrimitive.Header className="flex">
|
28
|
+
<AccordionPrimitive.Trigger
|
29
|
+
ref={ref}
|
30
|
+
className={cn(
|
31
|
+
"flex flex-1 items-center justify-between py-4 font-medium transition-all hover:underline [&[data-state=open]>svg]:rotate-180",
|
32
|
+
className
|
33
|
+
)}
|
34
|
+
{...props}
|
35
|
+
>
|
36
|
+
{children}
|
37
|
+
<ChevronDown className="h-4 w-4 shrink-0 transition-transform duration-200" />
|
38
|
+
</AccordionPrimitive.Trigger>
|
39
|
+
</AccordionPrimitive.Header>
|
40
|
+
))
|
41
|
+
AccordionTrigger.displayName = AccordionPrimitive.Trigger.displayName
|
42
|
+
|
43
|
+
const AccordionContent = React.forwardRef<
|
44
|
+
React.ElementRef<typeof AccordionPrimitive.Content>,
|
45
|
+
React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Content>
|
46
|
+
>(({ className, children, ...props }, ref) => (
|
47
|
+
<AccordionPrimitive.Content
|
48
|
+
ref={ref}
|
49
|
+
className="overflow-hidden text-sm transition-all data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down"
|
50
|
+
{...props}
|
51
|
+
>
|
52
|
+
<div className={cn("pb-4 pt-0", className)}>{children}</div>
|
53
|
+
</AccordionPrimitive.Content>
|
54
|
+
))
|
55
|
+
|
56
|
+
AccordionContent.displayName = AccordionPrimitive.Content.displayName
|
57
|
+
|
58
|
+
export { Accordion, AccordionItem, AccordionTrigger, AccordionContent }
|
@@ -0,0 +1,141 @@
|
|
1
|
+
"use client"
|
2
|
+
|
3
|
+
import * as React from "react"
|
4
|
+
import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog"
|
5
|
+
|
6
|
+
import { cn } from "@/lib/utils"
|
7
|
+
import { buttonVariants } from "@/components/ui/button"
|
8
|
+
|
9
|
+
const AlertDialog = AlertDialogPrimitive.Root
|
10
|
+
|
11
|
+
const AlertDialogTrigger = AlertDialogPrimitive.Trigger
|
12
|
+
|
13
|
+
const AlertDialogPortal = AlertDialogPrimitive.Portal
|
14
|
+
|
15
|
+
const AlertDialogOverlay = React.forwardRef<
|
16
|
+
React.ElementRef<typeof AlertDialogPrimitive.Overlay>,
|
17
|
+
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Overlay>
|
18
|
+
>(({ className, ...props }, ref) => (
|
19
|
+
<AlertDialogPrimitive.Overlay
|
20
|
+
className={cn(
|
21
|
+
"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
22
|
+
className
|
23
|
+
)}
|
24
|
+
{...props}
|
25
|
+
ref={ref}
|
26
|
+
/>
|
27
|
+
))
|
28
|
+
AlertDialogOverlay.displayName = AlertDialogPrimitive.Overlay.displayName
|
29
|
+
|
30
|
+
const AlertDialogContent = React.forwardRef<
|
31
|
+
React.ElementRef<typeof AlertDialogPrimitive.Content>,
|
32
|
+
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Content>
|
33
|
+
>(({ className, ...props }, ref) => (
|
34
|
+
<AlertDialogPortal>
|
35
|
+
<AlertDialogOverlay />
|
36
|
+
<AlertDialogPrimitive.Content
|
37
|
+
ref={ref}
|
38
|
+
className={cn(
|
39
|
+
"fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
|
40
|
+
className
|
41
|
+
)}
|
42
|
+
{...props}
|
43
|
+
/>
|
44
|
+
</AlertDialogPortal>
|
45
|
+
))
|
46
|
+
AlertDialogContent.displayName = AlertDialogPrimitive.Content.displayName
|
47
|
+
|
48
|
+
const AlertDialogHeader = ({
|
49
|
+
className,
|
50
|
+
...props
|
51
|
+
}: React.HTMLAttributes<HTMLDivElement>) => (
|
52
|
+
<div
|
53
|
+
className={cn(
|
54
|
+
"flex flex-col space-y-2 text-center sm:text-left",
|
55
|
+
className
|
56
|
+
)}
|
57
|
+
{...props}
|
58
|
+
/>
|
59
|
+
)
|
60
|
+
AlertDialogHeader.displayName = "AlertDialogHeader"
|
61
|
+
|
62
|
+
const AlertDialogFooter = ({
|
63
|
+
className,
|
64
|
+
...props
|
65
|
+
}: React.HTMLAttributes<HTMLDivElement>) => (
|
66
|
+
<div
|
67
|
+
className={cn(
|
68
|
+
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
|
69
|
+
className
|
70
|
+
)}
|
71
|
+
{...props}
|
72
|
+
/>
|
73
|
+
)
|
74
|
+
AlertDialogFooter.displayName = "AlertDialogFooter"
|
75
|
+
|
76
|
+
const AlertDialogTitle = React.forwardRef<
|
77
|
+
React.ElementRef<typeof AlertDialogPrimitive.Title>,
|
78
|
+
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Title>
|
79
|
+
>(({ className, ...props }, ref) => (
|
80
|
+
<AlertDialogPrimitive.Title
|
81
|
+
ref={ref}
|
82
|
+
className={cn("text-lg font-semibold", className)}
|
83
|
+
{...props}
|
84
|
+
/>
|
85
|
+
))
|
86
|
+
AlertDialogTitle.displayName = AlertDialogPrimitive.Title.displayName
|
87
|
+
|
88
|
+
const AlertDialogDescription = React.forwardRef<
|
89
|
+
React.ElementRef<typeof AlertDialogPrimitive.Description>,
|
90
|
+
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Description>
|
91
|
+
>(({ className, ...props }, ref) => (
|
92
|
+
<AlertDialogPrimitive.Description
|
93
|
+
ref={ref}
|
94
|
+
className={cn("text-sm text-muted-foreground", className)}
|
95
|
+
{...props}
|
96
|
+
/>
|
97
|
+
))
|
98
|
+
AlertDialogDescription.displayName =
|
99
|
+
AlertDialogPrimitive.Description.displayName
|
100
|
+
|
101
|
+
const AlertDialogAction = React.forwardRef<
|
102
|
+
React.ElementRef<typeof AlertDialogPrimitive.Action>,
|
103
|
+
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Action>
|
104
|
+
>(({ className, ...props }, ref) => (
|
105
|
+
<AlertDialogPrimitive.Action
|
106
|
+
ref={ref}
|
107
|
+
className={cn(buttonVariants(), className)}
|
108
|
+
{...props}
|
109
|
+
/>
|
110
|
+
))
|
111
|
+
AlertDialogAction.displayName = AlertDialogPrimitive.Action.displayName
|
112
|
+
|
113
|
+
const AlertDialogCancel = React.forwardRef<
|
114
|
+
React.ElementRef<typeof AlertDialogPrimitive.Cancel>,
|
115
|
+
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Cancel>
|
116
|
+
>(({ className, ...props }, ref) => (
|
117
|
+
<AlertDialogPrimitive.Cancel
|
118
|
+
ref={ref}
|
119
|
+
className={cn(
|
120
|
+
buttonVariants({ variant: "outline" }),
|
121
|
+
"mt-2 sm:mt-0",
|
122
|
+
className
|
123
|
+
)}
|
124
|
+
{...props}
|
125
|
+
/>
|
126
|
+
))
|
127
|
+
AlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName
|
128
|
+
|
129
|
+
export {
|
130
|
+
AlertDialog,
|
131
|
+
AlertDialogPortal,
|
132
|
+
AlertDialogOverlay,
|
133
|
+
AlertDialogTrigger,
|
134
|
+
AlertDialogContent,
|
135
|
+
AlertDialogHeader,
|
136
|
+
AlertDialogFooter,
|
137
|
+
AlertDialogTitle,
|
138
|
+
AlertDialogDescription,
|
139
|
+
AlertDialogAction,
|
140
|
+
AlertDialogCancel,
|
141
|
+
}
|
@@ -0,0 +1,59 @@
|
|
1
|
+
import * as React from "react"
|
2
|
+
import { cva, type VariantProps } from "class-variance-authority"
|
3
|
+
|
4
|
+
import { cn } from "@/lib/utils"
|
5
|
+
|
6
|
+
const alertVariants = cva(
|
7
|
+
"relative w-full rounded-lg border p-4 [&>svg~*]:pl-7 [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground",
|
8
|
+
{
|
9
|
+
variants: {
|
10
|
+
variant: {
|
11
|
+
default: "bg-background text-foreground",
|
12
|
+
destructive:
|
13
|
+
"border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive",
|
14
|
+
},
|
15
|
+
},
|
16
|
+
defaultVariants: {
|
17
|
+
variant: "default",
|
18
|
+
},
|
19
|
+
}
|
20
|
+
)
|
21
|
+
|
22
|
+
const Alert = React.forwardRef<
|
23
|
+
HTMLDivElement,
|
24
|
+
React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof alertVariants>
|
25
|
+
>(({ className, variant, ...props }, ref) => (
|
26
|
+
<div
|
27
|
+
ref={ref}
|
28
|
+
role="alert"
|
29
|
+
className={cn(alertVariants({ variant }), className)}
|
30
|
+
{...props}
|
31
|
+
/>
|
32
|
+
))
|
33
|
+
Alert.displayName = "Alert"
|
34
|
+
|
35
|
+
const AlertTitle = React.forwardRef<
|
36
|
+
HTMLParagraphElement,
|
37
|
+
React.HTMLAttributes<HTMLHeadingElement>
|
38
|
+
>(({ className, ...props }, ref) => (
|
39
|
+
<h5
|
40
|
+
ref={ref}
|
41
|
+
className={cn("mb-1 font-medium leading-none tracking-tight", className)}
|
42
|
+
{...props}
|
43
|
+
/>
|
44
|
+
))
|
45
|
+
AlertTitle.displayName = "AlertTitle"
|
46
|
+
|
47
|
+
const AlertDescription = React.forwardRef<
|
48
|
+
HTMLParagraphElement,
|
49
|
+
React.HTMLAttributes<HTMLParagraphElement>
|
50
|
+
>(({ className, ...props }, ref) => (
|
51
|
+
<div
|
52
|
+
ref={ref}
|
53
|
+
className={cn("text-sm [&_p]:leading-relaxed", className)}
|
54
|
+
{...props}
|
55
|
+
/>
|
56
|
+
))
|
57
|
+
AlertDescription.displayName = "AlertDescription"
|
58
|
+
|
59
|
+
export { Alert, AlertTitle, AlertDescription }
|
@@ -0,0 +1,50 @@
|
|
1
|
+
"use client"
|
2
|
+
|
3
|
+
import * as React from "react"
|
4
|
+
import * as AvatarPrimitive from "@radix-ui/react-avatar"
|
5
|
+
|
6
|
+
import { cn } from "@/lib/utils"
|
7
|
+
|
8
|
+
const Avatar = React.forwardRef<
|
9
|
+
React.ElementRef<typeof AvatarPrimitive.Root>,
|
10
|
+
React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Root>
|
11
|
+
>(({ className, ...props }, ref) => (
|
12
|
+
<AvatarPrimitive.Root
|
13
|
+
ref={ref}
|
14
|
+
className={cn(
|
15
|
+
"relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full",
|
16
|
+
className
|
17
|
+
)}
|
18
|
+
{...props}
|
19
|
+
/>
|
20
|
+
))
|
21
|
+
Avatar.displayName = AvatarPrimitive.Root.displayName
|
22
|
+
|
23
|
+
const AvatarImage = React.forwardRef<
|
24
|
+
React.ElementRef<typeof AvatarPrimitive.Image>,
|
25
|
+
React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Image>
|
26
|
+
>(({ className, ...props }, ref) => (
|
27
|
+
<AvatarPrimitive.Image
|
28
|
+
ref={ref}
|
29
|
+
className={cn("aspect-square h-full w-full", className)}
|
30
|
+
{...props}
|
31
|
+
/>
|
32
|
+
))
|
33
|
+
AvatarImage.displayName = AvatarPrimitive.Image.displayName
|
34
|
+
|
35
|
+
const AvatarFallback = React.forwardRef<
|
36
|
+
React.ElementRef<typeof AvatarPrimitive.Fallback>,
|
37
|
+
React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Fallback>
|
38
|
+
>(({ className, ...props }, ref) => (
|
39
|
+
<AvatarPrimitive.Fallback
|
40
|
+
ref={ref}
|
41
|
+
className={cn(
|
42
|
+
"flex h-full w-full items-center justify-center rounded-full bg-muted",
|
43
|
+
className
|
44
|
+
)}
|
45
|
+
{...props}
|
46
|
+
/>
|
47
|
+
))
|
48
|
+
AvatarFallback.displayName = AvatarPrimitive.Fallback.displayName
|
49
|
+
|
50
|
+
export { Avatar, AvatarImage, AvatarFallback }
|
@@ -0,0 +1,36 @@
|
|
1
|
+
import * as React from "react"
|
2
|
+
import { cva, type VariantProps } from "class-variance-authority"
|
3
|
+
|
4
|
+
import { cn } from "@/lib/utils"
|
5
|
+
|
6
|
+
const badgeVariants = cva(
|
7
|
+
"inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",
|
8
|
+
{
|
9
|
+
variants: {
|
10
|
+
variant: {
|
11
|
+
default:
|
12
|
+
"border-transparent bg-primary text-primary-foreground hover:bg-primary/80",
|
13
|
+
secondary:
|
14
|
+
"border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80",
|
15
|
+
destructive:
|
16
|
+
"border-transparent bg-destructive text-destructive-foreground hover:bg-destructive/80",
|
17
|
+
outline: "text-foreground",
|
18
|
+
},
|
19
|
+
},
|
20
|
+
defaultVariants: {
|
21
|
+
variant: "default",
|
22
|
+
},
|
23
|
+
}
|
24
|
+
)
|
25
|
+
|
26
|
+
export interface BadgeProps
|
27
|
+
extends React.HTMLAttributes<HTMLDivElement>,
|
28
|
+
VariantProps<typeof badgeVariants> {}
|
29
|
+
|
30
|
+
function Badge({ className, variant, ...props }: BadgeProps) {
|
31
|
+
return (
|
32
|
+
<div className={cn(badgeVariants({ variant }), className)} {...props} />
|
33
|
+
)
|
34
|
+
}
|
35
|
+
|
36
|
+
export { Badge, badgeVariants }
|
@@ -0,0 +1,115 @@
|
|
1
|
+
import * as React from "react"
|
2
|
+
import { Slot } from "@radix-ui/react-slot"
|
3
|
+
import { ChevronRight, MoreHorizontal } from "lucide-react"
|
4
|
+
|
5
|
+
import { cn } from "@/lib/utils"
|
6
|
+
|
7
|
+
const Breadcrumb = React.forwardRef<
|
8
|
+
HTMLElement,
|
9
|
+
React.ComponentPropsWithoutRef<"nav"> & {
|
10
|
+
separator?: React.ReactNode
|
11
|
+
}
|
12
|
+
>(({ ...props }, ref) => <nav ref={ref} aria-label="breadcrumb" {...props} />)
|
13
|
+
Breadcrumb.displayName = "Breadcrumb"
|
14
|
+
|
15
|
+
const BreadcrumbList = React.forwardRef<
|
16
|
+
HTMLOListElement,
|
17
|
+
React.ComponentPropsWithoutRef<"ol">
|
18
|
+
>(({ className, ...props }, ref) => (
|
19
|
+
<ol
|
20
|
+
ref={ref}
|
21
|
+
className={cn(
|
22
|
+
"flex flex-wrap items-center gap-1.5 break-words text-sm text-muted-foreground sm:gap-2.5",
|
23
|
+
className
|
24
|
+
)}
|
25
|
+
{...props}
|
26
|
+
/>
|
27
|
+
))
|
28
|
+
BreadcrumbList.displayName = "BreadcrumbList"
|
29
|
+
|
30
|
+
const BreadcrumbItem = React.forwardRef<
|
31
|
+
HTMLLIElement,
|
32
|
+
React.ComponentPropsWithoutRef<"li">
|
33
|
+
>(({ className, ...props }, ref) => (
|
34
|
+
<li
|
35
|
+
ref={ref}
|
36
|
+
className={cn("inline-flex items-center gap-1.5", className)}
|
37
|
+
{...props}
|
38
|
+
/>
|
39
|
+
))
|
40
|
+
BreadcrumbItem.displayName = "BreadcrumbItem"
|
41
|
+
|
42
|
+
const BreadcrumbLink = React.forwardRef<
|
43
|
+
HTMLAnchorElement,
|
44
|
+
React.ComponentPropsWithoutRef<"a"> & {
|
45
|
+
asChild?: boolean
|
46
|
+
}
|
47
|
+
>(({ asChild, className, ...props }, ref) => {
|
48
|
+
const Comp = asChild ? Slot : "a"
|
49
|
+
|
50
|
+
return (
|
51
|
+
<Comp
|
52
|
+
ref={ref}
|
53
|
+
className={cn("transition-colors hover:text-foreground", className)}
|
54
|
+
{...props}
|
55
|
+
/>
|
56
|
+
)
|
57
|
+
})
|
58
|
+
BreadcrumbLink.displayName = "BreadcrumbLink"
|
59
|
+
|
60
|
+
const BreadcrumbPage = React.forwardRef<
|
61
|
+
HTMLSpanElement,
|
62
|
+
React.ComponentPropsWithoutRef<"span">
|
63
|
+
>(({ className, ...props }, ref) => (
|
64
|
+
<span
|
65
|
+
ref={ref}
|
66
|
+
role="link"
|
67
|
+
aria-disabled="true"
|
68
|
+
aria-current="page"
|
69
|
+
className={cn("font-normal text-foreground", className)}
|
70
|
+
{...props}
|
71
|
+
/>
|
72
|
+
))
|
73
|
+
BreadcrumbPage.displayName = "BreadcrumbPage"
|
74
|
+
|
75
|
+
const BreadcrumbSeparator = ({
|
76
|
+
children,
|
77
|
+
className,
|
78
|
+
...props
|
79
|
+
}: React.ComponentProps<"li">) => (
|
80
|
+
<li
|
81
|
+
role="presentation"
|
82
|
+
aria-hidden="true"
|
83
|
+
className={cn("[&>svg]:w-3.5 [&>svg]:h-3.5", className)}
|
84
|
+
{...props}
|
85
|
+
>
|
86
|
+
{children ?? <ChevronRight />}
|
87
|
+
</li>
|
88
|
+
)
|
89
|
+
BreadcrumbSeparator.displayName = "BreadcrumbSeparator"
|
90
|
+
|
91
|
+
const BreadcrumbEllipsis = ({
|
92
|
+
className,
|
93
|
+
...props
|
94
|
+
}: React.ComponentProps<"span">) => (
|
95
|
+
<span
|
96
|
+
role="presentation"
|
97
|
+
aria-hidden="true"
|
98
|
+
className={cn("flex h-9 w-9 items-center justify-center", className)}
|
99
|
+
{...props}
|
100
|
+
>
|
101
|
+
<MoreHorizontal className="h-4 w-4" />
|
102
|
+
<span className="sr-only">More</span>
|
103
|
+
</span>
|
104
|
+
)
|
105
|
+
BreadcrumbEllipsis.displayName = "BreadcrumbElipssis"
|
106
|
+
|
107
|
+
export {
|
108
|
+
Breadcrumb,
|
109
|
+
BreadcrumbList,
|
110
|
+
BreadcrumbItem,
|
111
|
+
BreadcrumbLink,
|
112
|
+
BreadcrumbPage,
|
113
|
+
BreadcrumbSeparator,
|
114
|
+
BreadcrumbEllipsis,
|
115
|
+
}
|
@@ -0,0 +1,56 @@
|
|
1
|
+
import * as React from "react"
|
2
|
+
import { Slot } from "@radix-ui/react-slot"
|
3
|
+
import { cva, type VariantProps } from "class-variance-authority"
|
4
|
+
|
5
|
+
import { cn } from "@/lib/utils"
|
6
|
+
|
7
|
+
const buttonVariants = cva(
|
8
|
+
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
|
9
|
+
{
|
10
|
+
variants: {
|
11
|
+
variant: {
|
12
|
+
default: "bg-primary text-primary-foreground hover:bg-primary/90",
|
13
|
+
destructive:
|
14
|
+
"bg-destructive text-destructive-foreground hover:bg-destructive/90",
|
15
|
+
outline:
|
16
|
+
"border border-input bg-background hover:bg-accent hover:text-accent-foreground",
|
17
|
+
secondary:
|
18
|
+
"bg-secondary text-secondary-foreground hover:bg-secondary/80",
|
19
|
+
ghost: "hover:bg-accent hover:text-accent-foreground",
|
20
|
+
link: "text-primary underline-offset-4 hover:underline",
|
21
|
+
},
|
22
|
+
size: {
|
23
|
+
default: "h-10 px-4 py-2",
|
24
|
+
sm: "h-9 rounded-md px-3",
|
25
|
+
lg: "h-11 rounded-md px-8",
|
26
|
+
icon: "h-10 w-10",
|
27
|
+
},
|
28
|
+
},
|
29
|
+
defaultVariants: {
|
30
|
+
variant: "default",
|
31
|
+
size: "default",
|
32
|
+
},
|
33
|
+
}
|
34
|
+
)
|
35
|
+
|
36
|
+
export interface ButtonProps
|
37
|
+
extends React.ButtonHTMLAttributes<HTMLButtonElement>,
|
38
|
+
VariantProps<typeof buttonVariants> {
|
39
|
+
asChild?: boolean
|
40
|
+
}
|
41
|
+
|
42
|
+
const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
|
43
|
+
({ className, variant, size, asChild = false, ...props }, ref) => {
|
44
|
+
const Comp = asChild ? Slot : "button"
|
45
|
+
return (
|
46
|
+
<Comp
|
47
|
+
className={cn(buttonVariants({ variant, size, className }))}
|
48
|
+
ref={ref}
|
49
|
+
{...props}
|
50
|
+
/>
|
51
|
+
)
|
52
|
+
}
|
53
|
+
)
|
54
|
+
Button.displayName = "Button"
|
55
|
+
|
56
|
+
export { Button, buttonVariants }
|
@@ -0,0 +1,66 @@
|
|
1
|
+
"use client"
|
2
|
+
|
3
|
+
import * as React from "react"
|
4
|
+
import { ChevronLeft, ChevronRight } from "lucide-react"
|
5
|
+
import { DayPicker } from "react-day-picker"
|
6
|
+
|
7
|
+
import { cn } from "@/lib/utils"
|
8
|
+
import { buttonVariants } from "@/components/ui/button"
|
9
|
+
|
10
|
+
export type CalendarProps = React.ComponentProps<typeof DayPicker>
|
11
|
+
|
12
|
+
function Calendar({
|
13
|
+
className,
|
14
|
+
classNames,
|
15
|
+
showOutsideDays = true,
|
16
|
+
...props
|
17
|
+
}: CalendarProps) {
|
18
|
+
return (
|
19
|
+
<DayPicker
|
20
|
+
showOutsideDays={showOutsideDays}
|
21
|
+
className={cn("p-3", className)}
|
22
|
+
classNames={{
|
23
|
+
months: "flex flex-col sm:flex-row space-y-4 sm:space-x-4 sm:space-y-0",
|
24
|
+
month: "space-y-4",
|
25
|
+
caption: "flex justify-center pt-1 relative items-center",
|
26
|
+
caption_label: "text-sm font-medium",
|
27
|
+
nav: "space-x-1 flex items-center",
|
28
|
+
nav_button: cn(
|
29
|
+
buttonVariants({ variant: "outline" }),
|
30
|
+
"h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100"
|
31
|
+
),
|
32
|
+
nav_button_previous: "absolute left-1",
|
33
|
+
nav_button_next: "absolute right-1",
|
34
|
+
table: "w-full border-collapse space-y-1",
|
35
|
+
head_row: "flex",
|
36
|
+
head_cell:
|
37
|
+
"text-muted-foreground rounded-md w-9 font-normal text-[0.8rem]",
|
38
|
+
row: "flex w-full mt-2",
|
39
|
+
cell: "h-9 w-9 text-center text-sm p-0 relative [&:has([aria-selected].day-range-end)]:rounded-r-md [&:has([aria-selected].day-outside)]:bg-accent/50 [&:has([aria-selected])]:bg-accent first:[&:has([aria-selected])]:rounded-l-md last:[&:has([aria-selected])]:rounded-r-md focus-within:relative focus-within:z-20",
|
40
|
+
day: cn(
|
41
|
+
buttonVariants({ variant: "ghost" }),
|
42
|
+
"h-9 w-9 p-0 font-normal aria-selected:opacity-100"
|
43
|
+
),
|
44
|
+
day_range_end: "day-range-end",
|
45
|
+
day_selected:
|
46
|
+
"bg-primary text-primary-foreground hover:bg-primary hover:text-primary-foreground focus:bg-primary focus:text-primary-foreground",
|
47
|
+
day_today: "bg-accent text-accent-foreground",
|
48
|
+
day_outside:
|
49
|
+
"day-outside text-muted-foreground aria-selected:bg-accent/50 aria-selected:text-muted-foreground",
|
50
|
+
day_disabled: "text-muted-foreground opacity-50",
|
51
|
+
day_range_middle:
|
52
|
+
"aria-selected:bg-accent aria-selected:text-accent-foreground",
|
53
|
+
day_hidden: "invisible",
|
54
|
+
...classNames,
|
55
|
+
}}
|
56
|
+
components={{
|
57
|
+
IconLeft: ({ ...props }) => <ChevronLeft className="h-4 w-4" />,
|
58
|
+
IconRight: ({ ...props }) => <ChevronRight className="h-4 w-4" />,
|
59
|
+
}}
|
60
|
+
{...props}
|
61
|
+
/>
|
62
|
+
)
|
63
|
+
}
|
64
|
+
Calendar.displayName = "Calendar"
|
65
|
+
|
66
|
+
export { Calendar }
|
@@ -0,0 +1,79 @@
|
|
1
|
+
import * as React from "react"
|
2
|
+
|
3
|
+
import { cn } from "@/lib/utils"
|
4
|
+
|
5
|
+
const Card = React.forwardRef<
|
6
|
+
HTMLDivElement,
|
7
|
+
React.HTMLAttributes<HTMLDivElement>
|
8
|
+
>(({ className, ...props }, ref) => (
|
9
|
+
<div
|
10
|
+
ref={ref}
|
11
|
+
className={cn(
|
12
|
+
"rounded-lg border bg-card text-card-foreground shadow-sm",
|
13
|
+
className
|
14
|
+
)}
|
15
|
+
{...props}
|
16
|
+
/>
|
17
|
+
))
|
18
|
+
Card.displayName = "Card"
|
19
|
+
|
20
|
+
const CardHeader = React.forwardRef<
|
21
|
+
HTMLDivElement,
|
22
|
+
React.HTMLAttributes<HTMLDivElement>
|
23
|
+
>(({ className, ...props }, ref) => (
|
24
|
+
<div
|
25
|
+
ref={ref}
|
26
|
+
className={cn("flex flex-col space-y-1.5 p-6", className)}
|
27
|
+
{...props}
|
28
|
+
/>
|
29
|
+
))
|
30
|
+
CardHeader.displayName = "CardHeader"
|
31
|
+
|
32
|
+
const CardTitle = React.forwardRef<
|
33
|
+
HTMLDivElement,
|
34
|
+
React.HTMLAttributes<HTMLDivElement>
|
35
|
+
>(({ className, ...props }, ref) => (
|
36
|
+
<div
|
37
|
+
ref={ref}
|
38
|
+
className={cn(
|
39
|
+
"text-2xl font-semibold leading-none tracking-tight",
|
40
|
+
className
|
41
|
+
)}
|
42
|
+
{...props}
|
43
|
+
/>
|
44
|
+
))
|
45
|
+
CardTitle.displayName = "CardTitle"
|
46
|
+
|
47
|
+
const CardDescription = React.forwardRef<
|
48
|
+
HTMLDivElement,
|
49
|
+
React.HTMLAttributes<HTMLDivElement>
|
50
|
+
>(({ className, ...props }, ref) => (
|
51
|
+
<div
|
52
|
+
ref={ref}
|
53
|
+
className={cn("text-sm text-muted-foreground", className)}
|
54
|
+
{...props}
|
55
|
+
/>
|
56
|
+
))
|
57
|
+
CardDescription.displayName = "CardDescription"
|
58
|
+
|
59
|
+
const CardContent = React.forwardRef<
|
60
|
+
HTMLDivElement,
|
61
|
+
React.HTMLAttributes<HTMLDivElement>
|
62
|
+
>(({ className, ...props }, ref) => (
|
63
|
+
<div ref={ref} className={cn("p-6 pt-0", className)} {...props} />
|
64
|
+
))
|
65
|
+
CardContent.displayName = "CardContent"
|
66
|
+
|
67
|
+
const CardFooter = React.forwardRef<
|
68
|
+
HTMLDivElement,
|
69
|
+
React.HTMLAttributes<HTMLDivElement>
|
70
|
+
>(({ className, ...props }, ref) => (
|
71
|
+
<div
|
72
|
+
ref={ref}
|
73
|
+
className={cn("flex items-center p-6 pt-0", className)}
|
74
|
+
{...props}
|
75
|
+
/>
|
76
|
+
))
|
77
|
+
CardFooter.displayName = "CardFooter"
|
78
|
+
|
79
|
+
export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent }
|