mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-27 14:44:12 +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
54 lines
1.1 KiB
TypeScript
54 lines
1.1 KiB
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import { ScrollArea } from "@/examples/base/ui-rtl/scroll-area"
|
|
import { Separator } from "@/examples/base/ui-rtl/separator"
|
|
|
|
import {
|
|
useTranslation,
|
|
type Translations,
|
|
} from "@/components/language-selector"
|
|
|
|
const tags = Array.from({ length: 50 }).map(
|
|
(_, i, a) => `v1.2.0-beta.${a.length - i}`
|
|
)
|
|
|
|
const translations: Translations = {
|
|
en: {
|
|
dir: "ltr",
|
|
values: {
|
|
tags: "Tags",
|
|
},
|
|
},
|
|
ar: {
|
|
dir: "rtl",
|
|
values: {
|
|
tags: "العلامات",
|
|
},
|
|
},
|
|
he: {
|
|
dir: "rtl",
|
|
values: {
|
|
tags: "תגיות",
|
|
},
|
|
},
|
|
}
|
|
|
|
export function ScrollAreaRtl() {
|
|
const { dir, t } = useTranslation(translations, "ar")
|
|
|
|
return (
|
|
<ScrollArea className="h-72 w-48 rounded-md border" dir={dir}>
|
|
<div className="p-4">
|
|
<h4 className="mb-4 text-sm leading-none font-medium">{t.tags}</h4>
|
|
{tags.map((tag) => (
|
|
<React.Fragment key={tag}>
|
|
<div className="text-sm">{tag}</div>
|
|
<Separator className="my-2" />
|
|
</React.Fragment>
|
|
))}
|
|
</div>
|
|
</ScrollArea>
|
|
)
|
|
}
|