2023-03-22 16:38:18 +01:00
|
|
|
/*!
|
|
|
|
* The 2022 r/place Atlas
|
|
|
|
* Copyright (c) 2017 Roland Rytz <roland@draemm.li>
|
|
|
|
* Copyright (c) 2022 Place Atlas contributors
|
|
|
|
* Licensed under AGPL-3.0 (https://place-atlas.stefanocoding.me/license.txt)
|
|
|
|
*/
|
2022-04-09 04:45:47 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
const linesCanvas = document.getElementById("linesCanvas")
|
|
|
|
const linesContext = linesCanvas.getContext("2d")
|
|
|
|
let hovered = []
|
2017-04-08 05:57:12 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
let previousZoomOrigin = [0, 0]
|
|
|
|
let previousScaleZoomOrigin = [0, 0]
|
2017-04-10 16:28:22 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
const backgroundCanvas = document.createElement("canvas")
|
2023-03-19 07:03:49 +01:00
|
|
|
backgroundCanvas.width = canvasSize.x
|
|
|
|
backgroundCanvas.height = canvasSize.y
|
2022-05-06 09:41:22 +02:00
|
|
|
const backgroundContext = backgroundCanvas.getContext("2d")
|
2017-04-11 23:16:35 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
const wrapper = document.getElementById("wrapper")
|
2022-05-09 21:57:23 +02:00
|
|
|
const bottomBar = document.getElementById("bottomBar")
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2022-05-08 07:22:01 +02:00
|
|
|
const showListButton = document.getElementById("showListButton")
|
|
|
|
const offcanvasList = document.getElementById("offcanvasList")
|
|
|
|
const bsOffcanvasList = new bootstrap.Offcanvas(offcanvasList)
|
|
|
|
|
|
|
|
const offcanvasDraw = document.getElementById("offcanvasDraw")
|
|
|
|
const bsOffcanvasDraw = new bootstrap.Offcanvas(offcanvasDraw)
|
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
const objectsContainer = document.getElementById("objectsList")
|
|
|
|
const closeObjectsListButton = document.getElementById("closeObjectsListButton")
|
|
|
|
const objectsListOverflowNotice = document.getElementById("objectsListOverflowNotice")
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
const filterInput = document.getElementById("searchList")
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
const entriesList = document.getElementById("entriesList")
|
2022-05-08 07:22:01 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
let entriesListShown = false
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2023-03-19 03:19:37 +01:00
|
|
|
const drawButton = document.getElementById("drawLink")
|
|
|
|
const objectEditNav = document.createElement("a")
|
|
|
|
objectEditNav.className = "btn btn-outline-primary"
|
|
|
|
objectEditNav.id = "objectEditNav"
|
2023-03-19 05:56:37 +01:00
|
|
|
objectEditNav.textContent = "Edit"
|
2023-03-19 03:19:37 +01:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
let sortedAtlas
|
2022-04-16 14:44:50 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
const entriesLimit = 50
|
|
|
|
let entriesOffset = 0
|
|
|
|
const moreEntriesButton = document.createElement("button")
|
|
|
|
moreEntriesButton.innerHTML = "Show " + entriesLimit + " more"
|
2022-04-20 10:54:58 +02:00
|
|
|
moreEntriesButton.type = "button"
|
|
|
|
moreEntriesButton.className = "btn btn-primary d-block mb-2 mx-auto"
|
2022-04-22 02:33:30 +02:00
|
|
|
|
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
moreEntriesButton.id = "moreEntriesButton"
|
2022-04-16 14:44:50 +02:00
|
|
|
moreEntriesButton.onclick = function () {
|
2022-05-06 09:41:22 +02:00
|
|
|
buildObjectsList(null, null)
|
|
|
|
renderBackground()
|
|
|
|
render()
|
|
|
|
}
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
let defaultSort = "shuffle"
|
|
|
|
document.getElementById("sort").value = defaultSort
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
let lastPos = [0, 0]
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
let fixed = false; // Fix hovered items in place, so that clicking on links is possible
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2022-05-08 07:22:01 +02:00
|
|
|
filterInput.addEventListener("input", function () {
|
2022-05-06 09:41:22 +02:00
|
|
|
entriesOffset = 0
|
2022-05-08 07:22:01 +02:00
|
|
|
entriesList.replaceChildren()
|
2022-05-06 09:41:22 +02:00
|
|
|
entriesList.appendChild(moreEntriesButton)
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
if (this.value === "") {
|
2022-05-06 09:41:22 +02:00
|
|
|
document.getElementById("relevantOption").disabled = true
|
|
|
|
sortedAtlas = atlas.concat()
|
|
|
|
buildObjectsList(null, null)
|
2022-04-09 11:27:14 +02:00
|
|
|
} else {
|
2022-05-06 09:41:22 +02:00
|
|
|
document.getElementById("relevantOption").disabled = false
|
|
|
|
buildObjectsList(this.value.toLowerCase(), "relevant")
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
})
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2022-05-08 07:22:01 +02:00
|
|
|
document.getElementById("sort").addEventListener("input", function () {
|
2023-03-17 18:30:33 +01:00
|
|
|
if (this.value !== "relevant") {
|
2022-05-06 09:41:22 +02:00
|
|
|
defaultSort = this.value
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2022-05-06 09:41:22 +02:00
|
|
|
resetEntriesList(filterInput.value.toLowerCase(), this.value)
|
|
|
|
})
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2022-05-08 07:22:01 +02:00
|
|
|
offcanvasDraw.addEventListener('show.bs.offcanvas', function () {
|
2022-05-06 09:41:22 +02:00
|
|
|
wrapper.classList.remove('listHidden')
|
|
|
|
wrapper.classList.add('listTransitioning')
|
|
|
|
applyView()
|
2022-04-28 10:32:06 +02:00
|
|
|
})
|
|
|
|
|
2022-05-08 07:22:01 +02:00
|
|
|
offcanvasDraw.addEventListener('shown.bs.offcanvas', function () {
|
2022-05-06 09:41:22 +02:00
|
|
|
wrapper.classList.remove('listTransitioning')
|
|
|
|
applyView()
|
2022-04-20 10:54:58 +02:00
|
|
|
})
|
|
|
|
|
2022-05-08 07:22:01 +02:00
|
|
|
offcanvasDraw.addEventListener('hide.bs.offcanvas', function () {
|
2022-05-06 09:41:22 +02:00
|
|
|
wrapper.classList.add('listHidden')
|
|
|
|
wrapper.classList.add('listTransitioning')
|
|
|
|
applyView()
|
2022-04-28 10:32:06 +02:00
|
|
|
})
|
|
|
|
|
2022-05-08 07:22:01 +02:00
|
|
|
offcanvasDraw.addEventListener('hidden.bs.offcanvas', function () {
|
2022-05-06 09:41:22 +02:00
|
|
|
wrapper.classList.remove('listTransitioning')
|
|
|
|
applyView()
|
2022-04-20 10:54:58 +02:00
|
|
|
})
|
|
|
|
|
2023-03-18 02:05:40 +01:00
|
|
|
offcanvasList.addEventListener('show.bs.offcanvas', function () {
|
2022-05-06 09:41:22 +02:00
|
|
|
wrapper.classList.remove('listHidden')
|
|
|
|
wrapper.classList.add('listTransitioning')
|
|
|
|
applyView()
|
|
|
|
})
|
2022-04-28 10:32:06 +02:00
|
|
|
|
2023-03-19 03:24:41 +01:00
|
|
|
offcanvasList.addEventListener('shown.bs.offcanvas', function (e) {
|
2022-05-06 09:41:22 +02:00
|
|
|
entriesListShown = true
|
|
|
|
wrapper.classList.remove('listTransitioning')
|
|
|
|
updateHovering(e)
|
|
|
|
applyView()
|
|
|
|
render()
|
|
|
|
updateLines()
|
|
|
|
})
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2022-05-08 07:22:01 +02:00
|
|
|
offcanvasList.addEventListener('hide.bs.offcanvas', function () {
|
2022-05-06 09:41:22 +02:00
|
|
|
wrapper.classList.add('listHidden')
|
|
|
|
wrapper.classList.add('listTransitioning')
|
|
|
|
applyView()
|
|
|
|
})
|
2022-04-28 10:32:06 +02:00
|
|
|
|
2022-05-08 07:22:01 +02:00
|
|
|
offcanvasList.addEventListener('hidden.bs.offcanvas', function (e) {
|
2022-05-06 09:41:22 +02:00
|
|
|
entriesListShown = false
|
|
|
|
wrapper.classList.remove('listTransitioning')
|
|
|
|
updateHovering(e)
|
|
|
|
applyView()
|
|
|
|
render()
|
|
|
|
updateLines()
|
|
|
|
})
|
|
|
|
|
2022-05-09 21:57:23 +02:00
|
|
|
closeObjectsListButton.addEventListener("click", clearObjectsList)
|
|
|
|
|
|
|
|
bottomBar.addEventListener("mouseover", function () {
|
|
|
|
if (!fixed) clearObjectsList()
|
|
|
|
})
|
|
|
|
|
|
|
|
function clearObjectsList() {
|
2022-05-08 07:22:01 +02:00
|
|
|
closeObjectsListButton.classList.add("d-none")
|
|
|
|
objectsListOverflowNotice.classList.add("d-none")
|
|
|
|
entriesList.classList.remove("disableHover")
|
2022-05-06 09:41:22 +02:00
|
|
|
hovered = []
|
|
|
|
objectsContainer.replaceChildren()
|
|
|
|
updateLines()
|
|
|
|
fixed = false
|
|
|
|
render()
|
2023-03-19 03:24:41 +01:00
|
|
|
objectEditNav.remove()
|
2023-03-19 07:03:49 +01:00
|
|
|
document.title = pageTitle
|
2022-05-09 21:57:23 +02:00
|
|
|
}
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
function toggleFixed(e, tapped) {
|
2023-03-17 18:30:33 +01:00
|
|
|
if (!fixed && hovered.length === 0) {
|
2022-05-08 07:22:01 +02:00
|
|
|
entriesList.classList.remove("disableHover")
|
2022-05-06 09:41:22 +02:00
|
|
|
return 0
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2022-05-06 09:41:22 +02:00
|
|
|
fixed = !fixed
|
2022-04-16 14:44:50 +02:00
|
|
|
if (!fixed) {
|
2022-05-06 09:41:22 +02:00
|
|
|
updateHovering(e, tapped)
|
|
|
|
render()
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2022-05-08 07:22:01 +02:00
|
|
|
entriesList.classList.add("disableHover")
|
2022-05-06 09:41:22 +02:00
|
|
|
objectsListOverflowNotice.classList.add("d-none")
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
window.addEventListener("resize", updateLines)
|
|
|
|
window.addEventListener("mousemove", updateLines)
|
|
|
|
window.addEventListener("dblClick", updateLines)
|
|
|
|
window.addEventListener("wheel", updateLines)
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2022-05-08 07:22:01 +02:00
|
|
|
objectsContainer.addEventListener("scroll", function () {
|
2022-05-06 09:41:22 +02:00
|
|
|
updateLines()
|
|
|
|
})
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
window.addEventListener("resize", function (e) {
|
2022-04-16 14:44:50 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
applyView()
|
|
|
|
render()
|
|
|
|
updateLines()
|
2022-04-16 14:44:50 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
})
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
function updateLines() {
|
2017-04-08 05:57:12 +02:00
|
|
|
|
2022-05-07 00:08:45 +02:00
|
|
|
// Line border
|
2022-05-06 09:41:22 +02:00
|
|
|
linesCanvas.width = linesCanvas.clientWidth
|
|
|
|
linesCanvas.height = linesCanvas.clientHeight
|
|
|
|
linesContext.lineCap = "round"
|
|
|
|
linesContext.lineWidth = Math.max(Math.min(zoom * 1.5, 16 * 1.5), 6)
|
2022-05-07 00:08:45 +02:00
|
|
|
linesContext.strokeStyle = "#222"
|
2017-04-08 05:57:12 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
for (let i = 0; i < hovered.length; i++) {
|
2022-05-06 09:41:22 +02:00
|
|
|
const element = hovered[i].element
|
2017-04-08 05:57:12 +02:00
|
|
|
|
2023-03-17 18:30:33 +01:00
|
|
|
if (element.getBoundingClientRect().left !== 0) {
|
2017-04-09 02:08:35 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
linesContext.beginPath()
|
2022-05-07 00:08:45 +02:00
|
|
|
// Align line based on which side the card is on
|
|
|
|
if ((element.getBoundingClientRect().left + element.clientWidth / 2) < (document.documentElement.clientWidth / 2)) {
|
|
|
|
linesContext.moveTo(
|
2023-03-19 07:10:21 +01:00
|
|
|
element.getBoundingClientRect().left + document.documentElement.scrollLeft + element.clientWidth - 5,
|
|
|
|
element.getBoundingClientRect().top + document.documentElement.scrollTop + 20
|
2022-05-07 00:08:45 +02:00
|
|
|
)
|
|
|
|
} else {
|
|
|
|
linesContext.moveTo(
|
2023-03-19 07:10:21 +01:00
|
|
|
element.getBoundingClientRect().left + document.documentElement.scrollLeft + 5,
|
|
|
|
element.getBoundingClientRect().top + document.documentElement.scrollTop + 20
|
2022-05-07 00:08:45 +02:00
|
|
|
)
|
|
|
|
}
|
2017-04-09 02:08:35 +02:00
|
|
|
linesContext.lineTo(
|
2023-03-19 07:10:21 +01:00
|
|
|
~~(hovered[i].center[0] * zoom) + innerContainer.offsetLeft,
|
|
|
|
~~(hovered[i].center[1] * zoom) + innerContainer.offsetTop
|
2022-05-06 09:41:22 +02:00
|
|
|
)
|
|
|
|
linesContext.stroke()
|
2017-04-09 02:08:35 +02:00
|
|
|
}
|
2017-04-08 05:57:12 +02:00
|
|
|
}
|
|
|
|
|
2022-05-07 00:08:45 +02:00
|
|
|
// Line body
|
2022-05-06 09:41:22 +02:00
|
|
|
linesContext.lineWidth = Math.max(Math.min(zoom, 16), 4)
|
|
|
|
linesContext.strokeStyle = "#FFFFFF"
|
2017-04-08 05:57:12 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
for (let i = 0; i < hovered.length; i++) {
|
2022-05-06 09:41:22 +02:00
|
|
|
const element = hovered[i].element
|
2022-04-16 14:44:50 +02:00
|
|
|
|
2023-03-17 18:30:33 +01:00
|
|
|
if (element.getBoundingClientRect().left !== 0) {
|
2017-04-08 05:57:12 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
linesContext.beginPath()
|
2022-05-07 00:08:45 +02:00
|
|
|
// Align line based on which side the card is on
|
|
|
|
if ((element.getBoundingClientRect().left + element.clientWidth / 2) < (document.documentElement.clientWidth / 2)) {
|
|
|
|
linesContext.moveTo(
|
2023-03-19 07:10:21 +01:00
|
|
|
element.getBoundingClientRect().left + document.documentElement.scrollLeft + element.clientWidth - 5,
|
|
|
|
element.getBoundingClientRect().top + document.documentElement.scrollTop + 20
|
2022-05-07 00:08:45 +02:00
|
|
|
)
|
|
|
|
} else {
|
|
|
|
linesContext.moveTo(
|
2023-03-19 07:10:21 +01:00
|
|
|
element.getBoundingClientRect().left + document.documentElement.scrollLeft + 5,
|
|
|
|
element.getBoundingClientRect().top + document.documentElement.scrollTop + 20
|
2022-05-07 00:08:45 +02:00
|
|
|
)
|
|
|
|
}
|
2017-04-09 02:08:35 +02:00
|
|
|
linesContext.lineTo(
|
2023-03-19 07:10:21 +01:00
|
|
|
~~(hovered[i].center[0] * zoom) + innerContainer.offsetLeft,
|
|
|
|
~~(hovered[i].center[1] * zoom) + innerContainer.offsetTop
|
2022-05-06 09:41:22 +02:00
|
|
|
)
|
|
|
|
linesContext.stroke()
|
2017-04-09 02:08:35 +02:00
|
|
|
}
|
2017-04-08 05:57:12 +02:00
|
|
|
}
|
|
|
|
}
|
2017-04-04 01:24:46 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
function renderBackground(atlas) {
|
2017-04-11 23:16:35 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
backgroundContext.clearRect(0, 0, canvas.width, canvas.height)
|
2017-04-11 23:16:35 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
//backgroundCanvas.width = 1000 * zoom
|
|
|
|
//backgroundCanvas.height = 1000 * zoom
|
2017-04-11 23:16:35 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
//backgroundContext.lineWidth = zoom
|
2022-04-16 14:44:50 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
backgroundContext.fillStyle = "rgba(0, 0, 0, 0.6)"
|
|
|
|
backgroundContext.fillRect(0, 0, backgroundCanvas.width, backgroundCanvas.height)
|
2017-04-11 23:16:35 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
for (let i = 0; i < atlas.length; i++) {
|
2017-04-11 23:16:35 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
const path = atlas[i].path
|
2017-04-11 23:16:35 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
backgroundContext.beginPath()
|
2017-04-11 23:16:35 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
if (path[0]) {
|
2022-05-06 09:41:22 +02:00
|
|
|
//backgroundContext.moveTo(path[0][0]*zoom, path[0][1]*zoom)
|
|
|
|
backgroundContext.moveTo(path[0][0], path[0][1])
|
2017-04-11 23:16:35 +02:00
|
|
|
}
|
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
for (let p = 1; p < path.length; p++) {
|
2022-05-06 09:41:22 +02:00
|
|
|
//backgroundContext.lineTo(path[p][0]*zoom, path[p][1]*zoom)
|
|
|
|
backgroundContext.lineTo(path[p][0], path[p][1])
|
2017-04-11 23:16:35 +02:00
|
|
|
}
|
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
backgroundContext.closePath()
|
2017-04-11 23:16:35 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
let bgStrokeStyle
|
2022-04-08 06:06:16 +02:00
|
|
|
switch (atlas[i].diff) {
|
|
|
|
case "add":
|
2022-05-06 09:41:22 +02:00
|
|
|
bgStrokeStyle = "rgba(0, 255, 0, 1)"
|
|
|
|
backgroundContext.lineWidth = 2
|
|
|
|
break
|
2022-04-08 06:06:16 +02:00
|
|
|
case "edit":
|
2022-05-06 09:41:22 +02:00
|
|
|
bgStrokeStyle = "rgba(255, 255, 0, 1)"
|
|
|
|
backgroundContext.lineWidth = 2
|
|
|
|
break
|
2022-04-08 22:02:14 +02:00
|
|
|
case "delete":
|
2022-05-06 09:41:22 +02:00
|
|
|
bgStrokeStyle = "rgba(255, 0, 0, 1)"
|
|
|
|
backgroundContext.lineWidth = 2
|
|
|
|
break
|
2022-04-08 06:06:16 +02:00
|
|
|
default:
|
2022-05-06 09:41:22 +02:00
|
|
|
bgStrokeStyle = "rgba(255, 255, 255, 0.8)"
|
|
|
|
break
|
2022-04-08 06:06:16 +02:00
|
|
|
}
|
2022-05-06 09:41:22 +02:00
|
|
|
backgroundContext.strokeStyle = bgStrokeStyle
|
|
|
|
backgroundContext.stroke()
|
|
|
|
backgroundContext.lineWidth = 1
|
2017-04-11 23:16:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
function buildObjectsList(filter = null, sort = null) {
|
2017-04-05 20:48:32 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
if (entriesList.contains(moreEntriesButton)) {
|
2022-05-06 09:41:22 +02:00
|
|
|
entriesList.removeChild(moreEntriesButton)
|
2022-04-08 01:11:29 +02:00
|
|
|
}
|
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
if (!sortedAtlas) {
|
2022-05-06 09:41:22 +02:00
|
|
|
sortedAtlas = atlas.concat()
|
|
|
|
document.getElementById("atlasSize").innerHTML = "The Atlas contains " + sortedAtlas.length + " entries."
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2017-04-06 01:58:30 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
if (filter) {
|
2023-03-19 10:07:44 +01:00
|
|
|
sortedAtlas = atlas.filter(entry => {
|
2022-04-09 11:27:14 +02:00
|
|
|
return (
|
2023-03-19 10:26:45 +01:00
|
|
|
entry.name.toLowerCase().includes(filter.toLowerCase())
|
|
|
|
|| entry.description.toLowerCase().includes(filter.toLowerCase())
|
|
|
|
|| Object.values(entry.links).flat().some(str => str.toLowerCase().includes(filter))
|
2023-03-19 10:07:44 +01:00
|
|
|
|| entry.id === filter
|
2022-05-06 09:41:22 +02:00
|
|
|
)
|
|
|
|
})
|
|
|
|
document.getElementById("atlasSize").innerHTML = "Found " + sortedAtlas.length + " entries."
|
2022-04-09 11:27:14 +02:00
|
|
|
} else {
|
2022-05-06 09:41:22 +02:00
|
|
|
document.getElementById("atlasSize").innerHTML = "The Atlas contains " + sortedAtlas.length + " entries."
|
2017-04-06 23:09:37 +02:00
|
|
|
}
|
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
if (sort === null) {
|
2022-05-06 09:41:22 +02:00
|
|
|
sort = defaultSort
|
2017-04-06 23:09:37 +02:00
|
|
|
}
|
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
renderBackground(sortedAtlas)
|
|
|
|
render()
|
2017-04-06 23:09:37 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
document.getElementById("sort").value = sort
|
2017-04-06 23:09:37 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
//console.log(sort)
|
2017-04-06 00:43:45 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
let sortFunction
|
2017-04-04 01:24:46 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
//console.log(sort)
|
2017-04-05 20:48:32 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
switch (sort) {
|
2022-04-09 11:27:14 +02:00
|
|
|
case "shuffle":
|
2022-05-06 09:41:22 +02:00
|
|
|
sortFunction = null
|
2023-03-17 18:30:33 +01:00
|
|
|
if (entriesOffset === 0) {
|
2022-05-06 09:41:22 +02:00
|
|
|
shuffle()
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2022-05-06 09:41:22 +02:00
|
|
|
break
|
2022-04-09 11:27:14 +02:00
|
|
|
case "alphaAsc":
|
2023-03-19 10:26:45 +01:00
|
|
|
sortFunction = (a, b) => a.name.toLowerCase().localeCompare(b.name.toLowerCase())
|
2022-05-06 09:41:22 +02:00
|
|
|
break
|
2022-04-09 11:27:14 +02:00
|
|
|
case "alphaDesc":
|
2023-03-19 10:26:45 +01:00
|
|
|
sortFunction = (a, b) => b.name.toLowerCase().localeCompare(a.name.toLowerCase())
|
2022-05-06 09:41:22 +02:00
|
|
|
break
|
2022-04-09 11:27:14 +02:00
|
|
|
case "newest":
|
2023-03-19 10:26:45 +01:00
|
|
|
sortFunction = (a, b) => b.id.length - a.id.length || b.id.localeCompare(a.id)
|
2022-05-06 09:41:22 +02:00
|
|
|
break
|
2022-04-09 11:27:14 +02:00
|
|
|
case "oldest":
|
2023-03-19 10:26:45 +01:00
|
|
|
sortFunction = (a, b) => a.id.length - b.id.length || a.id.localeCompare(b.id)
|
2022-05-06 09:41:22 +02:00
|
|
|
break
|
2022-04-09 11:27:14 +02:00
|
|
|
case "area":
|
2023-03-19 10:26:45 +01:00
|
|
|
sortFunction = (a, b) => calcPolygonArea(b.path) - calcPolygonArea(a.path)
|
2022-05-06 09:41:22 +02:00
|
|
|
break
|
2022-04-09 11:27:14 +02:00
|
|
|
case "relevant":
|
2023-03-19 10:26:45 +01:00
|
|
|
sortFunction = (a, b) => {
|
|
|
|
if (a.name.toLowerCase().includes(filter) && b.name.toLowerCase().includes(filter)) {
|
|
|
|
return a.name.toLowerCase().indexOf(filter) - b.name.toLowerCase().indexOf(filter) || a.name.toLowerCase().localeCompare(b.name.toLowerCase())
|
|
|
|
} else if (a.name.toLowerCase().includes(filter)) {
|
2022-05-06 09:41:22 +02:00
|
|
|
return -1
|
2023-03-19 10:26:45 +01:00
|
|
|
} else if (b.name.toLowerCase().includes(filter)) {
|
2022-05-06 09:41:22 +02:00
|
|
|
return 1
|
2022-04-09 11:27:14 +02:00
|
|
|
} else {
|
2023-03-19 10:26:45 +01:00
|
|
|
return a.description.toLowerCase().indexOf(filter) - b.description.toLowerCase().indexOf(filter) || a.name.toLowerCase().localeCompare(b.name.toLowerCase())
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
|
|
|
}
|
2022-05-06 09:41:22 +02:00
|
|
|
break
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2017-04-06 00:43:45 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
if (sortFunction) {
|
2022-05-06 09:41:22 +02:00
|
|
|
sortedAtlas.sort(sortFunction)
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2017-04-05 20:48:32 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
for (let i = entriesOffset; i < entriesOffset + entriesLimit; i++) {
|
2017-04-05 20:48:32 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
if (i >= sortedAtlas.length) {
|
2022-05-06 09:41:22 +02:00
|
|
|
break
|
2017-04-09 21:45:08 +02:00
|
|
|
}
|
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
const element = createInfoBlock(sortedAtlas[i])
|
2023-04-06 18:35:30 +02:00
|
|
|
const entry = sortedAtlas[i]
|
2017-04-09 02:08:35 +02:00
|
|
|
|
2023-03-18 02:05:40 +01:00
|
|
|
element.addEventListener("mouseenter", function () {
|
2022-04-16 14:44:50 +02:00
|
|
|
if (!fixed && !dragging) {
|
2022-05-06 09:41:22 +02:00
|
|
|
objectsContainer.replaceChildren()
|
2022-04-16 14:44:50 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
previousZoomOrigin = [zoomOrigin[0], zoomOrigin[1]]
|
|
|
|
previousScaleZoomOrigin = [scaleZoomOrigin[0], scaleZoomOrigin[1]]
|
2017-04-10 12:25:04 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
applyView()
|
2023-04-06 18:35:30 +02:00
|
|
|
setView(entry.center[0], entry.center[1], setZoomByPath(entry.path))
|
2022-04-16 14:44:50 +02:00
|
|
|
|
2023-04-06 18:35:30 +02:00
|
|
|
hovered = [entry]
|
2022-05-06 09:41:22 +02:00
|
|
|
render()
|
|
|
|
hovered[0].element = this
|
|
|
|
updateLines()
|
2017-04-06 01:58:30 +02:00
|
|
|
}
|
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
})
|
2017-04-06 01:58:30 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
element.addEventListener("click", function (e) {
|
2022-05-06 09:41:22 +02:00
|
|
|
toggleFixed(e)
|
2022-04-16 14:44:50 +02:00
|
|
|
if (fixed) {
|
2022-05-06 09:41:22 +02:00
|
|
|
previousZoomOrigin = [zoomOrigin[0], zoomOrigin[1]]
|
|
|
|
previousScaleZoomOrigin = [scaleZoomOrigin[0], scaleZoomOrigin[1]]
|
|
|
|
applyView()
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2022-05-06 09:41:22 +02:00
|
|
|
})
|
2017-04-05 20:48:32 +02:00
|
|
|
|
2022-05-08 07:22:01 +02:00
|
|
|
element.addEventListener("mouseleave", function () {
|
2022-04-16 14:44:50 +02:00
|
|
|
if (!fixed && !dragging) {
|
2023-03-26 13:58:17 +02:00
|
|
|
setView(previousScaleZoomOrigin[0], previousScaleZoomOrigin[1])
|
2022-05-06 09:41:22 +02:00
|
|
|
hovered = []
|
|
|
|
updateLines()
|
|
|
|
render()
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2022-05-06 09:41:22 +02:00
|
|
|
})
|
2017-04-05 20:48:32 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
entriesList.appendChild(element)
|
2017-04-05 20:48:32 +02:00
|
|
|
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2017-04-09 02:08:35 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
entriesOffset += entriesLimit
|
2017-04-06 00:43:45 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
if (sortedAtlas.length > entriesOffset) {
|
2022-05-06 09:41:22 +02:00
|
|
|
moreEntriesButton.innerHTML = "Show " + Math.min(entriesLimit, sortedAtlas.length - entriesOffset) + " more"
|
|
|
|
entriesList.appendChild(moreEntriesButton)
|
2017-04-04 01:24:46 +02:00
|
|
|
}
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2017-04-04 01:24:46 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
function shuffle() {
|
2022-05-06 09:41:22 +02:00
|
|
|
//console.log("shuffled atlas")
|
2022-04-16 14:44:50 +02:00
|
|
|
for (let i = sortedAtlas.length - 1; i > 0; i--) {
|
2022-05-06 09:41:22 +02:00
|
|
|
const j = Math.floor(Math.random() * (i + 1))
|
|
|
|
const temp = sortedAtlas[i]
|
|
|
|
sortedAtlas[i] = sortedAtlas[j]
|
|
|
|
sortedAtlas[j] = temp
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
|
|
|
}
|
2017-04-05 20:48:32 +02:00
|
|
|
|
2022-04-10 11:11:34 +02:00
|
|
|
function resetEntriesList() {
|
2022-05-06 09:41:22 +02:00
|
|
|
entriesOffset = 0
|
|
|
|
entriesList.replaceChildren()
|
|
|
|
entriesList.appendChild(moreEntriesButton)
|
2022-04-10 11:11:34 +02:00
|
|
|
|
|
|
|
buildObjectsList(filter = null, sort = null)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
async function render() {
|
2017-04-04 01:24:46 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
context.clearRect(0, 0, canvas.width, canvas.height)
|
2017-04-04 01:24:46 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
//canvas.width = 1000*zoom
|
|
|
|
//canvas.height = 1000*zoom
|
2022-04-16 14:44:50 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
context.globalCompositeOperation = "source-over"
|
|
|
|
context.clearRect(0, 0, canvas.width, canvas.height)
|
2017-04-04 01:24:46 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
if (hovered.length > 0) {
|
2022-05-06 09:41:22 +02:00
|
|
|
container.style.cursor = "pointer"
|
2022-04-09 11:27:14 +02:00
|
|
|
} else {
|
2022-05-06 09:41:22 +02:00
|
|
|
container.style.cursor = "default"
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2017-04-09 21:45:08 +02:00
|
|
|
|
2017-04-09 22:22:06 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
for (let i = 0; i < hovered.length; i++) {
|
2017-04-09 21:45:08 +02:00
|
|
|
|
2017-04-05 20:48:32 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
const path = hovered[i].path
|
2017-04-04 01:24:46 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
context.beginPath()
|
2017-04-06 19:44:09 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
if (path[0]) {
|
2022-05-06 09:41:22 +02:00
|
|
|
//context.moveTo(path[0][0]*zoom, path[0][1]*zoom)
|
|
|
|
context.moveTo(path[0][0], path[0][1])
|
2017-04-05 20:48:32 +02:00
|
|
|
}
|
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
for (let p = 1; p < path.length; p++) {
|
2022-05-06 09:41:22 +02:00
|
|
|
//context.lineTo(path[p][0]*zoom, path[p][1]*zoom)
|
|
|
|
context.lineTo(path[p][0], path[p][1])
|
2017-04-10 12:25:04 +02:00
|
|
|
}
|
2017-04-06 00:43:45 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
context.closePath()
|
2017-04-10 15:16:34 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
context.globalCompositeOperation = "source-over"
|
2017-04-06 19:15:16 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
context.fillStyle = "rgba(0, 0, 0, 1)"
|
|
|
|
context.fill()
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2017-04-06 00:43:45 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
context.globalCompositeOperation = "source-out"
|
|
|
|
context.drawImage(backgroundCanvas, 0, 0)
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
if (hovered.length === 1 && hovered[0].path.length && hovered[0].overrideImage) {
|
2022-05-06 09:41:22 +02:00
|
|
|
const undisputableHovered = hovered[0]
|
2022-04-09 11:27:14 +02:00
|
|
|
// Find the left-topmost point of all the paths
|
2022-05-06 09:41:22 +02:00
|
|
|
const entryPosition = getPositionOfEntry(undisputableHovered)
|
2022-04-16 14:44:50 +02:00
|
|
|
if (entryPosition) {
|
2022-05-06 09:41:22 +02:00
|
|
|
const [startX, startY] = entryPosition
|
|
|
|
const overrideImage = new Image()
|
2022-04-09 11:27:14 +02:00
|
|
|
const loadingPromise = new Promise((res, rej) => {
|
2022-05-06 09:41:22 +02:00
|
|
|
overrideImage.onerror = rej
|
|
|
|
overrideImage.onload = res
|
|
|
|
})
|
|
|
|
overrideImage.src = "imageOverrides/" + undisputableHovered.overrideImage
|
2022-04-16 14:44:50 +02:00
|
|
|
try {
|
2022-05-06 09:41:22 +02:00
|
|
|
await loadingPromise
|
|
|
|
context.globalCompositeOperation = "source-over"
|
|
|
|
context.drawImage(overrideImage, startX, startY)
|
2022-04-16 14:44:50 +02:00
|
|
|
} catch (ex) {
|
2022-05-06 09:41:22 +02:00
|
|
|
console.error("Cannot override image.", ex)
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-05 20:48:32 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
for (let i = 0; i < hovered.length; i++) {
|
2017-04-10 12:25:04 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
const path = hovered[i].path
|
2017-04-05 20:48:32 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
context.beginPath()
|
2017-04-04 01:24:46 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
if (path[0]) {
|
2022-05-06 09:41:22 +02:00
|
|
|
//context.moveTo(path[0][0]*zoom, path[0][1]*zoom)
|
|
|
|
context.moveTo(path[0][0], path[0][1])
|
2017-04-05 20:48:32 +02:00
|
|
|
}
|
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
for (let p = 1; p < path.length; p++) {
|
2022-05-06 09:41:22 +02:00
|
|
|
//context.lineTo(path[p][0]*zoom, path[p][1]*zoom)
|
|
|
|
context.lineTo(path[p][0], path[p][1])
|
2017-04-05 20:48:32 +02:00
|
|
|
}
|
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
context.closePath()
|
2017-04-11 23:16:35 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
context.globalCompositeOperation = "source-over"
|
2017-04-05 20:48:32 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
let hoverStrokeStyle
|
2022-04-09 11:27:14 +02:00
|
|
|
switch (hovered[i].diff) {
|
|
|
|
case "add":
|
2022-05-06 09:41:22 +02:00
|
|
|
hoverStrokeStyle = "rgba(0, 155, 0, 1)"
|
|
|
|
break
|
2022-04-09 11:27:14 +02:00
|
|
|
case "edit":
|
2022-05-06 09:41:22 +02:00
|
|
|
hoverStrokeStyle = "rgba(155, 155, 0, 1)"
|
|
|
|
break
|
2022-04-09 11:27:14 +02:00
|
|
|
default:
|
2022-05-06 09:41:22 +02:00
|
|
|
hoverStrokeStyle = "rgba(0, 0, 0, 1)"
|
|
|
|
break
|
2017-04-05 20:48:32 +02:00
|
|
|
}
|
2022-05-06 09:41:22 +02:00
|
|
|
context.strokeStyle = hoverStrokeStyle
|
|
|
|
//context.lineWidth = zoom
|
|
|
|
context.stroke()
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2017-04-06 00:43:45 +02:00
|
|
|
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2017-04-05 20:48:32 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
function updateHovering(e, tapped) {
|
|
|
|
|
2023-03-19 10:07:44 +01:00
|
|
|
if (dragging || (fixed && !tapped)) return
|
2022-04-20 10:54:58 +02:00
|
|
|
|
2023-03-19 10:07:44 +01:00
|
|
|
const pos = [
|
|
|
|
(e.clientX - (container.clientWidth / 2 - innerContainer.clientWidth / 2 + zoomOrigin[0] + container.offsetLeft)) / zoom,
|
|
|
|
(e.clientY - (container.clientHeight / 2 - innerContainer.clientHeight / 2 + zoomOrigin[1] + container.offsetTop)) / zoom
|
|
|
|
]
|
|
|
|
const coords_p = document.getElementById("coords_p")
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2023-03-19 10:07:44 +01:00
|
|
|
// Displays coordinates as zero instead of NaN
|
|
|
|
if (isNaN(pos[0]) === true) {
|
|
|
|
coords_p.textContent = "0, 0"
|
|
|
|
} else {
|
|
|
|
coords_p.textContent = Math.ceil(pos[0]) + ", " + Math.ceil(pos[1])
|
|
|
|
}
|
2017-04-04 01:24:46 +02:00
|
|
|
|
2023-03-19 10:07:44 +01:00
|
|
|
if (!(pos[0] <= 2200 && pos[0] >= -100 && pos[0] <= 2200 && pos[0] >= -100)) return
|
2017-04-04 01:24:46 +02:00
|
|
|
|
2023-03-19 10:07:44 +01:00
|
|
|
const newHovered = []
|
|
|
|
for (let i = 0; i < atlas.length; i++) {
|
|
|
|
if (pointIsInPolygon(pos, atlas[i].path)) {
|
|
|
|
newHovered.push(atlas[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let changed = false
|
|
|
|
|
|
|
|
if (hovered.length === newHovered.length) {
|
|
|
|
for (let i = 0; i < hovered.length; i++) {
|
|
|
|
if (hovered[i].id !== newHovered[i].id) {
|
2022-05-06 09:41:22 +02:00
|
|
|
changed = true
|
2023-03-19 10:07:44 +01:00
|
|
|
break
|
2022-04-06 15:29:40 +02:00
|
|
|
}
|
2023-03-19 10:07:44 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
changed = true
|
|
|
|
}
|
2022-04-06 15:29:40 +02:00
|
|
|
|
2023-03-19 10:07:44 +01:00
|
|
|
if (!changed) return
|
2017-04-06 00:43:45 +02:00
|
|
|
|
2023-03-19 10:07:44 +01:00
|
|
|
hovered = newHovered.sort(function (a, b) {
|
|
|
|
return calcPolygonArea(a.path) - calcPolygonArea(b.path)
|
|
|
|
})
|
2017-04-05 04:20:49 +02:00
|
|
|
|
2023-03-19 10:07:44 +01:00
|
|
|
objectsContainer.replaceChildren()
|
2017-04-06 00:43:45 +02:00
|
|
|
|
2023-03-19 10:07:44 +01:00
|
|
|
for (const i in hovered) {
|
|
|
|
const element = createInfoBlock(hovered[i])
|
2017-04-05 04:20:49 +02:00
|
|
|
|
2023-03-19 10:07:44 +01:00
|
|
|
objectsContainer.appendChild(element)
|
2017-04-05 04:20:49 +02:00
|
|
|
|
2023-03-19 10:07:44 +01:00
|
|
|
hovered[i].element = element
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hovered.length > 0) {
|
|
|
|
document.getElementById("timeControlsSlider").blur()
|
|
|
|
closeObjectsListButton.classList.remove("d-none")
|
|
|
|
if ((objectsContainer.scrollHeight > objectsContainer.clientHeight) && !tapped) {
|
|
|
|
objectsListOverflowNotice.classList.remove("d-none")
|
|
|
|
} else {
|
|
|
|
objectsListOverflowNotice.classList.add("d-none")
|
2017-04-04 01:24:46 +02:00
|
|
|
}
|
2023-03-19 10:07:44 +01:00
|
|
|
} else {
|
|
|
|
closeObjectsListButton.classList.add("d-none")
|
|
|
|
objectsListOverflowNotice.classList.add("d-none")
|
|
|
|
entriesList.classList.remove("disableHover")
|
2017-04-04 01:24:46 +02:00
|
|
|
}
|
2023-03-19 10:07:44 +01:00
|
|
|
render()
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2017-04-04 01:24:46 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
window.addEventListener("hashchange", highlightEntryFromUrl)
|
2022-04-09 21:09:57 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
function highlightEntryFromUrl() {
|
2017-04-04 01:24:46 +02:00
|
|
|
|
2022-04-29 15:48:40 +02:00
|
|
|
const hash = window.location.hash.substring(1); //Remove hash prefix
|
2023-03-26 14:35:26 +02:00
|
|
|
let [id, period] = hash.split('/')
|
|
|
|
|
|
|
|
// Handle zzz and 0.. prefix
|
|
|
|
let newId = id.replace(/^zzz([a-z0-9]{7})$/g, "$1").replace(/^0+/, '')
|
|
|
|
if (id !== newId) history.replaceState({}, "", `./#${[newId, period].filter(e => e).join('/')}`)
|
|
|
|
id = newId
|
|
|
|
|
2023-03-19 05:56:37 +01:00
|
|
|
let targetPeriod, targetVariation
|
2022-04-09 21:09:57 +02:00
|
|
|
|
2022-04-29 15:48:40 +02:00
|
|
|
if (period) {
|
2023-03-19 05:56:37 +01:00
|
|
|
[, targetPeriod, targetVariation] = parsePeriod(period)
|
2022-04-29 15:48:40 +02:00
|
|
|
} else {
|
2023-03-19 05:56:37 +01:00
|
|
|
targetPeriod = defaultPeriod
|
|
|
|
targetVariation = defaultVariation
|
2022-04-29 15:48:40 +02:00
|
|
|
}
|
2023-03-19 05:56:37 +01:00
|
|
|
updateTime(targetPeriod, targetVariation, true)
|
2017-04-04 01:24:46 +02:00
|
|
|
|
2023-03-18 18:26:41 +01:00
|
|
|
if (!id) return
|
2022-04-16 14:44:50 +02:00
|
|
|
|
2023-03-18 18:26:41 +01:00
|
|
|
const entries = atlas.filter(function (e) {
|
|
|
|
return e.id === id
|
|
|
|
})
|
2022-05-06 09:41:22 +02:00
|
|
|
|
2023-03-18 18:26:41 +01:00
|
|
|
if (entries.length !== 1) return
|
|
|
|
|
|
|
|
const entry = entries[0]
|
2022-05-06 09:41:22 +02:00
|
|
|
|
2023-03-19 07:03:49 +01:00
|
|
|
document.title = entry.name + " on " + pageTitle
|
2023-03-18 18:26:41 +01:00
|
|
|
|
|
|
|
if ((!entry.diff || entry.diff !== "delete")) {
|
2023-03-19 03:19:37 +01:00
|
|
|
objectEditNav.href = "./?mode=draw&id=" + id
|
|
|
|
objectEditNav.title = "Edit " + entry.name
|
|
|
|
if (!objectEditNav.isConnected) {
|
2023-03-18 18:26:41 +01:00
|
|
|
showListButton.parentElement.appendChild(objectEditNav)
|
|
|
|
}
|
|
|
|
} else if (entry.diff === "delete" && document.getElementById("objectEditNav")) {
|
2023-03-19 03:19:37 +01:00
|
|
|
objectEditNav.remove()
|
2023-03-18 18:26:41 +01:00
|
|
|
}
|
2022-05-06 09:41:22 +02:00
|
|
|
|
2023-03-18 18:26:41 +01:00
|
|
|
const infoElement = createInfoBlock(entry)
|
|
|
|
objectsContainer.replaceChildren()
|
|
|
|
objectsContainer.appendChild(infoElement)
|
2022-05-06 09:41:22 +02:00
|
|
|
|
2023-03-18 18:26:41 +01:00
|
|
|
renderBackground(atlas)
|
|
|
|
applyView()
|
2023-03-26 13:58:17 +02:00
|
|
|
setView(entry.center[0], entry.center[1], setZoomByPath(entry.path))
|
2022-05-08 07:22:01 +02:00
|
|
|
|
2023-03-18 18:26:41 +01:00
|
|
|
closeObjectsListButton.classList.remove("d-none")
|
|
|
|
entriesList.classList.add("disableHover")
|
2022-04-22 02:33:30 +02:00
|
|
|
|
2023-03-18 18:26:41 +01:00
|
|
|
hovered = [entry]
|
|
|
|
render()
|
|
|
|
hovered[0].element = infoElement
|
|
|
|
updateLines()
|
|
|
|
fixed = true
|
2022-04-29 15:48:40 +02:00
|
|
|
|
2017-04-06 00:43:45 +02:00
|
|
|
}
|
2022-04-09 05:41:40 +02:00
|
|
|
|
2023-03-26 13:58:17 +02:00
|
|
|
function setZoomByPath(path) {
|
|
|
|
|
|
|
|
let boundingBox = [canvasSize.x, 0, canvasSize.y, 0]
|
|
|
|
path?.forEach(([x, y]) => {
|
|
|
|
boundingBox[0] = Math.min(boundingBox[0], x)
|
|
|
|
boundingBox[1] = Math.max(boundingBox[1], x)
|
|
|
|
boundingBox[2] = Math.min(boundingBox[2], y)
|
|
|
|
boundingBox[3] = Math.max(boundingBox[3], y)
|
|
|
|
})
|
|
|
|
const boundingBoxSize = [boundingBox[1] - boundingBox[0], boundingBox[3] - boundingBox[2]]
|
|
|
|
const clientSize = [
|
|
|
|
Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0),
|
|
|
|
Math.max(document.documentElement.clientHeight || 0, window.innerHeight || 0)
|
|
|
|
]
|
|
|
|
zoom = Math.min(clientSize[0] / boundingBoxSize[0], clientSize[1] / boundingBoxSize[1])
|
|
|
|
zoom = Math.min(4, zoom/2)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
function initView() {
|
2022-04-09 05:41:40 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
buildObjectsList(null, null)
|
|
|
|
renderBackground(atlas)
|
|
|
|
render()
|
2022-04-09 05:41:40 +02:00
|
|
|
|
2023-03-18 02:05:40 +01:00
|
|
|
document.addEventListener('timeupdate', () => {
|
2022-04-10 11:11:34 +02:00
|
|
|
sortedAtlas = atlas.concat()
|
|
|
|
resetEntriesList(null, null)
|
|
|
|
})
|
2022-04-09 05:41:40 +02:00
|
|
|
|
2022-04-09 11:27:14 +02:00
|
|
|
// parse linked atlas entry id from link hash
|
|
|
|
/*if (window.location.hash.substring(3)){
|
2022-05-06 09:41:22 +02:00
|
|
|
zoom = 4
|
|
|
|
applyView()
|
|
|
|
highlightEntryFromUrl()
|
2022-04-09 11:27:14 +02:00
|
|
|
}*/
|
2022-04-09 05:41:40 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
applyView()
|
|
|
|
render()
|
|
|
|
updateLines()
|
2022-04-09 05:41:40 +02:00
|
|
|
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2022-04-09 05:41:40 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
function initExplore() {
|
2022-04-09 05:41:40 +02:00
|
|
|
|
2022-04-09 11:27:14 +02:00
|
|
|
window.updateHovering = updateHovering
|
2022-04-16 14:44:50 +02:00
|
|
|
window.render = function () { }
|
2022-04-09 05:41:40 +02:00
|
|
|
|
2022-04-16 14:44:50 +02:00
|
|
|
function updateHovering(e, tapped) {
|
|
|
|
if (!dragging && (!fixed || tapped)) {
|
|
|
|
const pos = [
|
2023-03-19 07:10:21 +01:00
|
|
|
(e.clientX - (container.clientWidth / 2 - innerContainer.clientWidth / 2 + zoomOrigin[0] + container.offsetLeft)) / zoom,
|
|
|
|
(e.clientY - (container.clientHeight / 2 - innerContainer.clientHeight / 2 + zoomOrigin[1] + container.offsetTop)) / zoom
|
2022-05-06 09:41:22 +02:00
|
|
|
]
|
|
|
|
const coords_p = document.getElementById("coords_p")
|
2022-05-07 00:08:45 +02:00
|
|
|
// Displays coordinates as zero instead of NaN
|
2023-03-17 18:30:33 +01:00
|
|
|
if (isNaN(pos[0]) === true) {
|
2022-05-07 00:08:45 +02:00
|
|
|
coords_p.textContent = "0, 0"
|
|
|
|
} else {
|
|
|
|
coords_p.textContent = Math.ceil(pos[0]) + ", " + Math.ceil(pos[1])
|
|
|
|
}
|
2022-04-09 05:41:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
renderBackground(atlas)
|
2022-04-09 11:27:14 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
applyView()
|
2022-04-09 11:27:14 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function initGlobal() {
|
2022-04-16 14:44:50 +02:00
|
|
|
container.addEventListener("mousemove", function (e) {
|
|
|
|
if (e.sourceCapabilities) {
|
|
|
|
if (!e.sourceCapabilities.firesTouchEvents) {
|
2022-05-06 09:41:22 +02:00
|
|
|
updateHovering(e)
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
|
|
|
} else {
|
2022-05-06 09:41:22 +02:00
|
|
|
updateHovering(e)
|
2022-04-09 05:41:40 +02:00
|
|
|
}
|
2022-05-06 09:41:22 +02:00
|
|
|
})
|
2023-03-19 05:55:12 +01:00
|
|
|
|
|
|
|
document.addEventListener('timeupdate', (event) => {
|
|
|
|
let hashData = window.location.hash.substring(1).split('/')
|
|
|
|
const targetHash = formatHash(hashData[0], event.detail.period, event.detail.period, event.detail.variation)
|
2023-03-21 13:31:25 +01:00
|
|
|
if (location.hash !== targetHash) history.replaceState({}, "", `./${targetHash}`)
|
2023-03-19 05:55:12 +01:00
|
|
|
})
|
2022-04-09 11:27:14 +02:00
|
|
|
}
|
2022-04-09 05:41:40 +02:00
|
|
|
|
2022-04-09 11:27:14 +02:00
|
|
|
function initViewGlobal() {
|
2022-04-16 14:44:50 +02:00
|
|
|
container.addEventListener("mousedown", function (e) {
|
2022-04-09 05:41:40 +02:00
|
|
|
lastPos = [
|
2023-03-19 07:10:21 +01:00
|
|
|
e.clientX,
|
|
|
|
e.clientY
|
2022-05-06 09:41:22 +02:00
|
|
|
]
|
|
|
|
})
|
2022-04-16 14:44:50 +02:00
|
|
|
|
|
|
|
container.addEventListener("touchstart", function (e) {
|
2023-03-17 18:30:33 +01:00
|
|
|
if (e.touches.length === 1) {
|
2022-04-09 05:41:40 +02:00
|
|
|
lastPos = [
|
2023-03-19 07:10:21 +01:00
|
|
|
e.touches[0].clientX,
|
|
|
|
e.touches[0].clientY
|
2022-05-06 09:41:22 +02:00
|
|
|
]
|
2022-04-09 05:41:40 +02:00
|
|
|
}
|
2022-05-06 09:41:22 +02:00
|
|
|
}, { passive: true })
|
2022-04-16 14:44:50 +02:00
|
|
|
|
|
|
|
container.addEventListener("mouseup", function (e) {
|
|
|
|
if (Math.abs(lastPos[0] - e.clientX) + Math.abs(lastPos[1] - e.clientY) <= 4) {
|
2022-05-06 09:41:22 +02:00
|
|
|
toggleFixed(e)
|
2022-04-09 05:41:40 +02:00
|
|
|
}
|
2022-05-06 09:41:22 +02:00
|
|
|
})
|
2022-04-16 14:44:50 +02:00
|
|
|
|
|
|
|
container.addEventListener("touchend", function (e) {
|
2022-04-09 05:41:40 +02:00
|
|
|
e.preventDefault()
|
2022-04-16 14:44:50 +02:00
|
|
|
|
2022-05-06 09:41:22 +02:00
|
|
|
//console.log(e)
|
|
|
|
//console.log(e.changedTouches[0].clientX)
|
2023-03-19 10:07:44 +01:00
|
|
|
if (e.changedTouches.length !== 1) return
|
|
|
|
|
|
|
|
e = e.changedTouches[0]
|
|
|
|
//console.log(lastPos[0] - e.clientX)
|
|
|
|
|
|
|
|
if (Math.abs(lastPos[0] - e.clientX) + Math.abs(lastPos[1] - e.clientY) > 4)
|
|
|
|
|
|
|
|
//console.log("Foo!!")
|
|
|
|
dragging = false
|
|
|
|
fixed = false
|
|
|
|
setTimeout(function () {
|
|
|
|
updateHovering(e, true)
|
|
|
|
}, 10)
|
2022-05-06 09:41:22 +02:00
|
|
|
})
|
2022-04-29 15:48:40 +02:00
|
|
|
|
|
|
|
if (window.location.hash) { // both "/" and just "/#" will be an empty hash string
|
2022-05-06 09:41:22 +02:00
|
|
|
highlightEntryFromUrl()
|
2022-04-29 15:48:40 +02:00
|
|
|
}
|
2023-03-19 05:55:12 +01:00
|
|
|
|
|
|
|
document.addEventListener('timeupdate', (event) => {
|
|
|
|
drawButton.href = "./?mode=draw" + formatHash(undefined, event.detail.period, event.detail.period, event.detail.variation)
|
|
|
|
})
|
2022-04-09 17:49:27 +02:00
|
|
|
}
|