diff --git a/src/components/Skills.tsx b/src/components/Skills.tsx index 8d8f27f..e371944 100644 --- a/src/components/Skills.tsx +++ b/src/components/Skills.tsx @@ -1,6 +1,7 @@ +"use client"; + import { Card, CardContent } from "@/components/ui/card"; -// Import SVGs import ReactLogo from "@/logos/react.svg"; import ReactNativeLogo from "@/logos/react-native.svg"; import JavascriptLogo from "@/logos/javascript.svg"; @@ -22,41 +23,139 @@ import WebextensionsLogo from "@/logos/webextensions.svg"; import WebrtcLogo from "@/logos/webrtc.svg"; import ThingsboardLogo from "@/logos/thingsboard.svg"; import DockerLogo from "@/logos/docker.svg"; +import { Button } from "./ui/button"; +import { ChevronDown, ChevronUp } from "lucide-react"; +import { useEffect, useState } from "react"; + +const seggregatedSkills = { + frontend: [ + { name: "React", logo: ReactLogo }, + { name: "React Native", logo: ReactNativeLogo }, + { name: "Javascript", logo: JavascriptLogo }, + { name: "Typescript", logo: TypescriptLogo }, + { name: "Styled Components", logo: StyledComponentsLogo }, + { name: "Tailwind", logo: TailwindLogo }, + { name: "Vue.JS", logo: VuejsLogo }, + { name: "Solid.JS", logo: SolidjsLogo }, + { name: "Redux", logo: ReduxLogo }, + { name: "Next.JS", logo: NextjsLogo }, + { name: "Vitest/Jest", logo: VitestLogo }, + ], + backend: [ + { name: "Node.JS", logo: NodejsLogo }, + { name: "Postgres", logo: PostgresqlLogo }, + { name: "GraphQL", logo: GraphqlLogo }, + { name: "Firebase", logo: FirebaseLogo }, + { name: "Microservices", logo: MicroservicesLogo }, + { name: "Docker", logo: DockerLogo }, + ], + misc: [ + { name: "Electron.JS", logo: ElectronLogo }, + { name: "Web Extensions", logo: WebextensionsLogo }, + { name: "WebRTC", logo: WebrtcLogo }, + { name: "Thingsboard", logo: ThingsboardLogo }, + ], +}; + +const ITEMS_TO_SHOW = 4; + +function SkillSection({ + title, + skills, + expanded, + onToggle, +}: { + title: string; + skills: typeof seggregatedSkills.frontend; + expanded: boolean; + onToggle: () => void; +}) { + const [isMobile, setIsMobile] = useState(false); + + useEffect(() => { + const checkMobile = () => setIsMobile(window.innerWidth < 1024); + checkMobile(); + window.addEventListener("resize", checkMobile); + return () => window.removeEventListener("resize", checkMobile); + }, []); -const skills = [ - { name: "React", logo: ReactLogo }, - { name: "React Native", logo: ReactNativeLogo }, - { name: "Javascript", logo: JavascriptLogo }, - { name: "Typescript", logo: TypescriptLogo }, - { name: "Node.JS", logo: NodejsLogo }, - { name: "Electron.JS", logo: ElectronLogo }, - { name: "Styled Components", logo: StyledComponentsLogo }, - { name: "Tailwind", logo: TailwindLogo }, - { name: "Postgres", logo: PostgresqlLogo }, - { name: "GraphQL", logo: GraphqlLogo }, - { name: "Vue.JS", logo: VuejsLogo }, - { name: "Solid.JS", logo: SolidjsLogo }, - { name: "Firebase", logo: FirebaseLogo }, - { name: "Microservices", logo: MicroservicesLogo }, - { name: "Redux", logo: ReduxLogo }, - { name: "Vitest/Jest", logo: VitestLogo }, - { name: "Next.JS", logo: NextjsLogo }, - { name: "Web Extensions", logo: WebextensionsLogo }, - { name: "WebRTC", logo: WebrtcLogo }, - { name: "Thingsboard", logo: ThingsboardLogo }, - { name: "Docker", logo: DockerLogo }, -]; + const displayedSkills = !isMobile + ? skills + : expanded + ? skills + : skills.slice(0, ITEMS_TO_SHOW); + const showToggle = skills.length > ITEMS_TO_SHOW && isMobile; + + return ( +