1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
import React from "react";
import Skeleton, { SkeletonTheme } from "react-loading-skeleton";
import "react-loading-skeleton/dist/skeleton.css";
import { useTranslation } from "react-i18next";
interface EstimatesTableSkeletonProps {
rows?: number;
}
export const EstimatesTableSkeleton: React.FC<EstimatesTableSkeletonProps> = ({
rows = 3
}) => {
const { t } = useTranslation();
return (
<SkeletonTheme baseColor="#f0f0f0" highlightColor="#e0e0e0">
<table className="table">
<caption>
<Skeleton width="250px" />
</caption>
<thead>
<tr>
<th>{t("estimates.line", "Línea")}</th>
<th>{t("estimates.route", "Ruta")}</th>
<th>{t("estimates.arrival", "Llegada")}</th>
<th>{t("estimates.distance", "Distancia")}</th>
</tr>
</thead>
<tbody>
{Array.from({ length: rows }, (_, index) => (
<tr key={`skeleton-${index}`}>
<td>
<Skeleton width="40px" height="24px" style={{ borderRadius: "4px" }} />
</td>
<td>
<Skeleton width="120px" />
</td>
<td>
<div style={{ display: "flex", flexDirection: "column", gap: "2px" }}>
<Skeleton width="60px" />
<Skeleton width="40px" />
</div>
</td>
<td>
<Skeleton width="50px" />
</td>
</tr>
))}
</tbody>
</table>
</SkeletonTheme>
);
};
interface EstimatesGroupedSkeletonProps {
groups?: number;
rowsPerGroup?: number;
}
export const EstimatesGroupedSkeleton: React.FC<EstimatesGroupedSkeletonProps> = ({
groups = 3,
rowsPerGroup = 2
}) => {
const { t } = useTranslation();
return (
<SkeletonTheme baseColor="#f0f0f0" highlightColor="#e0e0e0">
<table className="table grouped-table">
<caption>
<Skeleton width="250px" />
</caption>
<thead>
<tr>
<th>{t("estimates.line", "Línea")}</th>
<th>{t("estimates.route", "Ruta")}</th>
<th>{t("estimates.arrival", "Llegada")}</th>
<th>{t("estimates.distance", "Distancia")}</th>
</tr>
</thead>
<tbody>
{Array.from({ length: groups }, (_, groupIndex) => (
<React.Fragment key={`group-${groupIndex}`}>
{Array.from({ length: rowsPerGroup }, (_, rowIndex) => (
<tr key={`skeleton-${groupIndex}-${rowIndex}`} className={rowIndex === 0 ? "group-start" : ""}>
<td>
{rowIndex === 0 && (
<Skeleton width="40px" height="24px" style={{ borderRadius: "4px" }} />
)}
</td>
<td>
<Skeleton width="120px" />
</td>
<td>
<div style={{ display: "flex", flexDirection: "column", gap: "2px" }}>
<Skeleton width="60px" />
<Skeleton width="40px" />
</div>
</td>
<td>
<Skeleton width="50px" />
</td>
</tr>
))}
</React.Fragment>
))}
</tbody>
</table>
</SkeletonTheme>
);
};
|