mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-23 04:35:46 +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
68 lines
1.3 KiB
TypeScript
68 lines
1.3 KiB
TypeScript
"use client"
|
||
|
||
import * as React from "react"
|
||
import {
|
||
Progress,
|
||
ProgressLabel,
|
||
ProgressValue,
|
||
} from "@/examples/base/ui-rtl/progress"
|
||
|
||
import {
|
||
useTranslation,
|
||
type Translations,
|
||
} from "@/components/language-selector"
|
||
|
||
const translations: Translations = {
|
||
en: {
|
||
dir: "ltr",
|
||
values: {
|
||
label: "Upload progress",
|
||
},
|
||
},
|
||
ar: {
|
||
dir: "rtl",
|
||
values: {
|
||
label: "تقدم الرفع",
|
||
},
|
||
},
|
||
he: {
|
||
dir: "rtl",
|
||
values: {
|
||
label: "התקדמות העלאה",
|
||
},
|
||
},
|
||
}
|
||
|
||
function toArabicNumerals(num: number): string {
|
||
const arabicNumerals = ["٠", "١", "٢", "٣", "٤", "٥", "٦", "٧", "٨", "٩"]
|
||
return num
|
||
.toString()
|
||
.split("")
|
||
.map((digit) => arabicNumerals[parseInt(digit, 10)])
|
||
.join("")
|
||
}
|
||
|
||
export function ProgressRtl() {
|
||
const { dir, t, language } = useTranslation(translations, "ar")
|
||
|
||
const formatNumber = (num: number): string => {
|
||
if (language === "ar") {
|
||
return toArabicNumerals(num)
|
||
}
|
||
return num.toString()
|
||
}
|
||
|
||
return (
|
||
<Progress value={56} className="w-full max-w-sm" dir={dir}>
|
||
<ProgressLabel>{t.label}</ProgressLabel>
|
||
<ProgressValue>
|
||
{(value) => (
|
||
<span className="ms-auto">
|
||
{formatNumber(parseFloat(value ?? "0"))}%
|
||
</span>
|
||
)}
|
||
</ProgressValue>
|
||
</Progress>
|
||
)
|
||
}
|