mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-28 15:14: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
80 lines
1.7 KiB
TypeScript
80 lines
1.7 KiB
TypeScript
"use client"
|
||
|
||
import * as React from "react"
|
||
import { Card, CardContent } from "@/examples/base/ui-rtl/card"
|
||
import {
|
||
Carousel,
|
||
CarouselContent,
|
||
CarouselItem,
|
||
CarouselNext,
|
||
CarouselPrevious,
|
||
} from "@/examples/base/ui-rtl/carousel"
|
||
|
||
import {
|
||
useTranslation,
|
||
type Translations,
|
||
} from "@/components/language-selector"
|
||
|
||
const translations: Translations = {
|
||
en: {
|
||
dir: "ltr",
|
||
values: {},
|
||
},
|
||
ar: {
|
||
dir: "rtl",
|
||
values: {},
|
||
},
|
||
he: {
|
||
dir: "rtl",
|
||
values: {},
|
||
},
|
||
}
|
||
|
||
function toArabicNumerals(num: number): string {
|
||
const arabicNumerals = ["٠", "١", "٢", "٣", "٤", "٥", "٦", "٧", "٨", "٩"]
|
||
return num
|
||
.toString()
|
||
.split("")
|
||
.map((digit) => arabicNumerals[parseInt(digit, 10)])
|
||
.join("")
|
||
}
|
||
|
||
export function CarouselRtl() {
|
||
const { dir, language } = useTranslation(translations, "ar")
|
||
|
||
const formatNumber = (num: number): string => {
|
||
if (language === "ar") {
|
||
return toArabicNumerals(num)
|
||
}
|
||
return num.toString()
|
||
}
|
||
|
||
return (
|
||
<Carousel
|
||
dir={dir}
|
||
className="w-full max-w-[12rem] sm:max-w-xs"
|
||
opts={{
|
||
direction: dir,
|
||
}}
|
||
>
|
||
<CarouselContent>
|
||
{Array.from({ length: 5 }).map((_, index) => (
|
||
<CarouselItem key={index}>
|
||
<div className="p-1">
|
||
<Card>
|
||
<CardContent className="flex aspect-square items-center justify-center p-6">
|
||
<span className="text-4xl font-semibold">
|
||
{formatNumber(index + 1)}
|
||
</span>
|
||
</CardContent>
|
||
</Card>
|
||
</div>
|
||
</CarouselItem>
|
||
))}
|
||
</CarouselContent>
|
||
<CarouselPrevious />
|
||
<CarouselNext />
|
||
</Carousel>
|
||
)
|
||
}
|