-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
182 lines (175 loc) · 3.67 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>FireCatMagic Skibidi Dop Dop Yes Yes</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head>
<body>
<canvas id="myChart"></canvas>
<script>
// this is bad, but less http requests made to the api so :shrug:
let dataArr = [
{
"name": "Mystical Void Egg",
"id": 32358
},
{
"name": "Art Egg",
"id": 32396
},
{
"name": "Teggpot",
"id": 32397
},
{
"name": "Rabbit Egg",
"id": 32317
},
{
"name": "Bright Egg",
"id": 32318
},
{
"name": "Plain White Egg",
"id": 32309
},
{
"name": "Egg of Flooding",
"id": 32331
},
{
"name": "Yellow Decorated Egg",
"id": 32322
},
{
"name": "Pharaoh Egg",
"id": 32319
},
{
"name": "Blue Decorated Egg",
"id": 32323
},
{
"name": "Red Decorated Egg",
"id": 32320
},
{
"name": "Familiar Geometric Egg",
"id": 32316
},
{
"name": "Brown Egg of Brown Pigmentation",
"id": 32391
},
{
"name": "Cobra Egg",
"id": 32354
},
{
"name": "Pink Egg of Light Pink Pigmentation",
"id": 32386
},
{
"name": "Webbed Egg",
"id": 32388
},
{
"name": "Green Decorated Egg",
"id": 32321
},
{
"name": "Vulture Egg",
"id": 32392
},
{
"name": "Egg of Division",
"id": 32855
},
{
"name": "Green Applegg Of Appling Apples",
"id": 32314
},
{
"name": "Patterned Egg Of Regularity",
"id": 32390
},
{
"name": "Plain Brown Egg",
"id": 32310
},
{
"name": "Golden Egg",
"id": 32312
},
{
"name": "Pearl Egg",
"id": 32393
},
{
"name": "Polytorian Head Egg",
"id": 32315
},
{
"name": "Striped Egg Of Normality",
"id": 32389
},
{
"name": "Multi-Coloured Egg Of Sky",
"id": 32387
},
{
"name": "Ruby Egg",
"id": 32311
},
{
"name": "Lapis Lazuli Egg",
"id": 32313
},
{
"name": "Webbed Egg",
"id": 32388
}
];
// pro promise.all moment
Promise.all(dataArr.map(item => fetch(`https://api.polytoria.com/v1/store/${item.id}/owners?limit=1`)
.then(response => response.json())
.then(res => {
item.total = res.total;
})))
.then(() => {
dataArr.sort((a, b) => b.total - a.total);
const ctx = document.getElementById('myChart').getContext('2d');
const myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: dataArr.map(d => d.name),
datasets: [{
label: 'Number of Eggs Found',
data: dataArr.map(d => d.total),
backgroundColor: 'rgba(54, 162, 235, 0.2)',
borderColor: 'rgba(54, 162, 235, 1)',
borderWidth: 1
}]
},
options: {
scales: {
y: {
beginAtZero: true
}
},
plugins: {
title: {
display: true,
text: 'Number of Eggs Found'
},
legend: {
display: false
}
},
backgroundColor: 'white'
}
});
});
</script>
</body>
</html>