-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCollectionItem.tsx
84 lines (80 loc) · 3.02 KB
/
CollectionItem.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
import { useCallback, useState } from 'react';
import Image from 'next/image';
import * as Unsplash from '@/types/unsplash';
import download from '@/lib/download';
import SvgButton from '@/ui/SvgButton';
interface ICollectionItem {
collection: Unsplash.Collection.Basic;
}
export default function CollectionItem({ collection }: ICollectionItem) {
const { title, total_photos, preview_photos, user } = collection;
const [isHovered, setIsHovered] = useState<boolean>(false);
return (
<div
className="relative mb-8 flex aspect-[4/3] w-full flex-col bg-transparent"
onMouseEnter={() => setIsHovered(true)}
onMouseLeave={() => setIsHovered(false)}
>
<div className="min-h-48 flex flex-1 flex-row overflow-hidden rounded-xl hover:opacity-75">
<div className="relative h-full w-2/3 bg-zinc-500">
{preview_photos && preview_photos[0] && (
<Image
alt={preview_photos[0].id}
src={preview_photos[0].urls.thumb}
fill={true}
quality={100}
placeholder="blur"
blurDataURL={preview_photos[0].urls.thumb}
className="object-cover object-center"
sizes="160px"
/>
)}
</div>
<div className="flex flex-1 flex-col">
<div className="relative h-1/2 w-full border-l-2 border-b-2 border-l-white border-b-white bg-green-500">
{preview_photos && preview_photos[1] && (
<Image
alt={preview_photos[1].id}
src={preview_photos[1].urls.small}
fill={true}
quality={100}
placeholder="blur"
blurDataURL={preview_photos[0].urls.thumb}
className="object-cover object-center"
sizes="160px"
/>
)}
</div>
<div className="relative h-1/2 w-full border-l-2 border-l-white bg-orange-500">
{preview_photos && preview_photos[2] && (
<Image
alt={preview_photos[2].id}
src={preview_photos[2].urls.regular}
fill={true}
quality={100}
placeholder="blur"
blurDataURL={preview_photos[0].urls.thumb}
className="object-cover object-center"
sizes="160px"
/>
)}
</div>
</div>
</div>
<div className="w-full py-4">
<div className="overflow-hidden !text-ellipsis whitespace-nowrap text-lg font-semibold text-zinc-900">
{title}
</div>
<div className="flex flex-row items-center space-x-2 text-sm font-light text-zinc-500">
<span className="whitespace-nowrap">
{total_photos} photo{total_photos > 1 ? 's' : ''}
</span>
<span>·</span>
<span className="overflow-hidden !text-ellipsis whitespace-nowrap">
Curated by {user.first_name + ' ' + user.last_name}
</span>
</div>
</div>
</div>
);
}