Refactor theme structure

Add new themes under Discrete Math, move binary interactive, and remove School Connect.
This commit is contained in:
gpt-engineer-app[bot] 2025-07-19 13:53:44 +00:00
parent 76e47c5b00
commit 964c544027
12 changed files with 287 additions and 30 deletions

View file

@ -0,0 +1,119 @@
import { useState } from "react";
import { Link } from "react-router-dom";
import { Search } from "lucide-react";
import Layout from "@/components/Layout";
import InteractiveCard from "@/components/InteractiveCard";
import BinaryNumberGame from "@/components/BinaryNumberGame";
interface Interactive {
id: string;
title: string;
description: string;
tags: string[];
component: React.ComponentType;
}
const interactives: Interactive[] = [
{
id: "binary-number-game",
title: "Binary Number Representation",
description: "Learn how numbers are represented in binary (base-2) format through an interactive guessing game.",
tags: ["binary", "numbers", "conversion", "representation"],
component: BinaryNumberGame,
},
];
const Foundations = () => {
const [searchTerm, setSearchTerm] = useState("");
const [selectedInteractive, setSelectedInteractive] = useState<Interactive | null>(null);
const filteredInteractives = interactives.filter(
(interactive) =>
interactive.title.toLowerCase().includes(searchTerm.toLowerCase()) ||
interactive.description.toLowerCase().includes(searchTerm.toLowerCase()) ||
interactive.tags.some((tag) =>
tag.toLowerCase().includes(searchTerm.toLowerCase())
)
);
if (selectedInteractive) {
const InteractiveComponent = selectedInteractive.component;
return (
<Layout>
<div className="container mx-auto px-4 py-8">
<div className="space-y-6">
<div className="flex items-center gap-4">
<Link
to="/themes/discrete-math"
className="text-primary hover:text-primary/80 font-medium"
>
Back to Discrete Math
</Link>
<h1 className="text-2xl font-bold text-foreground">{selectedInteractive.title}</h1>
</div>
<div className="bg-background border rounded-lg p-6">
<InteractiveComponent />
</div>
<button
onClick={() => setSelectedInteractive(null)}
className="inline-flex items-center px-4 py-2 bg-secondary text-secondary-foreground rounded-md hover:bg-secondary/80 transition-colors"
>
Back to Foundations Gallery
</button>
</div>
</div>
</Layout>
);
}
return (
<Layout>
<div className="container mx-auto px-4 py-8">
<div className="space-y-8">
<div className="flex items-center gap-4">
<Link
to="/themes/discrete-math"
className="text-primary hover:text-primary/80 font-medium"
>
Back to Discrete Math
</Link>
<h1 className="text-3xl font-bold text-foreground">Foundations</h1>
</div>
<div className="relative max-w-md">
<Search className="absolute left-3 top-1/2 transform -translate-y-1/2 text-muted-foreground w-4 h-4" />
<input
type="text"
placeholder="Search interactives..."
value={searchTerm}
onChange={(e) => setSearchTerm(e.target.value)}
className="w-full pl-10 pr-4 py-2 border border-outline rounded-md bg-background text-foreground placeholder:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent"
/>
</div>
<div className="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
{filteredInteractives.map((interactive) => (
<InteractiveCard
key={interactive.id}
title={interactive.title}
description={interactive.description}
tags={interactive.tags}
onClick={() => setSelectedInteractive(interactive)}
/>
))}
</div>
{filteredInteractives.length === 0 && (
<div className="text-center py-12">
<p className="text-muted-foreground">
No interactives found matching "{searchTerm}"
</p>
</div>
)}
</div>
</div>
</Layout>
);
};
export default Foundations;