32 lines
888 B
JavaScript
32 lines
888 B
JavaScript
import Selection from "./selection.js";
|
|
|
|
export class HasApp extends HTMLElement {
|
|
get _app() { return this.closest("cyp-app"); }
|
|
get _mpd() { return this._app.mpd; }
|
|
}
|
|
|
|
export class Item extends HasApp {
|
|
constructor() {
|
|
super();
|
|
this.addEventListener("click", _ => this.parentNode.selection.toggle(this));
|
|
}
|
|
}
|
|
|
|
export default class Component extends HasApp {
|
|
constructor(options = {}) {
|
|
super();
|
|
if (options.selection) { this.selection = new Selection(this, options.selection); }
|
|
}
|
|
|
|
connectedCallback() {
|
|
this._app.addEventListener("load", _ => this._onAppLoad());
|
|
this._app.addEventListener("component-change", _ => {
|
|
const component = this._app.getAttribute("component");
|
|
const isThis = (this.nodeName.toLowerCase() == `cyp-${component}`);
|
|
this._onComponentChange(component, isThis);
|
|
});
|
|
}
|
|
|
|
_onAppLoad() {}
|
|
_onComponentChange(_component, _isThis) {}
|
|
}
|