mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-30 08:04:18 +00:00
* feat: rtl * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add sidebar * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * chore: changeset * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix
63 lines
1.3 KiB
TypeScript
63 lines
1.3 KiB
TypeScript
"use client"
|
||
|
||
import * as React from "react"
|
||
import {
|
||
Item,
|
||
ItemContent,
|
||
ItemMedia,
|
||
ItemTitle,
|
||
} from "@/examples/base/ui-rtl/item"
|
||
import { Spinner } from "@/examples/base/ui-rtl/spinner"
|
||
|
||
import {
|
||
useTranslation,
|
||
type Translations,
|
||
} from "@/components/language-selector"
|
||
|
||
const translations: Translations = {
|
||
en: {
|
||
dir: "ltr",
|
||
values: {
|
||
title: "Processing payment...",
|
||
amount: "$100.00",
|
||
},
|
||
},
|
||
ar: {
|
||
dir: "rtl",
|
||
values: {
|
||
title: "جاري معالجة الدفع...",
|
||
amount: "١٠٠.٠٠ دولار",
|
||
},
|
||
},
|
||
he: {
|
||
dir: "rtl",
|
||
values: {
|
||
title: "מעבד תשלום...",
|
||
amount: "$100.00",
|
||
},
|
||
},
|
||
}
|
||
|
||
export function SpinnerRtl() {
|
||
const { dir, t } = useTranslation(translations, "ar")
|
||
|
||
return (
|
||
<div
|
||
className="flex w-full max-w-xs flex-col gap-4 [--radius:1rem]"
|
||
dir={dir}
|
||
>
|
||
<Item variant="muted" dir={dir}>
|
||
<ItemMedia>
|
||
<Spinner />
|
||
</ItemMedia>
|
||
<ItemContent>
|
||
<ItemTitle className="line-clamp-1">{t.title}</ItemTitle>
|
||
</ItemContent>
|
||
<ItemContent className="flex-none justify-end">
|
||
<span className="text-sm tabular-nums">{t.amount}</span>
|
||
</ItemContent>
|
||
</Item>
|
||
</div>
|
||
)
|
||
}
|