mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-11-04 13:31:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			834 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			834 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import {onChildEvent} from '../services/dom';
 | 
						|
import {Component} from './component';
 | 
						|
 | 
						|
export class UserSelect extends Component {
 | 
						|
 | 
						|
    setup() {
 | 
						|
        this.container = this.$el;
 | 
						|
        this.input = this.$refs.input;
 | 
						|
        this.userInfoContainer = this.$refs.userInfo;
 | 
						|
 | 
						|
        onChildEvent(this.container, 'a.dropdown-search-item', 'click', this.selectUser.bind(this));
 | 
						|
    }
 | 
						|
 | 
						|
    selectUser(event, userEl) {
 | 
						|
        event.preventDefault();
 | 
						|
        this.input.value = userEl.getAttribute('data-id');
 | 
						|
        this.userInfoContainer.innerHTML = userEl.innerHTML;
 | 
						|
        this.input.dispatchEvent(new Event('change', {bubbles: true}));
 | 
						|
        this.hide();
 | 
						|
    }
 | 
						|
 | 
						|
    hide() {
 | 
						|
        /** @var {Dropdown} * */
 | 
						|
        const dropdown = window.$components.firstOnElement(this.container, 'dropdown');
 | 
						|
        dropdown.hide();
 | 
						|
    }
 | 
						|
 | 
						|
}
 |