mirror of
https://github.com/temetro/temetro.git
synced 2026-08-06 00:47:41 +00:00
4d6a5dc008
Components: - Replace components/ui primitives with COSS equivalents from the @coss/* shadcn registry. Add menu/preview-card/group; remove the superseded dropdown-menu, hover-card, button-group; keep carousel (no COSS equivalent). - Migrate live call sites to canonical COSS APIs preserving layout/behavior: sidebar menus (nav-user, team-switcher, nav-notifications), chat-input radio menu, patient dialogs/cards, auth forms (FieldGroup -> flex column), settings. - ai-elements: migrate the live conversation/message with behavior parity (Tooltip via render, Group/GroupText); repoint dormant files (hover-card -> preview-card, dropdown-menu -> menu, button-group -> group, InputGroupButton -> Button). Residual pre-existing Base UI type drift stays behind ignoreBuildErrors. Theme: - Adopt COSS default neutral tokens in globals.css with light + dark palettes. - Add next-themes (defaultTheme=dark, enableSystem) and drop the forced dark class. Align font variables to the COSS contract (--font-sans/-heading/-mono). Make scrollbars theme-aware. i18n: - Add i18next + react-i18next (lib/i18n/config.ts, locales/en/translation.json, components/i18n-provider.tsx mounted in layout). Convert auth forms, sidebar nav, and settings tabs to useTranslation() as the reference pattern. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
221 lines
6.3 KiB
TypeScript
221 lines
6.3 KiB
TypeScript
"use client";
|
|
|
|
import { Dialog as DialogPrimitive } from "@base-ui/react/dialog";
|
|
import { mergeProps } from "@base-ui/react/merge-props";
|
|
import { useRender } from "@base-ui/react/use-render";
|
|
import { XIcon } from "lucide-react";
|
|
import type React from "react";
|
|
import { cn } from "@/lib/utils";
|
|
import { Button } from "@/components/ui/button";
|
|
import { ScrollArea } from "@/components/ui/scroll-area";
|
|
|
|
export const DialogCreateHandle: typeof DialogPrimitive.createHandle =
|
|
DialogPrimitive.createHandle;
|
|
|
|
export const Dialog: typeof DialogPrimitive.Root = DialogPrimitive.Root;
|
|
|
|
export const DialogPortal: typeof DialogPrimitive.Portal =
|
|
DialogPrimitive.Portal;
|
|
|
|
export function DialogTrigger(
|
|
props: DialogPrimitive.Trigger.Props,
|
|
): React.ReactElement {
|
|
return <DialogPrimitive.Trigger data-slot="dialog-trigger" {...props} />;
|
|
}
|
|
|
|
export function DialogClose(
|
|
props: DialogPrimitive.Close.Props,
|
|
): React.ReactElement {
|
|
return <DialogPrimitive.Close data-slot="dialog-close" {...props} />;
|
|
}
|
|
|
|
export function DialogBackdrop({
|
|
className,
|
|
...props
|
|
}: DialogPrimitive.Backdrop.Props): React.ReactElement {
|
|
return (
|
|
<DialogPrimitive.Backdrop
|
|
className={cn(
|
|
"fixed inset-0 z-50 bg-black/32 backdrop-blur-sm transition-all duration-200 data-ending-style:opacity-0 data-starting-style:opacity-0",
|
|
className,
|
|
)}
|
|
data-slot="dialog-backdrop"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function DialogViewport({
|
|
className,
|
|
...props
|
|
}: DialogPrimitive.Viewport.Props): React.ReactElement {
|
|
return (
|
|
<DialogPrimitive.Viewport
|
|
className={cn(
|
|
"fixed inset-0 z-50 grid grid-rows-[1fr_auto_3fr] justify-items-center p-4",
|
|
className,
|
|
)}
|
|
data-slot="dialog-viewport"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function DialogPopup({
|
|
className,
|
|
children,
|
|
showCloseButton = true,
|
|
bottomStickOnMobile = true,
|
|
closeProps,
|
|
portalProps,
|
|
...props
|
|
}: DialogPrimitive.Popup.Props & {
|
|
showCloseButton?: boolean;
|
|
bottomStickOnMobile?: boolean;
|
|
closeProps?: DialogPrimitive.Close.Props;
|
|
portalProps?: DialogPrimitive.Portal.Props;
|
|
}): React.ReactElement {
|
|
return (
|
|
<DialogPortal {...portalProps}>
|
|
<DialogBackdrop />
|
|
<DialogViewport
|
|
className={cn(
|
|
bottomStickOnMobile &&
|
|
"max-sm:grid-rows-[1fr_auto] max-sm:p-0 max-sm:pt-12",
|
|
)}
|
|
>
|
|
<DialogPrimitive.Popup
|
|
className={cn(
|
|
"relative row-start-2 flex max-h-full min-h-0 w-full min-w-0 max-w-lg origin-center flex-col rounded-2xl border bg-popover not-dark:bg-clip-padding text-popover-foreground opacity-[calc(1-var(--nested-dialogs))] shadow-lg/5 outline-none transition-[scale,opacity,translate] duration-200 ease-in-out will-change-transform before:pointer-events-none before:absolute before:inset-0 before:rounded-[calc(var(--radius-2xl)-1px)] before:shadow-[0_1px_--theme(--color-black/4%)] data-ending-style:opacity-0 data-starting-style:opacity-0 sm:scale-[calc(1-0.1*var(--nested-dialogs))] sm:data-ending-style:scale-98 sm:data-starting-style:scale-98 dark:before:shadow-[0_-1px_--theme(--color-white/6%)]",
|
|
bottomStickOnMobile &&
|
|
"max-sm:max-w-none max-sm:origin-bottom max-sm:rounded-none max-sm:border-x-0 max-sm:border-t max-sm:border-b-0 max-sm:data-ending-style:translate-y-4 max-sm:data-starting-style:translate-y-4 max-sm:before:hidden max-sm:before:rounded-none",
|
|
className,
|
|
)}
|
|
data-slot="dialog-popup"
|
|
{...props}
|
|
>
|
|
{children}
|
|
{showCloseButton && (
|
|
<DialogPrimitive.Close
|
|
aria-label="Close"
|
|
className="absolute end-2 top-2"
|
|
render={<Button size="icon" variant="ghost" />}
|
|
{...closeProps}
|
|
>
|
|
<XIcon />
|
|
</DialogPrimitive.Close>
|
|
)}
|
|
</DialogPrimitive.Popup>
|
|
</DialogViewport>
|
|
</DialogPortal>
|
|
);
|
|
}
|
|
|
|
export function DialogHeader({
|
|
className,
|
|
render,
|
|
...props
|
|
}: useRender.ComponentProps<"div">): React.ReactElement {
|
|
const defaultProps = {
|
|
className: cn(
|
|
"flex flex-col gap-2 p-6 in-[[data-slot=dialog-popup]:has([data-slot=dialog-panel])]:pb-3 max-sm:pb-4",
|
|
className,
|
|
),
|
|
"data-slot": "dialog-header",
|
|
};
|
|
|
|
return useRender({
|
|
defaultTagName: "div",
|
|
props: mergeProps<"div">(defaultProps, props),
|
|
render,
|
|
});
|
|
}
|
|
|
|
export function DialogFooter({
|
|
className,
|
|
variant = "default",
|
|
render,
|
|
...props
|
|
}: useRender.ComponentProps<"div"> & {
|
|
variant?: "default" | "bare";
|
|
}): React.ReactElement {
|
|
const defaultProps = {
|
|
className: cn(
|
|
"flex flex-col-reverse gap-2 px-6 sm:flex-row sm:justify-end sm:rounded-b-[calc(var(--radius-2xl)-1px)]",
|
|
variant === "default" && "border-t bg-muted/72 py-4",
|
|
variant === "bare" &&
|
|
"in-[[data-slot=dialog-popup]:has([data-slot=dialog-panel])]:pt-3 pt-4 pb-6",
|
|
className,
|
|
),
|
|
"data-slot": "dialog-footer",
|
|
};
|
|
|
|
return useRender({
|
|
defaultTagName: "div",
|
|
props: mergeProps<"div">(defaultProps, props),
|
|
render,
|
|
});
|
|
}
|
|
|
|
export function DialogTitle({
|
|
className,
|
|
...props
|
|
}: DialogPrimitive.Title.Props): React.ReactElement {
|
|
return (
|
|
<DialogPrimitive.Title
|
|
className={cn(
|
|
"font-heading font-semibold text-xl leading-none",
|
|
className,
|
|
)}
|
|
data-slot="dialog-title"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function DialogDescription({
|
|
className,
|
|
...props
|
|
}: DialogPrimitive.Description.Props): React.ReactElement {
|
|
return (
|
|
<DialogPrimitive.Description
|
|
className={cn("text-muted-foreground text-sm", className)}
|
|
data-slot="dialog-description"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function DialogPanel({
|
|
className,
|
|
scrollFade = true,
|
|
render,
|
|
...props
|
|
}: useRender.ComponentProps<"div"> & {
|
|
scrollFade?: boolean;
|
|
}): React.ReactElement {
|
|
const defaultProps = {
|
|
className: cn(
|
|
"p-6 in-[[data-slot=dialog-popup]:has([data-slot=dialog-header])]:pt-1 in-[[data-slot=dialog-popup]:has([data-slot=dialog-footer]:not(.border-t))]:pb-1",
|
|
className,
|
|
),
|
|
"data-slot": "dialog-panel",
|
|
};
|
|
|
|
return (
|
|
<ScrollArea scrollFade={scrollFade}>
|
|
{useRender({
|
|
defaultTagName: "div",
|
|
props: mergeProps<"div">(defaultProps, props),
|
|
render,
|
|
})}
|
|
</ScrollArea>
|
|
);
|
|
}
|
|
|
|
export {
|
|
DialogPrimitive,
|
|
DialogBackdrop as DialogOverlay,
|
|
DialogPopup as DialogContent,
|
|
};
|