Spaces:
Sleeping
Sleeping
| import React from 'react'; | |
| import { Loader2, RefreshCw, AlertCircle } from 'lucide-react'; | |
| import { Button } from '@/components/ui/button'; | |
| import { Card, CardContent } from '@/components/ui/card'; | |
| interface LoadingStateProps { | |
| isLoading?: boolean; | |
| error?: Error | null; | |
| onRetry?: () => void; | |
| loadingText?: string; | |
| errorText?: string; | |
| children?: React.ReactNode; | |
| className?: string; | |
| } | |
| const LoadingState: React.FC<LoadingStateProps> = ({ | |
| isLoading = false, | |
| error = null, | |
| onRetry, | |
| loadingText = 'Loading...', | |
| errorText = 'Failed to load data', | |
| children, | |
| className = '' | |
| }) => { | |
| if (error) { | |
| return ( | |
| <Card className={`w-full ${className}`}> | |
| <CardContent className="flex flex-col items-center justify-center py-8 space-y-4"> | |
| <AlertCircle className="h-8 w-8 text-destructive" /> | |
| <div className="text-center space-y-2"> | |
| <p className="text-sm font-medium text-destructive"> | |
| {errorText} | |
| </p> | |
| <p className="text-xs text-muted-foreground"> | |
| {error.message} | |
| </p> | |
| </div> | |
| {onRetry && ( | |
| <Button onClick={onRetry} variant="outline" size="sm"> | |
| <RefreshCw className="h-4 w-4 mr-2" /> | |
| Try Again | |
| </Button> | |
| )} | |
| </CardContent> | |
| </Card> | |
| ); | |
| } | |
| if (isLoading) { | |
| return ( | |
| <Card className={`w-full ${className}`}> | |
| <CardContent className="flex flex-col items-center justify-center py-8 space-y-4"> | |
| <Loader2 className="h-8 w-8 animate-spin text-muted-foreground" /> | |
| <p className="text-sm text-muted-foreground"> | |
| {loadingText} | |
| </p> | |
| </CardContent> | |
| </Card> | |
| ); | |
| } | |
| return <>{children}</>; | |
| }; | |
| export default LoadingState; |