mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-08-29 03:55:38 -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
272 lines
8.7 KiB
TypeScript
272 lines
8.7 KiB
TypeScript
"use client";
|
|
|
|
import { Menu as MenuPrimitive } from "@base-ui/react/menu";
|
|
import { IconCheck, IconChevronRight } from "@tabler/icons-react";
|
|
import type * as React from "react";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
function DropdownMenu({ ...props }: MenuPrimitive.Root.Props) {
|
|
return <MenuPrimitive.Root data-slot="dropdown-menu" {...props} />;
|
|
}
|
|
|
|
function DropdownMenuPortal({ ...props }: MenuPrimitive.Portal.Props) {
|
|
return <MenuPrimitive.Portal data-slot="dropdown-menu-portal" {...props} />;
|
|
}
|
|
|
|
function DropdownMenuTrigger({ ...props }: MenuPrimitive.Trigger.Props) {
|
|
return <MenuPrimitive.Trigger data-slot="dropdown-menu-trigger" {...props} />;
|
|
}
|
|
|
|
function DropdownMenuContent({
|
|
align = "start",
|
|
alignOffset = 0,
|
|
side = "bottom",
|
|
sideOffset = 4,
|
|
className,
|
|
...props
|
|
}: MenuPrimitive.Popup.Props &
|
|
Pick<
|
|
MenuPrimitive.Positioner.Props,
|
|
"align" | "alignOffset" | "side" | "sideOffset"
|
|
>) {
|
|
return (
|
|
<MenuPrimitive.Portal>
|
|
<MenuPrimitive.Positioner
|
|
className="isolate z-50 outline-none"
|
|
align={align}
|
|
alignOffset={alignOffset}
|
|
side={side}
|
|
sideOffset={sideOffset}
|
|
>
|
|
<MenuPrimitive.Popup
|
|
data-slot="dropdown-menu-content"
|
|
className={cn(
|
|
"data-closed:fade-out-0 data-open:fade-in-0 data-closed:zoom-out-95 data-open:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-[side=inline-start]:slide-in-from-right-2 data-[side=inline-end]:slide-in-from-left-2 z-50 max-h-(--available-height) w-(--anchor-width) min-w-32 origin-(--transform-origin) overflow-y-auto overflow-x-hidden rounded-lg bg-popover p-1 text-popover-foreground shadow-md outline-none ring-1 ring-foreground/10 duration-100 data-closed:animate-out data-open:animate-in data-closed:overflow-hidden",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
</MenuPrimitive.Positioner>
|
|
</MenuPrimitive.Portal>
|
|
);
|
|
}
|
|
|
|
function DropdownMenuGroup({ ...props }: MenuPrimitive.Group.Props) {
|
|
return <MenuPrimitive.Group data-slot="dropdown-menu-group" {...props} />;
|
|
}
|
|
|
|
function DropdownMenuLabel({
|
|
className,
|
|
inset,
|
|
...props
|
|
}: MenuPrimitive.GroupLabel.Props & {
|
|
inset?: boolean;
|
|
}) {
|
|
return (
|
|
<MenuPrimitive.GroupLabel
|
|
data-slot="dropdown-menu-label"
|
|
data-inset={inset}
|
|
className={cn(
|
|
"px-2 py-1.5 text-muted-foreground text-xs data-inset:pl-7.5",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function DropdownMenuItem({
|
|
className,
|
|
inset,
|
|
variant = "default",
|
|
...props
|
|
}: MenuPrimitive.Item.Props & {
|
|
inset?: boolean;
|
|
variant?: "default" | "destructive";
|
|
}) {
|
|
return (
|
|
<MenuPrimitive.Item
|
|
data-slot="dropdown-menu-item"
|
|
data-inset={inset}
|
|
data-variant={variant}
|
|
className={cn(
|
|
"group/dropdown-menu-item relative flex min-h-7 cursor-default select-none items-center gap-2 rounded-md px-2 py-1 text-xs/relaxed outline-hidden focus:bg-accent focus:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground data-disabled:pointer-events-none data-inset:pl-7.5 data-[variant=destructive]:text-destructive data-disabled:opacity-50 data-[variant=destructive]:focus:bg-destructive/10 data-[variant=destructive]:focus:text-destructive dark:data-[variant=destructive]:focus:bg-destructive/20 [&_svg:not([class*='size-'])]:size-3.5 [&_svg]:pointer-events-none [&_svg]:shrink-0 data-[variant=destructive]:*:[svg]:text-destructive",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function DropdownMenuSub({ ...props }: MenuPrimitive.SubmenuRoot.Props) {
|
|
return <MenuPrimitive.SubmenuRoot data-slot="dropdown-menu-sub" {...props} />;
|
|
}
|
|
|
|
function DropdownMenuSubTrigger({
|
|
className,
|
|
inset,
|
|
children,
|
|
...props
|
|
}: MenuPrimitive.SubmenuTrigger.Props & {
|
|
inset?: boolean;
|
|
}) {
|
|
return (
|
|
<MenuPrimitive.SubmenuTrigger
|
|
data-slot="dropdown-menu-sub-trigger"
|
|
data-inset={inset}
|
|
className={cn(
|
|
"flex min-h-7 cursor-default select-none items-center gap-2 rounded-md px-2 py-1 text-xs outline-hidden focus:bg-accent focus:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground data-open:bg-accent data-popup-open:bg-accent data-inset:pl-7.5 data-open:text-accent-foreground data-popup-open:text-accent-foreground [&_svg:not([class*='size-'])]:size-3.5 [&_svg]:pointer-events-none [&_svg]:shrink-0",
|
|
className,
|
|
)}
|
|
{...props}
|
|
>
|
|
{children}
|
|
<IconChevronRight className="ml-auto" />
|
|
</MenuPrimitive.SubmenuTrigger>
|
|
);
|
|
}
|
|
|
|
function DropdownMenuSubContent({
|
|
align = "start",
|
|
alignOffset = -3,
|
|
side = "right",
|
|
sideOffset = 0,
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<typeof DropdownMenuContent>) {
|
|
return (
|
|
<DropdownMenuContent
|
|
data-slot="dropdown-menu-sub-content"
|
|
className={cn(
|
|
"data-closed:fade-out-0 data-open:fade-in-0 data-closed:zoom-out-95 data-open:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 w-auto min-w-32 rounded-lg bg-popover p-1 text-popover-foreground shadow-md ring-1 ring-foreground/10 duration-100 data-closed:animate-out data-open:animate-in",
|
|
className,
|
|
)}
|
|
align={align}
|
|
alignOffset={alignOffset}
|
|
side={side}
|
|
sideOffset={sideOffset}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function DropdownMenuCheckboxItem({
|
|
className,
|
|
children,
|
|
checked,
|
|
inset,
|
|
...props
|
|
}: MenuPrimitive.CheckboxItem.Props & {
|
|
inset?: boolean;
|
|
}) {
|
|
return (
|
|
<MenuPrimitive.CheckboxItem
|
|
data-slot="dropdown-menu-checkbox-item"
|
|
data-inset={inset}
|
|
className={cn(
|
|
"relative flex min-h-7 cursor-default select-none items-center gap-2 rounded-md py-1.5 pr-8 pl-2 text-xs outline-hidden focus:bg-accent focus:text-accent-foreground focus:**:text-accent-foreground data-disabled:pointer-events-none data-inset:pl-7.5 data-disabled:opacity-50 [&_svg:not([class*='size-'])]:size-3.5 [&_svg]:pointer-events-none [&_svg]:shrink-0",
|
|
className,
|
|
)}
|
|
checked={checked}
|
|
{...props}
|
|
>
|
|
<span
|
|
className="pointer-events-none absolute right-2 flex items-center justify-center"
|
|
data-slot="dropdown-menu-checkbox-item-indicator"
|
|
>
|
|
<MenuPrimitive.CheckboxItemIndicator>
|
|
<IconCheck />
|
|
</MenuPrimitive.CheckboxItemIndicator>
|
|
</span>
|
|
{children}
|
|
</MenuPrimitive.CheckboxItem>
|
|
);
|
|
}
|
|
|
|
function DropdownMenuRadioGroup({ ...props }: MenuPrimitive.RadioGroup.Props) {
|
|
return (
|
|
<MenuPrimitive.RadioGroup
|
|
data-slot="dropdown-menu-radio-group"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function DropdownMenuRadioItem({
|
|
className,
|
|
children,
|
|
inset,
|
|
...props
|
|
}: MenuPrimitive.RadioItem.Props & {
|
|
inset?: boolean;
|
|
}) {
|
|
return (
|
|
<MenuPrimitive.RadioItem
|
|
data-slot="dropdown-menu-radio-item"
|
|
data-inset={inset}
|
|
className={cn(
|
|
"relative flex min-h-7 cursor-default select-none items-center gap-2 rounded-md py-1.5 pr-8 pl-2 text-xs outline-hidden focus:bg-accent focus:text-accent-foreground focus:**:text-accent-foreground data-disabled:pointer-events-none data-inset:pl-7.5 data-disabled:opacity-50 [&_svg:not([class*='size-'])]:size-3.5 [&_svg]:pointer-events-none [&_svg]:shrink-0",
|
|
className,
|
|
)}
|
|
{...props}
|
|
>
|
|
<span
|
|
className="pointer-events-none absolute right-2 flex items-center justify-center"
|
|
data-slot="dropdown-menu-radio-item-indicator"
|
|
>
|
|
<MenuPrimitive.RadioItemIndicator>
|
|
<IconCheck />
|
|
</MenuPrimitive.RadioItemIndicator>
|
|
</span>
|
|
{children}
|
|
</MenuPrimitive.RadioItem>
|
|
);
|
|
}
|
|
|
|
function DropdownMenuSeparator({
|
|
className,
|
|
...props
|
|
}: MenuPrimitive.Separator.Props) {
|
|
return (
|
|
<MenuPrimitive.Separator
|
|
data-slot="dropdown-menu-separator"
|
|
className={cn("-mx-1 my-1 h-px bg-border/50", className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function DropdownMenuShortcut({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"span">) {
|
|
return (
|
|
<span
|
|
data-slot="dropdown-menu-shortcut"
|
|
className={cn(
|
|
"ml-auto text-[0.625rem] text-muted-foreground tracking-widest group-focus/dropdown-menu-item:text-accent-foreground",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export {
|
|
DropdownMenu,
|
|
DropdownMenuPortal,
|
|
DropdownMenuTrigger,
|
|
DropdownMenuContent,
|
|
DropdownMenuGroup,
|
|
DropdownMenuLabel,
|
|
DropdownMenuItem,
|
|
DropdownMenuCheckboxItem,
|
|
DropdownMenuRadioGroup,
|
|
DropdownMenuRadioItem,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuShortcut,
|
|
DropdownMenuSub,
|
|
DropdownMenuSubTrigger,
|
|
DropdownMenuSubContent,
|
|
};
|