Update 30 day selection to source from Dynamo
This commit is contained in:
parent
1bc79ab74b
commit
0d59dc046d
@ -31,10 +31,11 @@
|
||||
<option value="72h">3 Days</option>
|
||||
<option value="168h">7 Days</option>
|
||||
<option value="336h">14 Days</option>
|
||||
<option value="30d">1 Month</option>
|
||||
<option value="720h">1 Month</option>
|
||||
<option value="90d">3 Months</option>
|
||||
<option value="6m">6 Months</option>
|
||||
<option value="1y">1 Year</option>
|
||||
<option value="2y">2 Years</option>
|
||||
<option value="all">All Available</option>
|
||||
</select>
|
||||
</div>
|
||||
|
@ -116,7 +116,7 @@ export function updateTimePreference(newTime) {
|
||||
}
|
||||
|
||||
async function pullChartData() {
|
||||
let resp = await fetch("https://data.wowtoken.app/token/history/" + current_region_selection + "/" + current_time_selection + ".json");
|
||||
let resp = await fetch("https://data.wowtoken.app/next/token/history/" + current_region_selection + "/" + current_time_selection + ".json");
|
||||
let chart_data = await resp.json();
|
||||
let new_chart_js_data = []
|
||||
for (let i = 0; i < chart_data.length; i++) {
|
||||
@ -151,7 +151,7 @@ function detectURLQuery() {
|
||||
// In the future, we will allow all the times to be selected,
|
||||
// once I come up with a good reduction algorithm.
|
||||
// For larger time selections, it's currently hardcoded into the backend
|
||||
const allowedTimes = ['72h', '167h', '336h', '30d', '90d', '1y', '6m', 'all']
|
||||
const allowedTimes = ['72h', '167h', '336h', '720h', '30d', '90d', '1y', '6m', 'all']
|
||||
if (urlSearchParams.has('time')) {
|
||||
if (allowedTimes.includes(urlSearchParams.get('time').toLowerCase())) {
|
||||
current_time_selection = urlSearchParams.get('time').toLowerCase()
|
||||
|
Loading…
Reference in New Issue
Block a user