108 lines
3.1 KiB
JavaScript
108 lines
3.1 KiB
JavaScript
"use strict";
|
|
import Tablesort from 'tablesort';
|
|
window.Tablesort = require('tablesort');
|
|
require('tablesort/src/sorts/tablesort.number');
|
|
|
|
window.onload = () => {
|
|
const menu_expand = document.querySelector('a.menu-expand');
|
|
const mobile_foldable = document.querySelector('nav.mobile-foldable');
|
|
const tables = document.querySelectorAll('table')
|
|
|
|
loadAd()
|
|
addEasterEggAnimation()
|
|
|
|
if (menu_expand !== null && mobile_foldable !== null) {
|
|
menu_expand.addEventListener('click', () => {
|
|
mobile_foldable.classList.toggle('show');
|
|
});
|
|
}
|
|
|
|
for (const table of tables) {
|
|
const header = table.querySelector('tr');
|
|
if (header !== null) {
|
|
header.setAttribute('data-sort-method', 'none')
|
|
for (const th of header.querySelectorAll('th')) {
|
|
if (th.getAttribute('data-sort-method') == null) {
|
|
th.setAttribute('data-sort-method', 'thead')
|
|
}
|
|
}
|
|
}
|
|
new Tablesort(table)
|
|
}
|
|
};
|
|
|
|
function addEasterEggAnimation() {
|
|
const logoContainer = document.querySelector('div.burguillos-logo-container')
|
|
if (logoContainer === null) {
|
|
return;
|
|
}
|
|
logoContainer.addEventListener('click', () => {
|
|
logoContainer.classList.toggle('active')
|
|
})
|
|
}
|
|
|
|
let current_ad_number = null
|
|
|
|
function expand_page_contents() {
|
|
const page_contents = document.querySelector('div.page-contents');
|
|
if (page_contents === null) {
|
|
return;
|
|
}
|
|
page_contents.classList.add('no-carousel');
|
|
}
|
|
|
|
function no_more_ads() {
|
|
const carousel = document.querySelector('.carousel');
|
|
if (carousel !== null) {
|
|
carousel.remove();
|
|
}
|
|
expand_page_contents();
|
|
}
|
|
|
|
function loadAd() {
|
|
const params = new URLSearchParams();
|
|
if (current_ad_number !== null) {
|
|
params.append('n', ""+current_ad_number);
|
|
}
|
|
fetch('/next-ad.json?' + params).then((res) => {
|
|
return res.json()
|
|
}).then((res) => {
|
|
current_ad_number = res.current_ad_number
|
|
const ad = res.ad
|
|
const must_continue = res.continue
|
|
const carousel = document.querySelector('.carousel');
|
|
if (must_continue === 0
|
|
|| carousel === null
|
|
|| carousel.offsetWidth === 0) {
|
|
no_more_ads();
|
|
return;
|
|
}
|
|
carousel.innerHTML = ""
|
|
const a = document.createElement('a')
|
|
const image = document.createElement('img')
|
|
const text_container = document.createElement('div')
|
|
const text = document.createElement('h4')
|
|
const promoted = document.createElement('p')
|
|
|
|
promoted.classList.add('promoted-tag')
|
|
promoted.innerText = "Promocionado"
|
|
image.src = ad.img
|
|
text.innerText = ad.text
|
|
a.href = ad.href
|
|
|
|
a.append(image)
|
|
text_container.append(promoted)
|
|
text_container.append(text)
|
|
a.append(text_container)
|
|
carousel.append(a);
|
|
|
|
window.setTimeout(() => {
|
|
loadAd()
|
|
}, ad.seconds * 1000)
|
|
}).catch(() => {
|
|
window.setTimeout(() => {
|
|
loadAd()
|
|
}, 1000)
|
|
});
|
|
}
|