2026-06-05 17:12:44 +00:00
|
|
|
import { useState } from "react";
|
2026-06-05 17:05:27 +00:00
|
|
|
import { useLanguage } from "../contexts/LanguageContext";
|
2026-06-05 17:12:44 +00:00
|
|
|
import { useListPublishedRequests } from "@workspace/api-client-react";
|
2026-06-05 17:05:27 +00:00
|
|
|
import { Skeleton } from "@/components/ui/skeleton";
|
2026-06-05 17:45:17 +00:00
|
|
|
import { OpportunityCard } from "../components/OpportunityCard";
|
2026-06-05 19:11:34 +00:00
|
|
|
import { Reveal } from "../components/Reveal";
|
2026-06-05 17:12:44 +00:00
|
|
|
|
|
|
|
|
type NeedTypeKey =
|
|
|
|
|
| "electricity" | "water" | "food" | "health"
|
|
|
|
|
| "housing" | "refrigerator" | "air_conditioner" | "court_order";
|
|
|
|
|
|
|
|
|
|
const NEED_TYPES: NeedTypeKey[] = [
|
|
|
|
|
"electricity", "water", "food", "health",
|
|
|
|
|
"housing", "refrigerator", "air_conditioner", "court_order",
|
|
|
|
|
];
|
2026-06-05 17:05:27 +00:00
|
|
|
|
|
|
|
|
export default function Opportunities() {
|
|
|
|
|
const { t } = useLanguage();
|
|
|
|
|
const { data: requests, isLoading } = useListPublishedRequests();
|
2026-06-05 17:12:44 +00:00
|
|
|
const [activeFilter, setActiveFilter] = useState<NeedTypeKey | "all">("all");
|
|
|
|
|
|
|
|
|
|
const filtered = (requests || []).filter((r) =>
|
|
|
|
|
activeFilter === "all" ? true : r.needType === activeFilter
|
|
|
|
|
);
|
2026-06-05 17:05:27 +00:00
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="container mx-auto px-4 py-12">
|
2026-06-05 17:12:44 +00:00
|
|
|
<h1 className="text-3xl font-bold text-foreground mb-6">{t.opportunities.title}</h1>
|
|
|
|
|
|
|
|
|
|
{/* Filter Bar */}
|
|
|
|
|
<div className="mb-8">
|
|
|
|
|
<p className="text-sm text-muted-foreground mb-3">{t.opportunities.filterByType}</p>
|
|
|
|
|
<div className="flex flex-wrap gap-2">
|
|
|
|
|
<button
|
|
|
|
|
onClick={() => setActiveFilter("all")}
|
|
|
|
|
className={`px-4 py-1.5 rounded-full text-sm font-medium transition-colors border ${
|
|
|
|
|
activeFilter === "all"
|
|
|
|
|
? "bg-primary text-primary-foreground border-primary"
|
|
|
|
|
: "bg-background border-border text-muted-foreground hover:border-primary hover:text-primary"
|
|
|
|
|
}`}
|
|
|
|
|
data-testid="filter-all"
|
|
|
|
|
>
|
|
|
|
|
{t.opportunities.all}
|
|
|
|
|
</button>
|
|
|
|
|
{NEED_TYPES.map((type) => (
|
|
|
|
|
<button
|
|
|
|
|
key={type}
|
|
|
|
|
onClick={() => setActiveFilter(type)}
|
|
|
|
|
className={`px-4 py-1.5 rounded-full text-sm font-medium transition-colors border ${
|
|
|
|
|
activeFilter === type
|
|
|
|
|
? "bg-primary text-primary-foreground border-primary"
|
|
|
|
|
: "bg-background border-border text-muted-foreground hover:border-primary hover:text-primary"
|
|
|
|
|
}`}
|
|
|
|
|
data-testid={`filter-${type}`}
|
|
|
|
|
>
|
|
|
|
|
{t.needTypes[type]}
|
|
|
|
|
</button>
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-06-05 17:05:27 +00:00
|
|
|
{isLoading ? (
|
|
|
|
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
|
|
|
|
{[1, 2, 3].map((i) => (
|
2026-06-05 17:45:17 +00:00
|
|
|
<Skeleton key={i} className="h-96 w-full" />
|
2026-06-05 17:05:27 +00:00
|
|
|
))}
|
|
|
|
|
</div>
|
2026-06-05 17:12:44 +00:00
|
|
|
) : filtered.length === 0 ? (
|
|
|
|
|
<div className="text-center py-16 text-muted-foreground bg-muted/20 rounded-xl border border-dashed">
|
|
|
|
|
{t.opportunities.noOpportunities}
|
|
|
|
|
</div>
|
2026-06-05 17:05:27 +00:00
|
|
|
) : (
|
|
|
|
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
2026-06-05 19:11:34 +00:00
|
|
|
{filtered.map((request, i) => (
|
|
|
|
|
<Reveal key={request.id} delay={(i % 3) * 0.08} className="h-full">
|
|
|
|
|
<OpportunityCard request={request} />
|
|
|
|
|
</Reveal>
|
2026-06-05 17:45:17 +00:00
|
|
|
))}
|
2026-06-05 17:05:27 +00:00
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2026-06-05 17:12:44 +00:00
|
|
|
}
|