mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-08-29 01:35:39 -04:00
- Stack title-hero poster/metadata vertically on mobile (flex-col md:flex-row), switch backdrop tall breakpoint from sm to md - Extract bio expand/collapse logic into reusable ExpandableText component; use it in PersonHero and TitleHero - Fix ContinueWatchingCard image to use fill + sizes instead of fixed width/height to avoid layout shift - Add fade-out gradient on genre chip scrollbar edge on mobile - Show scaled-down ambient glow on mobile instead of hiding it entirely - Humanize knownForDepartment labels (Acting→Actor, Directing→Director, etc.) - Change cast member name from truncate to line-clamp-2 for wrapping - Hide tooltip arrow via [&>:last-child]:hidden instead of color-matching it - Apply safe-area-inset padding to HeroBanner content on notched devices
160 lines
5.4 KiB
TypeScript
160 lines
5.4 KiB
TypeScript
"use client";
|
|
|
|
import { cva, type VariantProps } from "class-variance-authority";
|
|
import type * as React from "react";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Textarea } from "@/components/ui/textarea";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
function InputGroup({ className, ...props }: React.ComponentProps<"div">) {
|
|
return (
|
|
// biome-ignore lint/a11y/useSemanticElements: shadcn generated
|
|
<div
|
|
data-slot="input-group"
|
|
role="group"
|
|
className={cn(
|
|
"group/input-group relative flex h-7 w-full min-w-0 items-center rounded-md border border-input bg-input/20 outline-none transition-colors in-data-[slot=combobox-content]:focus-within:border-inherit in-data-[slot=combobox-content]:focus-within:ring-0 has-[>[data-align=block-end]]:h-auto has-[>[data-align=block-start]]:h-auto has-[>textarea]:h-auto has-[>[data-align=block-end]]:flex-col has-[>[data-align=block-start]]:flex-col has-[textarea]:rounded-md has-data-[align=block-end]:rounded-md has-data-[align=block-start]:rounded-md has-[[data-slot=input-group-control]:focus-visible]:border-ring has-[[data-slot][aria-invalid=true]]:border-destructive has-[[data-slot=input-group-control]:focus-visible]:ring-2 has-[[data-slot=input-group-control]:focus-visible]:ring-ring/30 has-[[data-slot][aria-invalid=true]]:ring-2 has-[[data-slot][aria-invalid=true]]:ring-destructive/20 dark:bg-input/30 dark:has-[[data-slot][aria-invalid=true]]:ring-destructive/40 has-[>[data-align=block-end]]:[&>input]:pt-3 has-[>[data-align=inline-end]]:[&>input]:pr-1.5 has-[>[data-align=block-start]]:[&>input]:pb-3 has-[>[data-align=inline-start]]:[&>input]:pl-1.5",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
const inputGroupAddonVariants = cva(
|
|
"flex h-auto cursor-text select-none items-center justify-center gap-1 py-2 font-medium text-muted-foreground text-xs/relaxed **:data-[slot=kbd]:rounded-[calc(var(--radius-sm)-2px)] **:data-[slot=kbd]:bg-muted-foreground/10 **:data-[slot=kbd]:px-1 **:data-[slot=kbd]:text-[0.625rem] group-data-[disabled=true]/input-group:opacity-50 [&>svg:not([class*='size-'])]:size-3.5",
|
|
{
|
|
variants: {
|
|
align: {
|
|
"inline-start":
|
|
"order-first pl-2 has-[>button]:ml-[-0.275rem] has-[>kbd]:ml-[-0.275rem]",
|
|
"inline-end":
|
|
"order-last pr-2 has-[>button]:mr-[-0.275rem] has-[>kbd]:mr-[-0.275rem]",
|
|
"block-start":
|
|
"order-first w-full justify-start px-2 pt-2 group-has-[>input]/input-group:pt-2 [.border-b]:pb-2",
|
|
"block-end":
|
|
"order-last w-full justify-start px-2 pb-2 group-has-[>input]/input-group:pb-2 [.border-t]:pt-2",
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
align: "inline-start",
|
|
},
|
|
},
|
|
);
|
|
|
|
function InputGroupAddon({
|
|
className,
|
|
align = "inline-start",
|
|
...props
|
|
}: React.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>) {
|
|
return (
|
|
// biome-ignore lint/a11y/useKeyWithClickEvents: shadcn generated
|
|
// biome-ignore lint/a11y/useSemanticElements: shadcn generated
|
|
<div
|
|
role="group"
|
|
data-slot="input-group-addon"
|
|
data-align={align}
|
|
className={cn(inputGroupAddonVariants({ align }), className)}
|
|
onClick={(e) => {
|
|
if ((e.target as HTMLElement).closest("button")) {
|
|
return;
|
|
}
|
|
e.currentTarget.parentElement?.querySelector("input")?.focus();
|
|
}}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
const inputGroupButtonVariants = cva(
|
|
"flex items-center gap-2 rounded-md text-xs/relaxed shadow-none",
|
|
{
|
|
variants: {
|
|
size: {
|
|
xs: "h-5 gap-1 rounded-[calc(var(--radius-sm)-2px)] px-1 [&>svg:not([class*='size-'])]:size-3",
|
|
sm: "",
|
|
"icon-xs": "size-6 p-0 has-[>svg]:p-0",
|
|
"icon-sm": "size-8 p-0 has-[>svg]:p-0",
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
size: "xs",
|
|
},
|
|
},
|
|
);
|
|
|
|
function InputGroupButton({
|
|
className,
|
|
type = "button",
|
|
variant = "ghost",
|
|
size = "xs",
|
|
...props
|
|
}: Omit<React.ComponentProps<typeof Button>, "size" | "type"> &
|
|
VariantProps<typeof inputGroupButtonVariants> & {
|
|
type?: "button" | "submit" | "reset";
|
|
}) {
|
|
return (
|
|
<Button
|
|
type={type}
|
|
data-size={size}
|
|
variant={variant}
|
|
className={cn(inputGroupButtonVariants({ size }), className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function InputGroupText({ className, ...props }: React.ComponentProps<"span">) {
|
|
return (
|
|
<span
|
|
className={cn(
|
|
"flex items-center gap-2 text-muted-foreground text-xs/relaxed [&_svg:not([class*='size-'])]:size-4 [&_svg]:pointer-events-none",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function InputGroupInput({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"input">) {
|
|
return (
|
|
<Input
|
|
data-slot="input-group-control"
|
|
className={cn(
|
|
"flex-1 rounded-none border-0 bg-transparent shadow-none ring-0 focus-visible:ring-0 aria-invalid:ring-0 dark:bg-transparent",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function InputGroupTextarea({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"textarea">) {
|
|
return (
|
|
<Textarea
|
|
data-slot="input-group-control"
|
|
className={cn(
|
|
"flex-1 resize-none rounded-none border-0 bg-transparent py-2 shadow-none ring-0 focus-visible:ring-0 aria-invalid:ring-0 dark:bg-transparent",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export {
|
|
InputGroup,
|
|
InputGroupAddon,
|
|
InputGroupButton,
|
|
InputGroupText,
|
|
InputGroupInput,
|
|
InputGroupTextarea,
|
|
};
|