Compare commits

16 Commits

Author SHA1 Message Date
9ac97425c7 Make time and cost delineation more apparent
(cherry picked from commit 1e0b4a0a1f)
2024-04-25 00:18:47 -07:00
f7a27f9350 Enabled the option to start Y at zero
(cherry picked from commit 17ffbc3db1)
2024-04-24 23:54:53 -07:00
4c77828d5a Adjust all legend for classic since there is less data 2024-04-12 05:29:54 -07:00
50787c1d83 Change the timescale legend to be more readable instead of dense
(cherry picked from commit 0c9e7ed183)
2024-04-12 05:28:30 -07:00
09ec5f0d4d Change logs to warnings, since that's what they really are
(cherry picked from commit 4a7c03307d)
2024-04-12 05:08:39 -07:00
36ba83d9be Increase font size and brightness for better contrast
(cherry picked from commit 0e40f403e4)
2024-04-12 05:08:34 -07:00
8f6cbbc75d Fix bad merge from cherry-pick of main 2023-10-15 01:35:26 -07:00
354381936d Changes to advanced options and styling in prep for future work 2023-10-15 01:27:40 -07:00
214910aa25 Remove Cash dependency, refactor event registration
(cherry picked from commit 8cd9a2ddeb)
2023-10-15 01:19:47 -07:00
ac12a9c55d Update dependencies
(cherry picked from commit 702ca8c4d3)
2023-10-15 01:18:30 -07:00
fa21b50b28 Remove weekly aggregation options for now 2023-06-05 19:46:47 -07:00
ae789181f4 Enable 1 month 2023-06-05 19:17:10 -07:00
a1b1dc63ff Remove extraneous time selections, enable 14d 2023-05-30 03:49:54 -07:00
249f9e281f Textual updates 2023-05-23 19:14:30 -07:00
bda9edf3df Bump node version 2023-05-23 18:27:53 -07:00
e090a93605 Initial branch and changes for Classic token 2023-05-23 18:19:06 -07:00
4 changed files with 25 additions and 28 deletions

View File

@@ -3,7 +3,7 @@ version: 0.2
phases:
install:
runtime-versions:
nodejs: 16
nodejs: 18
commands:
- echo Installing dependencies...
- npm install

View File

@@ -1,18 +1,18 @@
<!doctype html>
<html lang="en">
<head>
<title>WoW Historical Token Prices Tracker</title>
<title>WoW Classic Historical Token Prices Tracker</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Track current and historical gold price trends for the World of Warcraft (WoW) in game token, including the US, EU, TW, and KR regions. Prices updated every minute. Simple, quick, and easy info, no ads or tracking, ever.">
<meta name="description" content="Track current and historical gold price trends for the World of Warcraft (WoW) Classic in game token, including the US, EU, TW, and KR regions. Prices updated every minute. Simple, quick, and easy info, no ads or tracking, ever.">
<link rel="preconnect" href="https://data.wowtoken.app">
<link rel="dns-prefetch" href="https://data.wowtoken.app">
<link rel="preload" href="https://data.wowtoken.app/token/current.json" as="fetch" type="application/json" crossorigin="anonymous">
<link rel="preload" href="https://data.wowtoken.app/token/history/us/72h.json" as="fetch" type="application/json" crossorigin="anonymous">
<link rel="preload" href="https://data.wowtoken.app/classic/token/current.json" as="fetch" type="application/json" crossorigin="anonymous">
<link rel="preload" href="https://data.wowtoken.app/classic/token/history/us/72h.json" as="fetch" type="application/json" crossorigin="anonymous">
</head>
<body>
<div class="flex-container">
<div><h1>1 Token = <u id="token">0</u> Gold</h1></div>
<div><h1>1 Classic Token = <u id="token">0</u> Gold</h1></div>
<div id="chart-frame">
<div class="lds-ripple" id="loader"><div></div><div></div></div>
<canvas id="token-chart"></canvas>
@@ -36,9 +36,6 @@
<option value="336h">14 Days</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>
@@ -81,12 +78,12 @@
</button>
</div>
<div>
<p><em>Looking for the classic WoW Token price? Find it <a href="https://classic.wowtoken.app">here!</a></em></p>
<p><em>Looking for the retail WoW Token price? Find it <a href="https://wowtoken.app">here!</a></em></p>
</div>
</div>
<details id="about">
<summary>About this Site</summary>
This is a site developed to track the value of the World of Warcraft Token from various
This is a site developed to track the value of the World of Warcraft Classic Token from various
regions over time. I developed it because I wanted a quick and simple way to track the
cost without being advertised to or tracked, and to play around with various "serverless"
technologies. As such, my promise to you is never to use any tracking Javascript, and the
@@ -94,10 +91,10 @@
</details>
<details id="what-is">
<summary>What is the WoW Token</summary>
The World of Warcraft Token is a first-party system developed by Blizzard to allow you
The World of Warcraft Classic Token is a first-party system developed by Blizzard to allow you
to either spend currency (local denomination or Blizzard Balance) and convert it to gold
in retail World of Warcraft, or use gold to buy game time or Blizzard Balance. To find out
more, visit the support article on Blizzard's website
in classic World of Warcraft, or use gold to buy game time.
To find out more, visit the support article on Blizzard's website
<a href="https://us.battle.net/support/en/article/31218">here</a>.
</details>
<div id="source">

View File

@@ -67,7 +67,7 @@ function populateChart() {
data: {
datasets: [{
borderColor: 'gold',
label: currentRegionSelection.toUpperCase() + " WoW Token Price",
label: currentRegionSelection.toUpperCase() + " WoW Classic Token Price",
data: chartJsData,
cubicInterpolationMode: 'monotone',
pointRadius: 0
@@ -117,14 +117,14 @@ function lookupTimeUnit(query){
'd': 'week',
'm': 'month',
'y': 'month',
'l': 'year'
'l': 'month'
}
return lookup[query.charAt(query.length - 1)]
}
async function callUpdateURL() {
let resp = await fetch("https://data.wowtoken.app/token/current.json");
let resp = await fetch("https://data.wowtoken.app/classic/token/current.json");
let data = await resp.json();
updateTokens(data);
}
@@ -248,7 +248,7 @@ function toggleStartYAtZero(){
}
function urlBuilder() {
let url = "https://data.wowtoken.app/token/history/";
let url = "https://data.wowtoken.app/classic/token/history/";
if (currentAggregateSelection !== 'none') {
url += `${currentAggregateSelection}/`
}
@@ -353,7 +353,7 @@ function detectURLQuery() {
}
function buildDeepLinksURL() {
let url = "https://wowtoken.app/?"
let url = "https://classic.wowtoken.app/?"
if (currentTimeSelection !== '72h'){
url += `time=${currentTimeSelection}&`
}

View File

@@ -173,8 +173,8 @@ h6 {
font-weight: 700;
}
html {
background-color: #073642;
color: #839496;
background-color: #6b4233;
color: #b7b7b7;
margin: 1em;
}
/*body {
@@ -194,7 +194,7 @@ a:hover {
color: #cb4b16;
}
h1 {
color: #d33682;
color: #ffd5e9;
}
h2,
h3,
@@ -206,7 +206,7 @@ h6 {
pre {
background-color: #002b36;
color: #839496;
border: 1pt solid #586e75;
border: 1pt solid #000000;
padding: 1em;
box-shadow: 5pt 5pt 8pt #073642;
}
@@ -301,10 +301,10 @@ h6 {
display: flex;
flex-direction: column;
justify-content: center;
background-color: #002b36;
background-color: #2f201e;
margin: 0 auto;
max-width: 85%;
border: 1pt solid #586e75;
border: 1pt solid #000000;
padding: 1em;
}
@@ -341,8 +341,8 @@ p {
}
details {
background-color: #073642;
border: 1px solid #aaa;
background-color: #6b4233;
border: 1px solid #000000;
border-radius: 4px;
padding: 0.5em 0.5em 0;
font-size: 17px;
@@ -363,7 +363,7 @@ details[open] {
}
details[open] summary {
border-bottom: 1px solid #aaa;
border-bottom: 1px solid #000000;
margin-bottom: 0.5em;
}