-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProducthunt.js
117 lines (103 loc) · 4.25 KB
/
Producthunt.js
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
import React, { useEffect, useState } from 'react';
import Header from './Header';
import producthuntIcon from '../assets/images/producthunt.png';
import upvoteIcon from '../assets/icons/upvote.svg';
import Fade from 'react-reveal/Fade';
import { ThreeDots } from 'svg-loaders-react'
const KEY = 'VBKaBP3CsYNdjwrpq9svI1OVSdXQPP__cxA6MffDLhU';
const query = `{
posts() {
edges{
cursor
node{
id
name
tagline
description
url
votesCount
thumbnail{
type
url
}
}
}
}
}`;
const Producthunt = () => {
const [productsList, setProductsList] = useState([]);
const [loading, setLoading] = useState(true);
const getTopProducts = async () => {
const opts = {
headers: {
Authorization: `Bearer ${KEY}`,
Accept: "application/json",
"Content-Type": "application/json"
},
method: "POST",
mode: "cors",
// X-Frame-Options: "SAMEORIGIN"
body: JSON.stringify({ query })
};
try {
const response = await fetch(`https://api.producthunt.com/v2/api/graphql`, opts)
const topProducts = await response.json();
// console.log(topProducts.data.posts.edges);
setLoading(false);
setProductsList(topProducts.data.posts.edges);
} catch (e) {
alert('Oops! we got a temperory problem, Try after some time.')
}
};
useEffect(() => {
getTopProducts();
}, [])
return (
<div>
<Header
icon={producthuntIcon}
title='Product Hunt'
borderColor='border-red-300'
/>
{
(loading === true) ?
<div className="flex justify-center my-48">
< ThreeDots fill="#6366F1" />
</div>
:
<div className="flex flex-col justify-center p-4">
{productsList.map(product => {
return (
<Fade bottom key={product.node.id}>
<div className="bg-white p-3 text-left m-2 rounded">
<a href={product.node.url} target="_blank" rel="noreferrer">
<div className="flex flex-row">
<img src={product.node.thumbnail.url} alt="thumbnail"
className="md:h-20 md:w-20 h-14 w-14 mr-4 rounded border-2"
/>
<div className="flex flex-col my-auto">
<h2 className="md:text-xl text-md font-semibold">
{product.node.name}
</h2>
<span className="text-sm md:text-md">
{product.node.tagline}
</span>
</div>
<div className="text-center my-2 px-4 border-2 rounded h-14 w-14 flex flex-col mr-2 ml-auto justify-center">
<img src={upvoteIcon} alt="upvote"
className="h-4 w-4 mx-auto"
/>
<span>{product.node.votesCount}</span>
</div>
</div>
</a>
</div>
</Fade>
)
})}
</div>
}
</div>
);
}
export default Producthunt;