1
1
mirror of https://github.com/XXIIVV/webring.git synced 2024-08-17 23:50:24 +03:00
webring/portal.js
Devine Lu Linvega 6fd29c1bbe *
2018-05-17 12:58:30 +12:00

74 lines
1.7 KiB
JavaScript

function Portal(sites)
{
this.el = document.createElement("pre");
this.sites = sites;
this.install = function()
{
document.body.appendChild(this.el);
}
this.start = function()
{
this.install();
this.el.innerHTML = window.location.hash ? this.redirect() : this.directory();
}
this.directory = function()
{
var html = ""
for(id in this.sites){
var site = this.sites[id]
html += `${id}) <a href='${site}'>${site}</a>\n`
}
html += `\n<a href='#random' onClick="portal.reload('random')">Random</a> | <a href='https://github.com/XXIIVV/webring'>Information</a>`
return html
}
this.reload = function()
{
setTimeout(()=>{ window.location.reload() },500)
}
this.location = function()
{
return window.location.hash.replace("#","").trim();
}
this.locate = function()
{
var hash = this.location();
if(hash == "random"){
return Math.floor(Math.random()*this.sites.length)
}
for(var id in this.sites){
var site = this.sites[id];
if(site.indexOf(hash) >-1){
return parseInt(id)
}
}
return -1
}
this.next = function(loc)
{
return loc == this.sites.length-1 ? this.sites[0] : this.sites[loc+1];
}
this.redirect = function()
{
var location = this.locate();
var target = this.next(location);
var html = ""
html = `Redirecting to ${target}
<meta http-equiv="refresh" content="3; url=${target}">
<a href='' onClick="window.location.reload()">Directory</a> | <a href='#${target}' onClick="portal.reload('random')">Skip</a> | <a href='#random' onClick="portal.reload('random')">Random</a> | <a href='https://github.com/XXIIVV/webring'>Information</a>`
return html
}
}