mirror of
https://github.com/temetro/temetro.git
synced 2026-07-26 11:58:14 +00:00
2c239fbd27
- Record history: replace fragile COSS Timeline separator math with a continuous-rail list so every audited change renders in full (RTL-safe). - Prescriptions: new reusable COSS DatePicker (Popover + Calendar) replaces raw <input type="date"> for Start/End date. - Update banner: rebuilt with COSS Alert variant="warning"; pinned physical bottom-right so it stays bottom-right under Arabic RTL. - AI setup notice: thin attached warning banner with clearer copy; now shown above the input in active chats too, not just the empty state. - Settings profile: wire the previously dead Specialty (Select) and Professional links (editable rows) into the persisted preferences. - Patients: add a status filter and broaden search to conditions/allergies. - Sidebar user menu: quick language switch submenu (RTL already wired). - ai-elements: fix a subset of Base UI type drift (22 -> 12; remainder is cmdk->Autocomplete migration drift kept behind ignoreBuildErrors). - i18n: new keys added across all five locales (en/de/fr/ar/so). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
146 lines
3.4 KiB
TypeScript
146 lines
3.4 KiB
TypeScript
"use client";
|
|
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Card,
|
|
CardAction,
|
|
CardContent,
|
|
CardDescription,
|
|
CardFooter,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card";
|
|
import {
|
|
Collapsible,
|
|
CollapsibleContent,
|
|
CollapsibleTrigger,
|
|
} from "@/components/ui/collapsible";
|
|
import { cn } from "@/lib/utils";
|
|
import { ChevronsUpDownIcon } from "lucide-react";
|
|
import type { ComponentProps } from "react";
|
|
import { createContext, useContext, useMemo } from "react";
|
|
|
|
import { Shimmer } from "./shimmer";
|
|
|
|
interface PlanContextValue {
|
|
isStreaming: boolean;
|
|
}
|
|
|
|
const PlanContext = createContext<PlanContextValue | null>(null);
|
|
|
|
const usePlan = () => {
|
|
const context = useContext(PlanContext);
|
|
if (!context) {
|
|
throw new Error("Plan components must be used within Plan");
|
|
}
|
|
return context;
|
|
};
|
|
|
|
export type PlanProps = ComponentProps<typeof Collapsible> & {
|
|
isStreaming?: boolean;
|
|
};
|
|
|
|
export const Plan = ({
|
|
className,
|
|
isStreaming = false,
|
|
children,
|
|
...props
|
|
}: PlanProps) => {
|
|
const contextValue = useMemo(() => ({ isStreaming }), [isStreaming]);
|
|
|
|
return (
|
|
<PlanContext.Provider value={contextValue}>
|
|
<Collapsible data-slot="plan" {...props} render={<Card className={cn("shadow-none", className)} />}>{children}</Collapsible>
|
|
</PlanContext.Provider>
|
|
);
|
|
};
|
|
|
|
export type PlanHeaderProps = ComponentProps<typeof CardHeader>;
|
|
|
|
export const PlanHeader = ({ className, ...props }: PlanHeaderProps) => (
|
|
<CardHeader
|
|
className={cn("flex items-start justify-between", className)}
|
|
data-slot="plan-header"
|
|
{...props}
|
|
/>
|
|
);
|
|
|
|
export type PlanTitleProps = Omit<
|
|
ComponentProps<typeof CardTitle>,
|
|
"children"
|
|
> & {
|
|
children: string;
|
|
};
|
|
|
|
export const PlanTitle = ({ children, ...props }: PlanTitleProps) => {
|
|
const { isStreaming } = usePlan();
|
|
|
|
return (
|
|
<CardTitle data-slot="plan-title" {...props}>
|
|
{isStreaming ? <Shimmer>{children}</Shimmer> : children}
|
|
</CardTitle>
|
|
);
|
|
};
|
|
|
|
export type PlanDescriptionProps = Omit<
|
|
ComponentProps<typeof CardDescription>,
|
|
"children"
|
|
> & {
|
|
children: string;
|
|
};
|
|
|
|
export const PlanDescription = ({
|
|
className,
|
|
children,
|
|
...props
|
|
}: PlanDescriptionProps) => {
|
|
const { isStreaming } = usePlan();
|
|
|
|
return (
|
|
<CardDescription
|
|
className={cn("text-balance", className)}
|
|
data-slot="plan-description"
|
|
{...props}
|
|
>
|
|
{isStreaming ? <Shimmer>{children}</Shimmer> : children}
|
|
</CardDescription>
|
|
);
|
|
};
|
|
|
|
export type PlanActionProps = ComponentProps<typeof CardAction>;
|
|
|
|
export const PlanAction = (props: PlanActionProps) => (
|
|
<CardAction data-slot="plan-action" {...props} />
|
|
);
|
|
|
|
export type PlanContentProps = ComponentProps<typeof CardContent>;
|
|
|
|
export const PlanContent = (props: PlanContentProps) => (
|
|
<CollapsibleContent render={<CardContent data-slot="plan-content" {...props} />}></CollapsibleContent>
|
|
);
|
|
|
|
export type PlanFooterProps = ComponentProps<"div">;
|
|
|
|
export const PlanFooter = (props: PlanFooterProps) => (
|
|
<CardFooter data-slot="plan-footer" {...props} />
|
|
);
|
|
|
|
export type PlanTriggerProps = ComponentProps<typeof CollapsibleTrigger>;
|
|
|
|
export const PlanTrigger = ({ className, ...props }: PlanTriggerProps) => (
|
|
<CollapsibleTrigger
|
|
{...props}
|
|
render={
|
|
<Button
|
|
className={cn("size-8", className)}
|
|
data-slot="plan-trigger"
|
|
size="icon"
|
|
variant="ghost"
|
|
/>
|
|
}
|
|
>
|
|
<ChevronsUpDownIcon className="size-4" />
|
|
<span className="sr-only">Toggle plan</span>
|
|
</CollapsibleTrigger>
|
|
);
|