2020-03-10 05:24:31 +08:00
|
|
|
import * as mpd from "../mpd.js";
|
|
|
|
import * as mpdMock from "../mpd-mock.js";
|
|
|
|
import * as html from "../html.js";
|
2020-03-09 05:11:46 +08:00
|
|
|
|
2020-03-10 05:24:31 +08:00
|
|
|
// import * as library from "./library.js";
|
|
|
|
// import * as fs from "./fs.js";
|
2019-03-22 22:35:04 +08:00
|
|
|
|
2019-03-29 05:52:57 +08:00
|
|
|
function initIcons() {
|
2020-03-09 16:26:10 +08:00
|
|
|
Array.from(document.querySelectorAll("[data-icon]")).forEach(/** @param {HTMLElement} node */ node => {
|
2019-03-29 05:52:57 +08:00
|
|
|
let icon = html.icon(node.dataset.icon);
|
|
|
|
node.insertBefore(icon, node.firstChild);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-03-09 21:26:39 +08:00
|
|
|
async function initMpd() {
|
|
|
|
try {
|
|
|
|
await mpd.init();
|
|
|
|
return mpd;
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
return mpdMock;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-09 05:11:46 +08:00
|
|
|
class App extends HTMLElement {
|
2020-03-09 16:26:10 +08:00
|
|
|
static get observedAttributes() { return ["component"]; }
|
|
|
|
|
2020-03-09 05:11:46 +08:00
|
|
|
constructor() {
|
|
|
|
super();
|
2019-03-26 19:35:47 +08:00
|
|
|
|
2020-03-09 16:26:10 +08:00
|
|
|
initIcons();
|
|
|
|
}
|
2019-03-20 03:45:23 +08:00
|
|
|
|
2020-03-09 21:26:39 +08:00
|
|
|
async connectedCallback() {
|
2020-03-10 05:24:31 +08:00
|
|
|
this.mpd = await initMpd();
|
|
|
|
|
2020-03-09 05:11:46 +08:00
|
|
|
const promises = ["cyp-player"].map(name => customElements.whenDefined(name));
|
2020-03-09 21:26:39 +08:00
|
|
|
|
2020-03-09 05:11:46 +08:00
|
|
|
await Promise.all(promises);
|
2019-03-22 22:35:04 +08:00
|
|
|
|
2020-03-09 16:26:10 +08:00
|
|
|
this.dispatchEvent(new CustomEvent("load"));
|
|
|
|
|
2020-03-09 05:11:46 +08:00
|
|
|
const onHashChange = () => {
|
|
|
|
const hash = location.hash.substring(1);
|
2020-03-09 21:26:39 +08:00
|
|
|
this.setAttribute("component", hash || "queue");
|
2020-03-09 05:11:46 +08:00
|
|
|
}
|
|
|
|
window.addEventListener("hashchange", onHashChange);
|
|
|
|
onHashChange();
|
|
|
|
}
|
|
|
|
|
2020-03-09 21:26:39 +08:00
|
|
|
attributeChangedCallback(name, oldValue, newValue) {
|
|
|
|
switch (name) {
|
|
|
|
case "component":
|
|
|
|
location.hash = newValue;
|
|
|
|
const e = new CustomEvent("component-change");
|
|
|
|
this.dispatchEvent(e);
|
|
|
|
break;
|
|
|
|
}
|
2020-03-09 05:11:46 +08:00
|
|
|
}
|
2020-03-09 01:06:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
customElements.define("cyp-app", App);
|