-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathprojectCard.tsx
102 lines (96 loc) · 3.5 KB
/
projectCard.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import Image from "next/image";
import Link from "next/link";
import { FaCode, FaChevronDown, FaChevronUp } from "react-icons/fa";
import { useState } from "react";
import { motion, AnimatePresence } from "framer-motion";
import type { Project } from "@/types/project";
const MAX_DESCRIPTION_LENGTH = 90;
export default function ProjectCard({ data: project }: { data: Project }) {
const [expanded, setExpanded] = useState(false);
const isLongDescription = project.description.length > MAX_DESCRIPTION_LENGTH;
return (
<article className="flex w-full flex-col rounded-lg border-2 border-violet-950 sm:w-full md:w-full lg:w-full xl:w-full 2xl:w-full">
<Image
src={project.image}
width={400}
height={200}
alt={`Project "${project.name}"`}
className="h-48 w-full rounded-t-md object-cover sm:h-56 md:h-64"
/>
<div className="flex flex-col gap-y-2 p-3 sm:p-4">
<div className="relative pb-6">
<AnimatePresence initial={false}>
<motion.div
key="content"
initial="collapsed"
animate={expanded ? "expanded" : "collapsed"}
exit="collapsed"
variants={{
expanded: { height: "auto", opacity: 1 },
collapsed: { height: "7em", opacity: 1 },
}}
transition={{ duration: 0.3, ease: "easeInOut" }}
className="relative overflow-hidden"
>
<div className="flex items-start justify-between">
<h2 className="text-sm font-medium sm:text-base lg:text-lg 2xl:text-xl">
{project.name}
</h2>
<Link
href={project.repo}
aria-label={`View ${project.name} repository`}
>
<FaCode
size={16}
className="text-HCPurpleText transition-colors hover:text-HCPurple"
/>
</Link>
</div>
<p className="text-xs sm:text-sm 2xl:text-base">
{project.description}
</p>
{!expanded && isLongDescription && (
<div className="absolute bottom-0 left-0 right-0 h-8 bg-gradient-to-t from-bg to-transparent sm:h-10" />
)}
</motion.div>
</AnimatePresence>
{isLongDescription && (
<ExpandButton
expanded={expanded}
onClick={() => setExpanded(!expanded)}
/>
)}
</div>
<div className="mt-1 flex items-center gap-x-2 sm:mt-2">
<Image
src={project.authorPfp}
width={20}
height={20}
alt={project.authorName}
className="h-5 w-5 rounded-full"
/>
<p className="text-sm sm:text-base">{project.authorName}</p>
</div>
</div>
</article>
);
}
interface ExpandButtonProps {
expanded: boolean;
onClick: () => void;
}
function ExpandButton({ expanded, onClick }: ExpandButtonProps) {
return (
<motion.button
className="absolute bottom-0 right-0 text-HCPurpleText transition-colors hover:text-HCPurple"
onClick={onClick}
whileHover={{ scale: 1.1 }}
whileTap={{ scale: 0.95 }}
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
aria-label={expanded ? "Collapse description" : "Expand description"}
>
{expanded ? <FaChevronUp size={12} /> : <FaChevronDown size={12} />}
</motion.button>
);
}