class Footer extends HTMLElement { constructor() { super(); this.socialButtons = [ { "link": "//www.thingiverse.com/jonasled/designs/", "icon": "3d_model", }, { "link": "//paypal.me/jonasled", "icon": "paypal", }, { "link": "//matrix.to/#/@jonasled:jonasled.de", "icon": "matrix" }, { "link": "//twitter.com/jonasled1", "icon": "twitter" } ]; this.innerHTML = ` `; const socialButtonsContainer = this.querySelector("#socialButtonsContainer"); this.socialButtons.forEach(button => { const link = document.createElement("a"); link.href = button["link"]; socialButtonsContainer.appendChild(link) const icon = document.createElement("jl-svg"); icon.setAttribute("data-name", button["icon"]); link.appendChild(icon); }); } } customElements.define("jl-footer", Footer);