mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
a5fa745749
- Moved Code-editor from vue to component. - Updated popup code so it background click only hides if the click originated on the same background. Clicks within the popup will no longer cause it to hide. - Added session-level history tracking to code editor.
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
/**
|
|
* Entity Selector Popup
|
|
* @extends {Component}
|
|
*/
|
|
class EntitySelectorPopup {
|
|
|
|
setup() {
|
|
this.elem = this.$el;
|
|
this.selectButton = this.$refs.select;
|
|
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();
|
|
}
|
|
|
|
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; |