Swap to using dayjs, it's a much smaller bundle size and accomplishes the same thing

This commit is contained in:
2021-07-01 21:03:35 -04:00
parent 3bd93c9b2d
commit bd76253176
3 changed files with 30 additions and 31 deletions

View File

@@ -10,8 +10,7 @@ import {
Tooltip
} from 'chart.js';
import $ from 'cash-dom';
import { DateTime } from 'luxon';
import 'chartjs-adapter-luxon';
import 'chartjs-adapter-dayjs-3';
import './style.css';
@@ -65,7 +64,7 @@ function populateChart() {
async function callUpdateURL() {
let resp = await fetch("https://data.wowtoken.app/token/current.json");
let resp = await fetch(" https://piwv24uske.execute-api.us-east-1.amazonaws.com/token/current.json");
let data = await resp.json();
updateTokens(data);
}
@@ -104,7 +103,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://piwv24uske.execute-api.us-east-1.amazonaws.com/token/history/" + current_region_selection + "/" + current_time_selection + ".json");
let chart_data = await resp.json();
var new_chart_js_data = []
for (var i = 0; i < chart_data.length; i++) {