atlas/web/_js/time.js

320 lines
9.1 KiB
JavaScript
Raw Normal View History

/*
========================================================================
The 2022 /r/place Atlas
An Atlas of Reddit's 2022 /r/place, with information to each
artwork of the canvas provided by the community.
Copyright (c) 2017 Roland Rytz <roland@draemm.li>
Copyright (c) 2022 r/placeAtlas2 contributors
Licensed under the GNU Affero General Public License Version 3
https://place-atlas.stefanocoding.me/license.txt
========================================================================
*/
2022-04-16 14:51:51 +02:00
const variationsConfig = {
default: {
name: "r/place",
code: "",
default: 14,
versions: [
{
timestamp: 1648822500,
url: "./_img/place/1648822500.png"
},
{
timestamp: 1648847036,
url: "./_img/place/1648847036.png"
},
{
timestamp: 1648870452,
url: "./_img/place/1648870452.png"
},
{
timestamp: 1648893666,
url: "./_img/place/1648893666.png"
},
{
timestamp: 1648917500,
url: "./_img/place/1648917500.png"
},
{
timestamp: 1648942113,
url: "./_img/place/1648942113.png"
},
{
timestamp: 1648956234,
url: "./_img/place/1648956234.png"
},
{
timestamp: 1648968061,
url: "./_img/place/1648968061.png"
},
{
timestamp: 1648979987,
url: "./_img/place/1648979987.png"
},
{
timestamp: 1648992274,
url: "./_img/place/1648992274.png"
},
{
timestamp: 1649012915,
url: "./_img/place/1649012915.png"
},
{
timestamp: 1649037182,
url: "./_img/place/1649037182.png"
},
{
timestamp: 1649060793,
url: "./_img/place/1649060793.png"
},
{
timestamp: 1649084741,
url: "./_img/place/1649084741.png"
},
{
timestamp: 1649113199,
url: "./_img/place/final.png"
}
]
2022-04-16 14:52:04 +02:00
},
tfc: {
name: "The Final Clean",
code: "T",
default: 2,
versions: [
{
timestamp: "Draft 1",
url: "./_img/canvas/tfc/draft1.png",
},
{
timestamp: "Draft 2",
url: "./_img/canvas/tfc/draft2.png",
},
{
timestamp: "Final",
url: "./_img/canvas/tfc/final.png",
},
]
}
2022-04-16 14:51:51 +02:00
}
const codeReference = {}
const imageCache = {}
2022-04-16 14:51:51 +02:00
const variantsEl = document.getElementById("variants")
2022-04-16 14:26:31 +02:00
for (const variation in variationsConfig) {
codeReference[variationsConfig[variation].code] = variation
const optionEl = document.createElement('option')
optionEl.value = variation
optionEl.textContent = variationsConfig[variation].name
variantsEl.appendChild(optionEl)
2022-04-16 14:51:51 +02:00
}
const timelineSlider = document.getElementById("timeControlsSlider");
const tooltip = document.getElementById("timeControlsTooltip")
const image = document.getElementById("image");
let abortController = new AbortController()
let currentUpdateIndex = 0
let updateTimeout = setTimeout(null, 0)
2022-04-05 20:17:39 +02:00
let currentVariation = "default"
2022-04-16 14:26:31 +02:00
const defaultPeriod = variationsConfig[currentVariation].default
let currentPeriod = defaultPeriod
window.currentPeriod = currentPeriod
window.currentVariation = currentVariation
2022-04-08 01:11:29 +02:00
2022-04-05 20:17:39 +02:00
// SETUP
timelineSlider.max = variationsConfig[currentVariation].versions.length - 1;
timelineSlider.value = currentPeriod;
2022-04-05 20:17:39 +02:00
timelineSlider.addEventListener("input", (event) => {
updateTooltip(parseInt(event.target.value), currentVariation)
clearTimeout(updateTimeout)
updateTimeout = setTimeout(() => {
updateTime(parseInt(timelineSlider.value), currentVariation)
setTimeout(() => {
updateTime(parseInt(timelineSlider.value), currentVariation)
}, 50)
}, 25)
2022-04-16 14:51:51 +02:00
})
variantsEl.addEventListener("input", (event) => {
updateTime(currentPeriod, event.target.value)
2022-04-10 09:03:08 +02:00
})
2022-04-05 20:17:39 +02:00
2022-04-14 08:41:13 +02:00
// document.querySelector('#period-group .period-start').oninput = (event) => {
// slider.value = parseInt(event.target.value)
// updateTime(parseInt(event.target.value))
// };
2022-04-10 11:11:34 +02:00
2022-04-14 08:41:13 +02:00
// document.querySelector('#period-group .period-end').oninput = (event) => {
// slider.value = parseInt(event.target.value)
// updateTime(parseInt(event.target.value))
// };
2022-04-10 11:11:34 +02:00
const dispatchTimeUpdateEvent = (period = timelineSlider.value, atlas = atlas) => {
const timeUpdateEvent = new CustomEvent('timeupdate', {
detail: {
period: period,
atlas: atlas
}
});
document.dispatchEvent(timeUpdateEvent);
2022-04-10 11:11:34 +02:00
}
async function updateBackground(newPeriod = currentPeriod, newVariation = currentVariation) {
// console.log(newPeriod, newVariation)
abortController.abort()
abortController = new AbortController()
currentUpdateIndex++
const myUpdateIndex = currentUpdateIndex
currentPeriod = newPeriod
// console.log(newPeriod, newVariation)
const variationConfig = variationsConfig[newVariation]
if (currentVariation !== newVariation) {
currentVariation = newVariation
timelineSlider.max = variationConfig.versions.length - 1;
currentPeriod = variationConfig.default;
newPeriod = currentPeriod
}
timelineSlider.value = currentPeriod
variantsEl.value = currentVariation
const configObject = variationConfig.versions[currentPeriod];
if (typeof configObject.url === "string") {
if (imageCache[configObject.url] === undefined) {
const fetchResult = await fetch(configObject.url, {
signal: abortController.signal
});
if (currentUpdateIndex !== myUpdateIndex) {
return [configObject, newPeriod, newVariation]
}
const imageBlob = await fetchResult.blob()
imageCache[configObject.url] = URL.createObjectURL(imageBlob)
}
image.src = imageCache[configObject.url]
} else {
const canvas = document.createElement('canvas')
const context = canvas.getContext('2d')
context.canvas.width = 2000
context.canvas.height = 2000
for await (const url of configObject.url) {
if (imageCache[url] === undefined) {
const fetchResult = await fetch(url, {
signal: abortController.signal
});
if (currentUpdateIndex !== myUpdateIndex) {
return
}
const imageBlob = await fetchResult.blob()
imageCache[url] = URL.createObjectURL(imageBlob)
}
const imageLayer = new Image()
// console.log(imageCache[url])
await new Promise(resolve => {
imageLayer.onload = () => {
context.drawImage(imageLayer, 0, 0)
// console.log("image done")
resolve()
}
imageLayer.src = imageCache[url]
})
}
if (currentUpdateIndex !== myUpdateIndex) return [configObject, newPeriod, newVariation]
const blob = await new Promise(resolve => canvas.toBlob(resolve))
// console.log(URL.createObjectURL(blob))
image.src = URL.createObjectURL(blob)
}
return [configObject, newPeriod, newVariation]
}
async function updateTime(newPeriod = currentPeriod, newVariation = currentVariation) {
document.body.dataset.canvasLoading = true
let configObject
[configObject, newPeriod, newVariation] = await updateBackground(newPeriod, newVariation)
atlas = []
for (const atlasIndex in atlasAll) {
let pathChosen, centerChosen, chosenIndex
const validPeriods2 = Object.keys(atlasAll[atlasIndex].path)
// console.log(chosenIndex)
for (const i in validPeriods2) {
const validPeriods = validPeriods2[i].split(', ')
for (const j in validPeriods) {
const [start, end, variation] = parsePeriod(validPeriods[j])
// console.log(start, end, variation, newPeriod, newVariation)
if (isOnPeriod(start, end, variation, newPeriod, newVariation)) {
// console.log("match", start, end, variation, newPeriod, newVariation, i)
chosenIndex = i
break
}
}
if (chosenIndex !== undefined) break
}
// console.log(testMatches)
// console.log(chosenIndex)
if (chosenIndex === undefined) continue
pathChosen = Object.values(atlasAll[atlasIndex].path)[chosenIndex]
centerChosen = Object.values(atlasAll[atlasIndex].center)[chosenIndex]
if (pathChosen === undefined) continue
// console.log(123)
atlas.push({
...atlasAll[atlasIndex],
path: pathChosen,
center: centerChosen,
})
}
// console.log(atlas)
dispatchTimeUpdateEvent(newPeriod, atlas)
document.body.dataset.canvasLoading = false
}
function updateTooltip(newPeriod, newVariation) {
const configObject = variationsConfig[newVariation].versions[newPeriod]
if (typeof configObject.timestamp === "number") tooltip.querySelector('p').textContent = new Date(configObject.timestamp * 1000).toUTCString()
else tooltip.querySelector('p').textContent = configObject.timestamp
tooltip.style.left = Math.max(((timelineSlider.offsetWidth) * (timelineSlider.value >= 1 ? timelineSlider.value - 1 : 0) / (timelineSlider.max - 1)) - tooltip.offsetWidth / 2, 0) + "px"
2022-04-10 09:03:08 +02:00
}
tooltip.parentElement.addEventListener('mouseenter', () => updateTooltip(parseInt(timelineSlider.value), currentVariation))
2022-04-10 11:11:34 +02:00
window.addEventListener('resize', () => updateTooltip(parseInt(timelineSlider.value), currentVariation))
2022-04-10 09:03:08 +02:00
2022-04-16 14:51:51 +02:00
function isOnPeriod(start, end, variation, currentPeriod, currentVariation) {
return currentPeriod >= start && currentPeriod <= end && variation === currentVariation
2022-04-14 16:03:17 +02:00
}
function parsePeriod(periodString) {
// console.log(periodString)
let variation = "default"
2022-04-14 16:03:17 +02:00
periodString = periodString + ""
if (periodString.split(':').length > 1) {
const split = periodString.split(':')
variation = codeReference[split[0]]
periodString = split[1]
}
2022-04-14 16:03:17 +02:00
if (periodString.search('-') + 1) {
const [start, end] = periodString.split('-').map(i => parseInt(i))
2022-04-16 14:51:51 +02:00
return [start, end, variation]
2022-04-14 16:03:17 +02:00
} else {
2022-04-16 14:26:31 +02:00
const periodNew = parseInt(periodString)
2022-04-16 14:51:51 +02:00
return [periodNew, periodNew, variation]
2022-04-14 16:03:17 +02:00
}
}