honk/views/honkpage.js

364 lines
9.2 KiB
JavaScript
Raw Normal View History

2019-09-16 21:15:32 +02:00
function encode(hash) {
var s = []
for (var key in hash) {
var val = hash[key]
s.push(escape(key) + "=" + escape(val))
}
return s.join("&")
}
function post(url, data) {
var x = new XMLHttpRequest()
x.open("POST", url)
x.timeout = 30 * 1000
2019-09-16 21:15:32 +02:00
x.setRequestHeader("Content-Type", "application/x-www-form-urlencoded")
x.send(data)
}
function get(url, whendone, whentimedout) {
2019-09-16 21:15:32 +02:00
var x = new XMLHttpRequest()
x.open("GET", url)
x.timeout = 5 * 1000
x.responseType = "json"
2019-09-16 21:15:32 +02:00
x.onload = function() { whendone(x) }
if (whentimedout) {
x.ontimeout = function(e) { whentimedout(x, e) }
}
2019-09-16 21:15:32 +02:00
x.send()
}
function bonk(el, xid) {
el.innerHTML = "bonked"
el.disabled = true
post("/bonk", encode({"js": "2", "CSRF": csrftoken, "xid": xid}))
return false
2019-09-16 21:15:32 +02:00
}
function unbonk(el, xid) {
el.innerHTML = "unbonked"
el.disabled = true
2019-09-19 04:17:50 +02:00
post("/zonkit", encode({"CSRF": csrftoken, "wherefore": "unbonk", "what": xid}))
2019-09-16 21:15:32 +02:00
}
function muteit(el, convoy) {
el.innerHTML = "muted"
el.disabled = true
2019-09-19 04:17:50 +02:00
post("/zonkit", encode({"CSRF": csrftoken, "wherefore": "zonvoy", "what": convoy}))
2019-09-16 21:15:32 +02:00
var els = document.querySelectorAll('article.honk')
for (var i = 0; i < els.length; i++) {
var e = els[i]
if (e.getAttribute("data-convoy") == convoy) {
e.remove()
}
}
}
function zonkit(el, xid) {
el.innerHTML = "zonked"
el.disabled = true
2019-09-19 04:17:50 +02:00
post("/zonkit", encode({"CSRF": csrftoken, "wherefore": "zonk", "what": xid}))
2019-09-16 21:15:32 +02:00
var p = el
while (p && p.tagName != "ARTICLE") {
p = p.parentElement
}
if (p) {
p.remove()
}
}
2019-10-11 22:03:17 +02:00
function flogit(el, how, xid) {
var s = how
if (s[s.length-1] != "e") { s += "e" }
s += "d"
2019-10-30 00:18:16 +01:00
if (s == "untaged") s = "untagged"
2020-02-18 18:29:03 +01:00
if (s == "reacted") s = "badonked"
2019-10-11 22:03:17 +02:00
el.innerHTML = s
2019-09-16 21:15:32 +02:00
el.disabled = true
2019-10-11 22:03:17 +02:00
post("/zonkit", encode({"CSRF": csrftoken, "wherefore": how, "what": xid}))
2019-09-16 21:15:32 +02:00
}
var lehonkform = document.getElementById("honkform")
var lehonkbutton = document.getElementById("honkingtime")
2019-11-15 21:54:24 +01:00
function oldestnewest(btn) {
var els = document.getElementsByClassName("glow")
if (els.length) {
els[els.length-1].scrollIntoView()
}
}
2019-10-29 05:26:05 +01:00
function removeglow() {
var els = document.getElementsByClassName("glow")
while (els.length) {
els[0].classList.remove("glow")
}
}
function fillinhonks(xhr, glowit) {
var resp = xhr.response
var stash = curpagestate.name + ":" + curpagestate.arg
tophid[stash] = resp.Tophid
var doc = document.createElement( 'div' );
doc.innerHTML = resp.Srvmsg
var srvmsg = doc
doc = document.createElement( 'div' );
doc.innerHTML = resp.Honks
var honks = doc.children
2019-10-07 18:34:36 +02:00
var mecount = document.getElementById("mecount")
if (resp.MeCount) {
mecount.innerHTML = "(" + resp.MeCount + ")"
} else {
mecount.innerHTML = ""
}
var chatcount = document.getElementById("chatcount")
if (resp.ChatCount) {
chatcount.innerHTML = "(" + resp.ChatCount + ")"
} else {
chatcount.innerHTML = ""
}
2019-10-07 18:34:36 +02:00
var srvel = document.getElementById("srvmsg")
while (srvel.children[0]) {
2019-10-07 19:18:30 +02:00
srvel.children[0].remove()
}
2019-10-07 18:34:36 +02:00
srvel.prepend(srvmsg)
var frontload = true
if (curpagestate.name == "convoy") {
frontload = false
}
2019-09-16 21:15:32 +02:00
var honksonpage = document.getElementById("honksonpage")
var holder = honksonpage.children[0]
var lenhonks = honks.length
for (var i = honks.length; i > 0; i--) {
2019-10-29 05:26:05 +01:00
var h = honks[i-1]
if (glowit)
h.classList.add("glow")
if (frontload) {
2019-10-29 05:26:05 +01:00
holder.prepend(h)
} else {
2019-10-29 05:26:05 +01:00
holder.append(h)
}
2019-09-16 21:15:32 +02:00
}
relinklinks()
2019-09-16 21:15:32 +02:00
return lenhonks
}
function hydrargs() {
var name = curpagestate.name
var arg = curpagestate.arg
var args = { "page" : name }
if (name == "convoy") {
args["c"] = arg
} else if (name == "combo") {
args["c"] = arg
2019-10-02 01:45:17 +02:00
} else if (name == "honker") {
args["xid"] = arg
}
return args
}
2019-10-11 07:01:15 +02:00
function refreshupdate(msg) {
var el = document.querySelector("#refreshbox p span")
if (el) {
el.innerHTML = msg
}
}
2019-09-16 21:15:32 +02:00
function refreshhonks(btn) {
2019-10-29 05:26:05 +01:00
removeglow()
2019-09-16 21:15:32 +02:00
btn.innerHTML = "refreshing"
btn.disabled = true
var args = hydrargs()
var stash = curpagestate.name + ":" + curpagestate.arg
args["tophid"] = tophid[stash]
2019-09-16 21:15:32 +02:00
get("/hydra?" + encode(args), function(xhr) {
btn.innerHTML = "refresh"
btn.disabled = false
if (xhr.status == 200) {
var lenhonks = fillinhonks(xhr, true)
refreshupdate(" " + lenhonks + " new")
} else {
refreshupdate(" status: " + xhr.status)
}
}, function(xhr, e) {
btn.innerHTML = "refresh"
btn.disabled = false
refreshupdate(" timed out")
2019-09-16 21:15:32 +02:00
})
}
2019-09-16 21:46:33 +02:00
function statechanger(evt) {
var data = evt.state
if (!data) {
2019-09-16 21:46:33 +02:00
return
}
switchtopage(data.name, data.arg)
2019-09-16 21:46:33 +02:00
}
function switchtopage(name, arg) {
2019-10-07 19:18:30 +02:00
var stash = curpagestate.name + ":" + curpagestate.arg
2019-09-16 21:46:33 +02:00
var honksonpage = document.getElementById("honksonpage")
var holder = honksonpage.children[0]
holder.remove()
2019-10-07 19:18:30 +02:00
var srvel = document.getElementById("srvmsg")
var msg = srvel.children[0]
if (msg) {
msg.remove()
servermsgs[stash] = msg
2019-09-16 21:46:33 +02:00
}
showelement("refreshbox")
2019-10-07 19:18:30 +02:00
honksforpage[stash] = holder
curpagestate.name = name
curpagestate.arg = arg
// get the holder for the target page
var stash = name + ":" + arg
holder = honksforpage[stash]
2019-09-16 21:46:33 +02:00
if (holder) {
honksonpage.prepend(holder)
2019-10-07 19:18:30 +02:00
msg = servermsgs[stash]
if (msg) {
srvel.prepend(msg)
}
2019-09-16 21:46:33 +02:00
} else {
// or create one and fill it
2019-09-16 21:46:33 +02:00
honksonpage.prepend(document.createElement("div"))
var args = hydrargs()
get("/hydra?" + encode(args), function(xhr) {
if (xhr.status == 200) {
var lenhonks = fillinhonks(xhr, false)
} else {
refreshupdate(" status: " + xhr.status)
}
}, function(xhr, e) {
refreshupdate(" timed out")
})
2019-09-16 21:46:33 +02:00
}
2019-10-11 07:01:15 +02:00
refreshupdate("")
2019-09-16 21:46:33 +02:00
}
function newpagestate(name, arg) {
return { "name": name, "arg": arg }
}
function pageswitcher(name, arg) {
2019-09-16 21:15:32 +02:00
return function(evt) {
2019-10-03 22:08:31 +02:00
var topmenu = document.getElementById("topmenu")
topmenu.open = false
if (name == curpagestate.name && arg == curpagestate.arg) {
2019-09-16 21:15:32 +02:00
return false
}
switchtopage(name, arg)
2019-09-16 21:46:33 +02:00
var url = evt.srcElement.href
2019-10-07 22:33:31 +02:00
if (!url) {
url = evt.srcElement.parentElement.href
}
history.pushState(newpagestate(name, arg), "some title", url)
2019-10-01 23:02:53 +02:00
window.scrollTo(0, 0)
2019-09-16 21:15:32 +02:00
return false
}
}
function relinklinks() {
2019-09-16 21:15:32 +02:00
var els = document.getElementsByClassName("convoylink")
2019-10-02 01:45:17 +02:00
while (els.length) {
els[0].onclick = pageswitcher("convoy", els[0].text)
els[0].classList.remove("convoylink")
}
els = document.getElementsByClassName("combolink")
2019-10-02 01:45:17 +02:00
while (els.length) {
els[0].onclick = pageswitcher("combo", els[0].text)
els[0].classList.remove("combolink")
}
els = document.getElementsByClassName("honkerlink")
while (els.length) {
var el = els[0]
var xid = el.getAttribute("data-xid")
el.onclick = pageswitcher("honker", xid)
el.classList.remove("honkerlink")
2019-09-16 21:15:32 +02:00
}
}
(function() {
var el = document.getElementById("homelink")
el.onclick = pageswitcher("home", "")
2019-09-26 17:28:05 +02:00
el = document.getElementById("atmelink")
el.onclick = pageswitcher("atme", "")
2019-09-26 17:28:05 +02:00
el = document.getElementById("firstlink")
el.onclick = pageswitcher("first", "")
2019-10-11 22:03:17 +02:00
el = document.getElementById("savedlink")
el.onclick = pageswitcher("saved", "")
2020-07-20 00:57:53 +02:00
el = document.getElementById("longagolink")
el.onclick = pageswitcher("longago", "")
relinklinks()
2019-09-16 21:46:33 +02:00
window.onpopstate = statechanger
history.replaceState(curpagestate, "some title", "")
2019-09-16 21:15:32 +02:00
})();
2019-09-18 21:19:31 +02:00
(function() {
2020-02-25 19:45:59 +01:00
hideelement("donkdescriptor")
2019-09-18 21:19:31 +02:00
})();
function showhonkform(elem, rid, hname) {
var form = lehonkform
2019-09-18 21:19:31 +02:00
form.style = "display: block"
if (elem) {
form.remove()
elem.parentElement.parentElement.parentElement.insertAdjacentElement('beforebegin', form)
2019-09-18 21:19:31 +02:00
} else {
hideelement(lehonkbutton)
2019-09-18 21:19:31 +02:00
elem = document.getElementById("honkformhost")
elem.insertAdjacentElement('afterend', form)
}
var ridinput = document.getElementById("ridinput")
if (rid) {
ridinput.value = rid
2021-01-29 03:46:46 +01:00
if (hname) {
honknoise.value = hname + " "
} else {
honknoise.value = ""
}
} else {
ridinput.value = ""
honknoise.value = ""
2019-09-18 21:19:31 +02:00
}
2019-10-20 21:23:41 +02:00
var updateinput = document.getElementById("updatexidinput")
updateinput.value = ""
2019-09-18 21:19:31 +02:00
document.getElementById("honknoise").focus()
return false
2019-09-18 21:19:31 +02:00
}
function cancelhonking() {
hideelement(lehonkform)
showelement(lehonkbutton)
}
function showelement(el) {
if (typeof(el) == "string")
el = document.getElementById(el)
2020-02-25 19:45:59 +01:00
if (!el) return
el.style.display = "block"
}
function hideelement(el) {
if (typeof(el) == "string")
el = document.getElementById(el)
2020-02-25 19:45:59 +01:00
if (!el) return
el.style.display = "none"
}
2019-09-18 21:19:31 +02:00
function updatedonker() {
var el = document.getElementById("donker")
el.children[1].textContent = el.children[0].value.slice(-20)
var el = document.getElementById("donkdescriptor")
el.style.display = ""
var el = document.getElementById("saveddonkxid")
el.value = ""
2019-09-18 21:19:31 +02:00
}
2019-10-05 22:41:17 +02:00
var checkinprec = 100.0
2019-10-05 19:11:24 +02:00
var gpsoptions = {
enableHighAccuracy: false,
timeout: 1000,
maximumAge: 0
};
2019-09-28 06:12:50 +02:00
function fillcheckin() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(pos) {
showelement("placedescriptor")
var el = document.getElementById("placelatinput")
2019-09-28 22:24:55 +02:00
el.value = Math.round(pos.coords.latitude * checkinprec) / checkinprec
2019-09-28 06:12:50 +02:00
el = document.getElementById("placelonginput")
2019-09-28 22:24:55 +02:00
el.value = Math.round(pos.coords.longitude * checkinprec) / checkinprec
checkinprec = 10000.0
2019-10-05 19:11:24 +02:00
gpsoptions.enableHighAccuracy = true
gpsoptions.timeout = 2000
2019-09-28 06:12:50 +02:00
}, function(err) {
showelement("placedescriptor")
2019-09-28 06:16:43 +02:00
el = document.getElementById("placenameinput")
el.value = err.message
2019-10-05 19:11:24 +02:00
}, gpsoptions)
2019-09-28 06:12:50 +02:00
}
}