diff options
Diffstat (limited to 'src/frontend/app/components/StopSheetSkeleton.tsx')
| -rw-r--r-- | src/frontend/app/components/StopSheetSkeleton.tsx | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/src/frontend/app/components/StopSheetSkeleton.tsx b/src/frontend/app/components/StopSheetSkeleton.tsx new file mode 100644 index 0000000..91ea74f --- /dev/null +++ b/src/frontend/app/components/StopSheetSkeleton.tsx @@ -0,0 +1,66 @@ +import React from "react"; +import Skeleton, { SkeletonTheme } from "react-loading-skeleton"; +import "react-loading-skeleton/dist/skeleton.css"; +import { useTranslation } from "react-i18next"; + +interface StopSheetSkeletonProps { + rows?: number; +} + +export const StopSheetSkeleton: React.FC<StopSheetSkeletonProps> = ({ + rows = 4 +}) => { + const { t } = useTranslation(); + + return ( + <SkeletonTheme baseColor="#f0f0f0" highlightColor="#e0e0e0"> + <div className="stop-sheet-estimates"> + <h3 className="stop-sheet-subtitle"> + {t("estimates.next_arrivals", "Next arrivals")} + </h3> + + <div className="stop-sheet-estimates-list"> + {Array.from({ length: rows }, (_, index) => ( + <div key={`skeleton-${index}`} className="stop-sheet-estimate-item"> + <div className="stop-sheet-estimate-line"> + <Skeleton width="40px" height="24px" style={{ borderRadius: "4px" }} /> + </div> + + <div className="stop-sheet-estimate-details"> + <div className="stop-sheet-estimate-route"> + <Skeleton width="120px" height="0.95rem" /> + </div> + <div className="stop-sheet-estimate-time"> + <Skeleton width="80px" height="0.85rem" /> + </div> + </div> + </div> + ))} + </div> + </div> + + <div className="stop-sheet-footer"> + <div className="stop-sheet-timestamp"> + <Skeleton width="140px" height="0.8rem" /> + </div> + + <div className="stop-sheet-actions"> + <div className="stop-sheet-reload" style={{ + opacity: 0.6, + pointerEvents: "none" + }}> + <Skeleton width="70px" height="0.85rem" /> + </div> + + <div className="stop-sheet-view-all" style={{ + background: "#f0f0f0", + cursor: "not-allowed", + pointerEvents: "none" + }}> + <Skeleton width="180px" height="0.85rem" /> + </div> + </div> + </div> + </SkeletonTheme> + ); +}; |
