-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
187 lines (182 loc) · 6.83 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
183
184
185
186
187
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-143062190-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-143062190-1');
</script>
<script src="https://cdn.jsdelivr.net/npm/apexcharts"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<title>
RAM Price Tracker
</title>
</head>
<body>
<h3>DDR4 RAM Price Tracker</h3>
<button type="button" class="btn btn-primary" id="four_hrs">4H</button>
<button type="button" class="btn btn-outline-primary" id="twlv_hrs">12H</button>
<button type="button" class="btn btn-outline-primary" id="one_day">1D</button>
<button type="button" class="btn btn-outline-primary" id="svn_days">7D</button>
<div id="chart"></div>
<hr>
<div style="font-size: 10;">
개발자는 삼성전자, 도/소매점 등과는 아무런 관계가 없으며,<br>
소비자로서 하루에도 몇번씩 바뀌는 메모리 가격 추이를 그래프로 보고싶어서 만든 페이지입니다.<br>
본 사이트를 이용/신뢰함으로써 발생하는 모든 문제에 대해 개발자는 책임지지 않습니다.<br><br>
Developed by <a href="https://github.com/rocky112358"><u>rocky112358 (Dongmin Kim)</u></a></div>
<script>
let curDate = new Date();
let options = {
chart: {
type: "area",
stcked: false,
height: 400,
width: 800,
zoom: {
type: 'x',
enabled: true
}
},
grid: {
show: true,
position: 'back',
xaxis: {
lines: {
show: true
}
}
},
fill: {
type: 'gradient',
gradient: {
shadeIntensity: 1,
inverseColors: false,
opacityFrom: 0.5,
opacityTo: 0,
stops: [0, 90, 100]
},
},
legend: {
show: true,
showForSingleSeries: true,
horizontalAlign: 'left',
floating: false,
},
dataLabels: {
enabled: false
},
markers: { size: 0 },
tooltip: { x: { format: "MM/dd HH:mm" } },
series: [],
xaxis: {
type: "datetime",
min: new Date(curDate).setHours(curDate.getHours() - 4),
max: curDate,
labels: {
datetimeUTC: false
}
},
yaxis: {
title: {
text: "카드 최저가 (원)",
rorate: 90
}
}
}
let default_series = []
let seven_days_series = []
let chart = new
ApexCharts(document.querySelector("#chart"), options)
fetch("https://asia-northeast1-ram-price-tracker.cloudfunctions.net/update_series", {
method: 'POST',
mode: 'cors',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
mode: "default"
})
}).then(response => response.json()).then(data => {
default_series = data.series;
chart.updateSeries(data.series)
})
chart.render();
// TODO 캔들차트 구현
let resetCssClasses = function (activeEl) {
let els = document.querySelectorAll("button");
Array.prototype.forEach.call(els, function (el) {
el.classList.remove('btn-primary');
el.classList.add('btn-outline-primary')
});
activeEl.target.classList.remove('btn-outline-primary')
activeEl.target.classList.add('btn-primary')
}
document.querySelector("#four_hrs").addEventListener('click', function (e) {
resetCssClasses(e)
chart.updateSeries(default_series)
chart.updateOptions({
xaxis: {
min: new Date(curDate).setHours(curDate.getHours() - 4),
max: curDate
}
})
})
document.querySelector("#twlv_hrs").addEventListener('click', function (e) {
resetCssClasses(e)
chart.updateSeries(default_series)
chart.updateOptions({
xaxis: {
min: new Date(curDate).setHours(curDate.getHours() - 12),
max: curDate
}
})
})
document.querySelector("#one_day").addEventListener('click', function (e) {
resetCssClasses(e)
chart.updateSeries(default_series)
chart.updateOptions({
xaxis: {
min: new Date(curDate).setDate(curDate.getDate() - 1),
max: curDate
}
})
})
document.querySelector("#svn_days").addEventListener('click', function (e) {
resetCssClasses(e)
console.log("hi", seven_days_series)
if (seven_days_series.length === 0) {
console.log("get new")
fetch("https://asia-northeast1-ram-price-tracker.cloudfunctions.net/update_series", {
method: 'POST',
mode: 'cors',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
mode: "seven_days"
})
}).then(response => response.json()).then(data => {
seven_days_series = data.series;
chart.updateSeries(data.series)
})
} else {
chart.updateSeries(seven_days_series)
console.log(seven_days_series)
}
chart.updateOptions({
xaxis: {
min: new Date(curDate).setDate(curDate.getDate() - 7),
max: curDate
}
})
})
</script>
</body>
</html>