division in parties and flexbox for each party-rack
parent
25776eb1a7
commit
3146ec57fa
@ -1,44 +1,63 @@
|
|||||||
let source_url = ""
|
let source_url = ""
|
||||||
let seatRef = document.getElementById("seatRef")
|
let partyRef = document.getElementById("partyRef")
|
||||||
|
let seatRef = document.querySelector(".seat")
|
||||||
let hemicycle = document.getElementsByClassName("hemicycle")[0]
|
let hemicycle = document.getElementsByClassName("hemicycle")[0]
|
||||||
|
let row = 5
|
||||||
|
|
||||||
|
|
||||||
fetch("https://hub.xpub.nl/soupboat/the-parliament/")
|
fetch("https://hub.xpub.nl/soupboat/the-parliament/")
|
||||||
.then((response) => response.json())
|
.then((response) => response.json())
|
||||||
.then((data) => {
|
.then((data) => {
|
||||||
source_url = data.base_url;
|
source_url = data.base_url;
|
||||||
populateSeats(data.files)
|
populateSeats(data.parliament)
|
||||||
});
|
});
|
||||||
|
|
||||||
function populateSeats(representatives) {
|
function populateSeats(parliament) {
|
||||||
for (const representative of representatives){
|
for (const group of Object.keys(parliament)){ //gets the parent's keys
|
||||||
let seat = seatRef.cloneNode(true);
|
let party = partyRef.cloneNode(true);
|
||||||
seat.querySelector(".label").innerHTML = representative.who;
|
party.id = group
|
||||||
seat.id = representative.who;
|
for (representative of parliament[group]){
|
||||||
let filename = source_url + representative.filename;
|
let seat = seatRef.cloneNode(true);
|
||||||
let audio = new Audio(filename)
|
seat.querySelector(".label").innerHTML = representative.who;
|
||||||
audio.addEventListener("canplaythrough", (e) => {
|
seat.id = representative.who;
|
||||||
console.log(filename);
|
let filename = source_url + group + '/' + representative.filename;
|
||||||
let mic = seat.querySelector(".mic");
|
let audio = new Audio(filename)
|
||||||
mic.innerHTML = "Talk";
|
audio.addEventListener("canplaythrough", (e) => {
|
||||||
mic.addEventListener("click", () => {
|
|
||||||
console.log(filename);
|
console.log(filename);
|
||||||
if (audio.paused) {
|
let mic = seat.querySelector(".mic");
|
||||||
audio.play();
|
mic.innerHTML = "Talk";
|
||||||
mic.innerHTML="Pause";
|
mic.addEventListener("click", () => {
|
||||||
mic.style.color ="red";
|
console.log(filename);
|
||||||
} else {
|
if (audio.paused) {
|
||||||
|
audio.play();
|
||||||
|
mic.innerHTML="Pause";
|
||||||
|
mic.style.color ="red";
|
||||||
|
} else {
|
||||||
|
audio.pause();
|
||||||
|
mic.innerHTML="Talk"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
audio.addEventListener("ended", () => {
|
||||||
audio.pause();
|
audio.pause();
|
||||||
mic.innerHTML="Talk"
|
audio.currentTime = 0;
|
||||||
}
|
mic.innerHTML = "Talk Again"
|
||||||
});
|
});
|
||||||
audio.addEventListener("ended", () => {
|
|
||||||
audio.pause();
|
|
||||||
audio.currentTime = 0;
|
|
||||||
mic.innerHTML = "Talk Again"
|
|
||||||
});
|
});
|
||||||
});
|
party.appendChild(seat);
|
||||||
hemicycle.appendChild(seat);
|
}
|
||||||
|
|
||||||
|
hemicycle.appendChild(party);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
TODO
|
||||||
|
- upload svg
|
||||||
|
- loop through the elements to associate seat to each of them
|
||||||
|
- create label
|
||||||
|
- rotation?
|
||||||
|
*/
|
Loading…
Reference in New Issue