-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainFunct.js
310 lines (298 loc) · 8.68 KB
/
mainFunct.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
const puppeteer = require('puppeteer')
// A Small utility func() to format numbers
function numberWithCommas(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
module.exports = async function (data, live, country, template) {
try {
//Main Template (HTML/CSS/JAVACSRIPT)
const worldTemplate = `<!DOCTYPE html>
<html lang="en">
<body>
<style>
body {
margin: 0;
height: 700px;
width: 1200px;
background: white;
color: #323232;
font-family: roboto, sans-serif;
background: url("https://cdn.statically.io/gh/PiyushSuthar/Covid-19-Image-Api/36950d90/public/corona.png");
background-repeat: no-repeat;
background-size: auto;
}
.outer {
height: 700px;
width: 1200px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.inner {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.inner > div {
margin: 15px;
}
.inner h1 {
margin-top: 1px;
font-size: 50px;
}
h3 {
margin-bottom: 1px;
font-weight: 400;
font-size: 30px;
}
.total-cases {
color: royalblue;
}
.total-deaths {
color: red;
}
.total-recovered {
color: green;
}
.head h1 {
font-size: 60px;
}
</style>
<div class="outer">
<div class="head">
<h1>${country === "" ? "" : `${country}'s `}Covid-19 Stats</h1>
</div>
<div class="inner">
<div class="total-cases">
<h3>${live === "true" ? "Today" : "Total"} Cases</h3>
<h1>${live === "true" ? numberWithCommas(data.todayCases) : numberWithCommas(data.cases)}</h1>
</div>
<div class="total-deaths">
<h3>${live === "true" ? "Today" : "Total"} Deaths</h3>
<h1>${live === "true" ? numberWithCommas(data.todayDeaths) : numberWithCommas(data.deaths)}</h1>
</div>
<div class="total-recovered">
<h3>${live === "true" ? "Today" : "Total"} Recovered</h3>
<h1>${live === "true" ? numberWithCommas(data.todayRecovered) : numberWithCommas(data.recovered)}</h1>
</div>
</div>
<div class="footer">
<h3>Made with <span style="color:red;">❤</span> by @PiyushSthr</h3>
</div>
</div>
</body>
</html>
`;
const worldTemplateBackUp = `<!DOCTYPE html>
<html lang="en">
<body>
<style>
body {
margin: 0;
height: 566px;
width: 1080px;
background: white;
color: #323232;
font-family: roboto, sans-serif;
background: url("https://cdn.statically.io/gh/PiyushSuthar/Covid-19-Image-Api/36950d90/public/corona.png");
background-repeat: no-repeat;
background-size: cover;
}
.outer {
height: 566px;
width: 1080px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.inner {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.inner > div {
margin: 15px;
}
.inner h1 {
margin-top: 1px;
font-size: 50px;
}
h3 {
margin-bottom: 1px;
font-weight: 400;
font-size: 30px;
}
.total-cases {
color: royalblue;
}
.total-deaths {
color: red;
}
.total-recovered {
color: green;
}
.head h1 {
font-size: 60px;
}
</style>
<div class="outer">
<div class="head">
<h1>${country === "" ? "" : `${country}'s `}Covid-19 Stats</h1>
</div>
<div class="inner">
<div class="total-cases">
<h3>${live === "true" ? "Today" : "Total"} Cases</h3>
<h1>
${live === "true" ? numberWithCommas(data.todayCases) :
numberWithCommas(data.cases)}
</h1>
</div>
<div class="total-deaths">
<h3>${live === "true" ? "Today" : "Total"} Deaths</h3>
<h1>
${live === "true" ? numberWithCommas(data.todayDeaths) :
numberWithCommas(data.deaths)}
</h1>
</div>
<div class="total-recovered">
<h3>${live === "true" ? "Today" : "Total"} Recovered</h3>
<h1>
${live === "true" ? numberWithCommas(data.todayRecovered) :
numberWithCommas(data.recovered)}
</h1>
</div>
</div>
<div class="footer">
<h3>Made with <span style="color:red;">❤</span> by @PiyushSthr</h3>
</div>
</div>
</body>
</html>
`
const igTemplate = `<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Static Template</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: black;
}
.outer {
height: 1080px;
width: 1080px;
background-image: url("https://cdn.statically.io/gh/PiyushSuthar/Covid-19-Image-Api/36950d90/public/2-COVID-19.png");
background-repeat: no-repeat;
background-size: cover;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: "Poppins", sans-serif;
}
.inner {
margin-top: 120px;
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.totalCases {
max-width: 45%;
width: 40%;
margin: 40px;
}
.totalCases h1 {
font-size: 65px;
margin-top: 2px;
font-weight: 500;
}
.totalCases h2 {
font-size: 35px;
margin-bottom: 2px;
font-weight: 400;
}
.cases {
background-color: rgb(252, 252, 224);
}
.active {
background-color: rgb(236, 241, 255);
}
.deaths {
background-color: rgb(255, 236, 236);
}
.recovered {
background-color: rgb(215, 252, 208);
}
.cases,
.active,
.recovered,
.deaths {
border-radius: 15px;
padding: 20px;
}
</style>
</head>
<body>
<div class="outer">
<div class="inner">
<div class="totalCases cases">
<h2>${live === "true" ? "Today" : "Total"} Cases</h2>
<h1>${live === "true" ? numberWithCommas(data.todayCases) :
numberWithCommas(data.cases)}</h1>
</div>
<div class="totalCases deaths">
<h2>${live === "true" ? "Today" : "Total"} Deaths</h2>
<h1>${live === "true" ? numberWithCommas(data.todayDeaths) :
numberWithCommas(data.deaths)}</h1>
</div>
<div class="totalCases recovered">
<h2>${live === "true" ? "Today" : "Total"} Recovered</h2>
<h1> ${live === "true" ? numberWithCommas(data.todayRecovered) :
numberWithCommas(data.recovered)}</h1>
</div>
<div class="totalCases active">
<h2>Total Active</h2>
<h1> ${numberWithCommas(data.active)}</h1>
</div>
</div>
</div>
</body>
</html>
`
console.log("Getting")
const browser = await puppeteer.launch({
args: [
'--no-sandbox',
'--disable-setuid-sandbox',
],
})
const page = await browser.newPage()
await page.setViewport({
width: template? 1080 : 1200,
height: template? 1080 : 700
});
await page.setContent(template? igTemplate :worldTemplate)//Template Name
var _page = await page.screenshot({ type: template?"jpeg":"png" })
await browser.close()
return _page
} catch (error) {
console.log(error);
return "{Error on our side}"
}
}
//That's it ;)