2018-11-19 15:04:16 +00:00
|
|
|
import UI from "./ui.js";
|
2018-11-19 15:03:05 +00:00
|
|
|
|
|
|
|
class Button extends UI {
|
2018-11-19 14:09:43 +00:00
|
|
|
constructor(image) {
|
2018-11-19 15:03:05 +00:00
|
|
|
super(document.createElement("button"), 50, 50);
|
|
|
|
|
2018-11-19 14:45:42 +00:00
|
|
|
this.element.classList.add("shadow");
|
2018-11-19 14:09:43 +00:00
|
|
|
this.element.style.backgroundImage = "url(images/" + image + ".svg)";
|
|
|
|
this._boundClick = this._onClick.bind(this);
|
|
|
|
this.element.addEventListener("click", this._boundClick, false);
|
|
|
|
this._handlers = [];
|
|
|
|
}
|
|
|
|
destructor() {
|
|
|
|
this.element.removeEventListener("click", this._boundClick);
|
|
|
|
delete this._boundClick;
|
|
|
|
delete this._handlers;
|
2018-11-19 15:03:05 +00:00
|
|
|
|
|
|
|
super.destructor();
|
2018-11-19 14:09:43 +00:00
|
|
|
}
|
|
|
|
addHandler(handler) {
|
|
|
|
this._handlers.push(handler);
|
|
|
|
}
|
|
|
|
setPosition(x, y) {
|
|
|
|
this.element.style.position = "absolute";
|
|
|
|
this.element.style.top = y + "px";
|
|
|
|
this.element.style.left = x + "px";
|
|
|
|
}
|
|
|
|
_onClick(e) {
|
|
|
|
for (let i = 0; i < this._handlers.length; ++i) {
|
|
|
|
this._handlers[i](e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Button;
|