mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-07-14 18:15:56 -04:00
- Export `isLocaleRTL` from `@sofa/i18n` to detect right-to-left locales - Native: call `I18nManager.allowRTL` / `forceRTL` on locale init and on locale change; reload the app immediately if the current layout direction doesn't match the persisted locale, and prompt the user to restart when switching between LTR and RTL locales - Native: flip the `SettingsRow` chevron to `IconChevronLeft` when `I18nManager.isRTL` is true - Native: add Arabic Intl polyfill locale data (PluralRules, NumberFormat, DateTimeFormat, RelativeTimeFormat) - Web: enable `"rtl": true` in `components.json` and regenerate all shadcn UI components to use CSS logical properties (`ms-*`, `me-*`, `ps-*`, `pe-*`, `text-start`, `text-end`) instead of physical `ml-*`/`mr-*`/`text-left` equivalents - Web: apply the same logical-property conversions to non-generated components (nav-bar, settings sections, title cards, hero banner, continue-watching card) - Web: set `document.dir` based on the active locale's RTL flag in the i18n initialiser and root route - Add `../../packages/i18n/src/po.d.ts` to native `tsconfig.json` includes so TypeScript accepts `.po` imports
266 lines
8.2 KiB
TypeScript
266 lines
8.2 KiB
TypeScript
import { Menu as MenuPrimitive } from "@base-ui/react/menu";
|
|
import { Menubar as MenubarPrimitive } from "@base-ui/react/menubar";
|
|
import { IconCheck } from "@tabler/icons-react";
|
|
import type * as React from "react";
|
|
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuGroup,
|
|
DropdownMenuItem,
|
|
DropdownMenuLabel,
|
|
DropdownMenuPortal,
|
|
DropdownMenuRadioGroup,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuShortcut,
|
|
DropdownMenuSub,
|
|
DropdownMenuSubContent,
|
|
DropdownMenuSubTrigger,
|
|
DropdownMenuTrigger,
|
|
} from "@/components/ui/dropdown-menu";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
function Menubar({ className, ...props }: MenubarPrimitive.Props) {
|
|
return (
|
|
<MenubarPrimitive
|
|
data-slot="menubar"
|
|
className={cn("bg-background flex h-9 items-center rounded-lg border p-1", className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function MenubarMenu({ ...props }: React.ComponentProps<typeof DropdownMenu>) {
|
|
return <DropdownMenu data-slot="menubar-menu" {...props} />;
|
|
}
|
|
|
|
function MenubarGroup({ ...props }: React.ComponentProps<typeof DropdownMenuGroup>) {
|
|
return <DropdownMenuGroup data-slot="menubar-group" {...props} />;
|
|
}
|
|
|
|
function MenubarPortal({ ...props }: React.ComponentProps<typeof DropdownMenuPortal>) {
|
|
return <DropdownMenuPortal data-slot="menubar-portal" {...props} />;
|
|
}
|
|
|
|
function MenubarTrigger({ className, ...props }: React.ComponentProps<typeof DropdownMenuTrigger>) {
|
|
return (
|
|
<DropdownMenuTrigger
|
|
data-slot="menubar-trigger"
|
|
className={cn(
|
|
"hover:bg-muted aria-expanded:bg-muted flex items-center rounded-[calc(var(--radius-md)-2px)] px-2 py-[calc(--spacing(0.85))] text-xs/relaxed font-medium outline-hidden select-none",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function MenubarContent({
|
|
className,
|
|
align = "start",
|
|
alignOffset = -4,
|
|
sideOffset = 8,
|
|
...props
|
|
}: React.ComponentProps<typeof DropdownMenuContent>) {
|
|
return (
|
|
<DropdownMenuContent
|
|
data-slot="menubar-content"
|
|
align={align}
|
|
alignOffset={alignOffset}
|
|
sideOffset={sideOffset}
|
|
className={cn(
|
|
"data-open:fade-in-0 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-end-2 data-[side=inline-end]:slide-in-from-start-2 bg-popover text-popover-foreground ring-foreground/10 data-open:animate-in min-w-32 rounded-lg p-1 shadow-md ring-1 duration-100",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function MenubarItem({
|
|
className,
|
|
inset,
|
|
variant = "default",
|
|
...props
|
|
}: React.ComponentProps<typeof DropdownMenuItem>) {
|
|
return (
|
|
<DropdownMenuItem
|
|
data-slot="menubar-item"
|
|
data-inset={inset}
|
|
data-variant={variant}
|
|
className={cn(
|
|
"group/menubar-item focus:bg-accent focus:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 data-[variant=destructive]:focus:text-destructive dark:data-[variant=destructive]:focus:bg-destructive/20 data-[variant=destructive]:*:[svg]:text-destructive! min-h-7 gap-2 rounded-md px-2 py-1 text-xs/relaxed data-disabled:opacity-50 data-inset:ps-7.5 [&_svg:not([class*='size-'])]:size-3.5",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function MenubarCheckboxItem({
|
|
className,
|
|
children,
|
|
checked,
|
|
inset,
|
|
...props
|
|
}: MenuPrimitive.CheckboxItem.Props & {
|
|
inset?: boolean;
|
|
}) {
|
|
return (
|
|
<MenuPrimitive.CheckboxItem
|
|
data-slot="menubar-checkbox-item"
|
|
data-inset={inset}
|
|
className={cn(
|
|
"focus:bg-accent focus:text-accent-foreground focus:**:text-accent-foreground relative flex min-h-7 cursor-default items-center gap-2 rounded-md py-1.5 ps-7.5 pe-2 text-xs outline-hidden select-none data-disabled:pointer-events-none data-disabled:opacity-50 data-inset:ps-7.5 [&_svg]:pointer-events-none [&_svg]:shrink-0",
|
|
className,
|
|
)}
|
|
checked={checked}
|
|
{...props}
|
|
>
|
|
<span className="pointer-events-none absolute start-2 flex size-4 items-center justify-center [&_svg:not([class*='size-'])]:size-4">
|
|
<MenuPrimitive.CheckboxItemIndicator>
|
|
<IconCheck />
|
|
</MenuPrimitive.CheckboxItemIndicator>
|
|
</span>
|
|
{children}
|
|
</MenuPrimitive.CheckboxItem>
|
|
);
|
|
}
|
|
|
|
function MenubarRadioGroup({ ...props }: React.ComponentProps<typeof DropdownMenuRadioGroup>) {
|
|
return <DropdownMenuRadioGroup data-slot="menubar-radio-group" {...props} />;
|
|
}
|
|
|
|
function MenubarRadioItem({
|
|
className,
|
|
children,
|
|
inset,
|
|
...props
|
|
}: MenuPrimitive.RadioItem.Props & {
|
|
inset?: boolean;
|
|
}) {
|
|
return (
|
|
<MenuPrimitive.RadioItem
|
|
data-slot="menubar-radio-item"
|
|
data-inset={inset}
|
|
className={cn(
|
|
"focus:bg-accent focus:text-accent-foreground focus:**:text-accent-foreground relative flex min-h-7 cursor-default items-center gap-2 rounded-md py-1.5 ps-7.5 pe-2 text-xs outline-hidden select-none data-disabled:pointer-events-none data-disabled:opacity-50 data-inset:ps-7.5 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-3.5",
|
|
className,
|
|
)}
|
|
{...props}
|
|
>
|
|
<span className="pointer-events-none absolute start-2 flex size-4 items-center justify-center [&_svg:not([class*='size-'])]:size-4">
|
|
<MenuPrimitive.RadioItemIndicator>
|
|
<IconCheck />
|
|
</MenuPrimitive.RadioItemIndicator>
|
|
</span>
|
|
{children}
|
|
</MenuPrimitive.RadioItem>
|
|
);
|
|
}
|
|
|
|
function MenubarLabel({
|
|
className,
|
|
inset,
|
|
...props
|
|
}: React.ComponentProps<typeof DropdownMenuLabel> & {
|
|
inset?: boolean;
|
|
}) {
|
|
return (
|
|
<DropdownMenuLabel
|
|
data-slot="menubar-label"
|
|
data-inset={inset}
|
|
className={cn("text-muted-foreground px-2 py-1.5 text-xs data-inset:ps-7.5", className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function MenubarSeparator({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<typeof DropdownMenuSeparator>) {
|
|
return (
|
|
<DropdownMenuSeparator
|
|
data-slot="menubar-separator"
|
|
className={cn("bg-border/50 -mx-1 my-1 h-px", className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function MenubarShortcut({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<typeof DropdownMenuShortcut>) {
|
|
return (
|
|
<DropdownMenuShortcut
|
|
data-slot="menubar-shortcut"
|
|
className={cn(
|
|
"text-muted-foreground group-focus/menubar-item:text-accent-foreground ms-auto text-[0.625rem] tracking-widest",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function MenubarSub({ ...props }: React.ComponentProps<typeof DropdownMenuSub>) {
|
|
return <DropdownMenuSub data-slot="menubar-sub" {...props} />;
|
|
}
|
|
|
|
function MenubarSubTrigger({
|
|
className,
|
|
inset,
|
|
...props
|
|
}: React.ComponentProps<typeof DropdownMenuSubTrigger> & {
|
|
inset?: boolean;
|
|
}) {
|
|
return (
|
|
<DropdownMenuSubTrigger
|
|
data-slot="menubar-sub-trigger"
|
|
data-inset={inset}
|
|
className={cn(
|
|
"focus:bg-accent focus:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground data-open:bg-accent data-open:text-accent-foreground min-h-7 gap-2 rounded-md px-2 py-1 text-xs data-inset:ps-7.5 [&_svg:not([class*='size-'])]:size-3.5",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function MenubarSubContent({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<typeof DropdownMenuSubContent>) {
|
|
return (
|
|
<DropdownMenuSubContent
|
|
data-slot="menubar-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 bg-popover text-popover-foreground ring-foreground/10 data-closed:animate-out data-open:animate-in min-w-32 rounded-lg p-1 shadow-md ring-1 duration-100",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export {
|
|
Menubar,
|
|
MenubarCheckboxItem,
|
|
MenubarContent,
|
|
MenubarGroup,
|
|
MenubarItem,
|
|
MenubarLabel,
|
|
MenubarMenu,
|
|
MenubarPortal,
|
|
MenubarRadioGroup,
|
|
MenubarRadioItem,
|
|
MenubarSeparator,
|
|
MenubarShortcut,
|
|
MenubarSub,
|
|
MenubarSubContent,
|
|
MenubarSubTrigger,
|
|
MenubarTrigger,
|
|
};
|