mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-31 03:50:27 +03:00 
			
		
		
		
	This changes how initial searches can be handled via config rather than specific action so they can be considered in how the initial data load is done, to prevent the default empty state loading and overwriting the search data if it lands later (which was commonly likely). For #4778
		
			
				
	
	
		
			69 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import {Component} from './component';
 | |
| 
 | |
| export class EntitySelectorPopup extends Component {
 | |
| 
 | |
|     setup() {
 | |
|         this.container = this.$el;
 | |
|         this.selectButton = this.$refs.select;
 | |
|         this.selectorEl = this.$refs.selector;
 | |
| 
 | |
|         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.handleConfirmedSelection.bind(this));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Show the selector popup.
 | |
|      * @param {Function} callback
 | |
|      * @param {EntitySelectorSearchOptions} searchOptions
 | |
|      */
 | |
|     show(callback, searchOptions = {}) {
 | |
|         this.callback = callback;
 | |
|         this.getSelector().configureSearchOptions(searchOptions);
 | |
|         this.getPopup().show();
 | |
| 
 | |
|         this.getSelector().focusSearch();
 | |
|     }
 | |
| 
 | |
|     hide() {
 | |
|         this.getPopup().hide();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @returns {Popup}
 | |
|      */
 | |
|     getPopup() {
 | |
|         return window.$components.firstOnElement(this.container, 'popup');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @returns {EntitySelector}
 | |
|      */
 | |
|     getSelector() {
 | |
|         return window.$components.firstOnElement(this.selectorEl, 'entity-selector');
 | |
|     }
 | |
| 
 | |
|     onSelectButtonClick() {
 | |
|         this.handleConfirmedSelection(this.selection);
 | |
|     }
 | |
| 
 | |
|     onSelectionChange(entity) {
 | |
|         this.selection = entity;
 | |
|         if (entity === null) {
 | |
|             this.selectButton.setAttribute('disabled', 'true');
 | |
|         } else {
 | |
|             this.selectButton.removeAttribute('disabled');
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     handleConfirmedSelection(entity) {
 | |
|         this.hide();
 | |
|         this.getSelector().reset();
 | |
|         if (this.callback && entity) this.callback(entity);
 | |
|     }
 | |
| 
 | |
| }
 |