aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/components/SchedulesTableSkeleton.tsx
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2025-11-06 15:44:58 +0100
committerAriel Costas Guerrero <ariel@costas.dev>2025-11-06 15:44:58 +0100
commit093ee906eae5361bbf47ae2fdc4003f95696656a (patch)
tree055c656f69e91d6f503a4e11b9808e825e012feb /src/frontend/app/components/SchedulesTableSkeleton.tsx
parentd95cfa74c5fcb9e58af1f85f8d76d859f155fce3 (diff)
Rename schedules table
Diffstat (limited to 'src/frontend/app/components/SchedulesTableSkeleton.tsx')
-rw-r--r--src/frontend/app/components/SchedulesTableSkeleton.tsx114
1 files changed, 114 insertions, 0 deletions
diff --git a/src/frontend/app/components/SchedulesTableSkeleton.tsx b/src/frontend/app/components/SchedulesTableSkeleton.tsx
new file mode 100644
index 0000000..50ba94d
--- /dev/null
+++ b/src/frontend/app/components/SchedulesTableSkeleton.tsx
@@ -0,0 +1,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 SchedulesTableSkeleton: 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>
+ );
+};