Files
shadcn-ui/apps/v4/examples/base/table-rtl.tsx
shadcn 7d718ddaa9 fix: refactor styles (#10190)
* feat: refactor styles handling across v4

* fix

* fix

* fix

* fix

* fix

* fix
2026-03-26 14:36:00 +04:00

152 lines
3.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"use client"
import * as React from "react"
import {
useTranslation,
type Translations,
} from "@/components/language-selector"
import {
Table,
TableBody,
TableCaption,
TableCell,
TableFooter,
TableHead,
TableHeader,
TableRow,
} from "@/styles/base-nova/ui-rtl/table"
const translations: Translations = {
en: {
dir: "ltr",
values: {
caption: "A list of your recent invoices.",
invoice: "Invoice",
status: "Status",
method: "Method",
amount: "Amount",
paid: "Paid",
pending: "Pending",
unpaid: "Unpaid",
creditCard: "Credit Card",
paypal: "PayPal",
bankTransfer: "Bank Transfer",
total: "Total",
},
},
ar: {
dir: "rtl",
values: {
caption: "قائمة بفواتيرك الأخيرة.",
invoice: "الفاتورة",
status: "الحالة",
method: "الطريقة",
amount: "المبلغ",
paid: "مدفوع",
pending: "قيد الانتظار",
unpaid: "غير مدفوع",
creditCard: "بطاقة ائتمانية",
paypal: "PayPal",
bankTransfer: "تحويل بنكي",
total: "المجموع",
},
},
he: {
dir: "rtl",
values: {
caption: "רשימת החשבוניות האחרונות שלך.",
invoice: "חשבונית",
status: "סטטוס",
method: "שיטה",
amount: "סכום",
paid: "שולם",
pending: "ממתין",
unpaid: "לא שולם",
creditCard: "כרטיס אשראי",
paypal: "PayPal",
bankTransfer: "העברה בנקאית",
total: 'סה"כ',
},
},
}
const invoices = [
{
invoice: "INV001",
paymentStatus: "paid" as const,
totalAmount: "$250.00",
paymentMethod: "creditCard" as const,
},
{
invoice: "INV002",
paymentStatus: "pending" as const,
totalAmount: "$150.00",
paymentMethod: "paypal" as const,
},
{
invoice: "INV003",
paymentStatus: "unpaid" as const,
totalAmount: "$350.00",
paymentMethod: "bankTransfer" as const,
},
{
invoice: "INV004",
paymentStatus: "paid" as const,
totalAmount: "$450.00",
paymentMethod: "creditCard" as const,
},
{
invoice: "INV005",
paymentStatus: "paid" as const,
totalAmount: "$550.00",
paymentMethod: "paypal" as const,
},
{
invoice: "INV006",
paymentStatus: "pending" as const,
totalAmount: "$200.00",
paymentMethod: "bankTransfer" as const,
},
{
invoice: "INV007",
paymentStatus: "unpaid" as const,
totalAmount: "$300.00",
paymentMethod: "creditCard" as const,
},
]
export function TableRtl() {
const { dir, t } = useTranslation(translations, "ar")
return (
<Table dir={dir}>
<TableCaption>{t.caption}</TableCaption>
<TableHeader>
<TableRow>
<TableHead className="w-[100px]">{t.invoice}</TableHead>
<TableHead>{t.status}</TableHead>
<TableHead>{t.method}</TableHead>
<TableHead className="text-right">{t.amount}</TableHead>
</TableRow>
</TableHeader>
<TableBody>
{invoices.map((invoice) => (
<TableRow key={invoice.invoice}>
<TableCell className="font-medium">{invoice.invoice}</TableCell>
<TableCell>{t[invoice.paymentStatus]}</TableCell>
<TableCell>{t[invoice.paymentMethod]}</TableCell>
<TableCell className="text-right">{invoice.totalAmount}</TableCell>
</TableRow>
))}
</TableBody>
<TableFooter>
<TableRow>
<TableCell colSpan={3}>{t.total}</TableCell>
<TableCell className="text-right">$2,500.00</TableCell>
</TableRow>
</TableFooter>
</Table>
)
}