]> BookStack Code Mirror - bookstack/blobdiff - resources/js/components/entity-selector-popup.js
Readme: Swapped codeclimate reference for custom phpmetrics
[bookstack] / resources / js / components / entity-selector-popup.js
diff --git a/resources/js/components/entity-selector-popup.js b/resources/js/components/entity-selector-popup.js
deleted file mode 100644 (file)
index 231f102..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-/**
- * Entity Selector Popup
- * @extends {Component}
- */
-class EntitySelectorPopup {
-
-    setup() {
-        this.elem = this.$el;
-        this.selectButton = this.$refs.select;
-        this.searchInput = this.$refs.searchInput;
-
-        window.EntitySelectorPopup = this;
-
-        this.callback = null;
-        this.selection = null;
-
-        this.selectButton.addEventListener('click', this.onSelectButtonClick.bind(this));
-        window.$events.listen('entity-select-change', this.onSelectionChange.bind(this));
-        window.$events.listen('entity-select-confirm', this.onSelectionConfirm.bind(this));
-    }
-
-    show(callback) {
-        this.callback = callback;
-        this.elem.components.popup.show();
-        this.searchInput.focus();
-    }
-
-    hide() {
-        this.elem.components.popup.hide();
-    }
-
-    onSelectButtonClick() {
-        this.hide();
-        if (this.selection !== null && this.callback) this.callback(this.selection);
-    }
-
-    onSelectionConfirm(entity) {
-        this.hide();
-        if (this.callback && entity) this.callback(entity);
-    }
-
-    onSelectionChange(entity) {
-        this.selection = entity;
-        if (entity === null) {
-            this.selectButton.setAttribute('disabled', 'true');
-        } else {
-            this.selectButton.removeAttribute('disabled');
-        }
-    }
-}
-
-export default EntitySelectorPopup;
\ No newline at end of file