mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-11-04 13:31:45 +03:00 
			
		
		
		
	- Updated tri-layout sidebars to have less padding and to avoid cutting off content when in single-sidebar mode. - Updated dropdown handling to consider the parent scroll container when deciding to drop upwards, to help prevent cut-off.
		
			
				
	
	
		
			151 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			151 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import {findClosestScrollContainer, onSelect} from '../services/dom.ts';
 | 
						|
import {KeyboardNavigationHandler} from '../services/keyboard-navigation.ts';
 | 
						|
import {Component} from './component';
 | 
						|
 | 
						|
/**
 | 
						|
 * Dropdown
 | 
						|
 * Provides some simple logic to create simple dropdown menus.
 | 
						|
 */
 | 
						|
export class Dropdown extends Component {
 | 
						|
 | 
						|
    setup() {
 | 
						|
        this.container = this.$el;
 | 
						|
        this.menu = this.$refs.menu;
 | 
						|
        this.toggle = this.$refs.toggle;
 | 
						|
        this.moveMenu = this.$opts.moveMenu;
 | 
						|
        this.bubbleEscapes = this.$opts.bubbleEscapes === 'true';
 | 
						|
 | 
						|
        this.direction = (document.dir === 'rtl') ? 'right' : 'left';
 | 
						|
        this.body = document.body;
 | 
						|
        this.showing = false;
 | 
						|
 | 
						|
        this.hide = this.hide.bind(this);
 | 
						|
        this.setupListeners();
 | 
						|
    }
 | 
						|
 | 
						|
    show(event = null) {
 | 
						|
        this.hideAll();
 | 
						|
 | 
						|
        this.menu.style.display = 'block';
 | 
						|
        this.menu.classList.add('anim', 'menuIn');
 | 
						|
        this.toggle.setAttribute('aria-expanded', 'true');
 | 
						|
 | 
						|
        const menuOriginalRect = this.menu.getBoundingClientRect();
 | 
						|
        let heightOffset = 0;
 | 
						|
        const toggleHeight = this.toggle.getBoundingClientRect().height;
 | 
						|
        const containerBounds = findClosestScrollContainer(this.menu).getBoundingClientRect();
 | 
						|
        const dropUpwards = menuOriginalRect.bottom > containerBounds.bottom;
 | 
						|
        const containerRect = this.container.getBoundingClientRect();
 | 
						|
 | 
						|
        // If enabled, Move to body to prevent being trapped within scrollable sections
 | 
						|
        if (this.moveMenu) {
 | 
						|
            this.body.appendChild(this.menu);
 | 
						|
            this.menu.style.position = 'fixed';
 | 
						|
            this.menu.style.width = `${menuOriginalRect.width}px`;
 | 
						|
            this.menu.style.left = `${menuOriginalRect.left}px`;
 | 
						|
            if (dropUpwards) {
 | 
						|
                heightOffset = (window.innerHeight - menuOriginalRect.top - toggleHeight / 2);
 | 
						|
            } else {
 | 
						|
                heightOffset = menuOriginalRect.top;
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        // Adjust menu to display upwards if near the bottom of the screen
 | 
						|
        if (dropUpwards) {
 | 
						|
            this.menu.style.top = 'initial';
 | 
						|
            this.menu.style.bottom = `${heightOffset}px`;
 | 
						|
            const maxHeight = (window.innerHeight - 40) - (window.innerHeight - containerRect.bottom);
 | 
						|
            this.menu.style.maxHeight = `${Math.floor(maxHeight)}px`;
 | 
						|
        } else {
 | 
						|
            this.menu.style.top = `${heightOffset}px`;
 | 
						|
            this.menu.style.bottom = 'initial';
 | 
						|
            const maxHeight = (window.innerHeight - 40) - containerRect.top;
 | 
						|
            this.menu.style.maxHeight = `${Math.floor(maxHeight)}px`;
 | 
						|
        }
 | 
						|
 | 
						|
        // Set listener to hide on mouse leave or window click
 | 
						|
        this.menu.addEventListener('mouseleave', this.hide);
 | 
						|
        window.addEventListener('click', clickEvent => {
 | 
						|
            if (!this.menu.contains(clickEvent.target)) {
 | 
						|
                this.hide();
 | 
						|
            }
 | 
						|
        });
 | 
						|
 | 
						|
        // Focus on first input if existing
 | 
						|
        const input = this.menu.querySelector('input');
 | 
						|
        if (input !== null) input.focus();
 | 
						|
 | 
						|
        this.showing = true;
 | 
						|
 | 
						|
        const showEvent = new Event('show');
 | 
						|
        this.container.dispatchEvent(showEvent);
 | 
						|
 | 
						|
        if (event) {
 | 
						|
            event.stopPropagation();
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    hideAll() {
 | 
						|
        for (const dropdown of window.$components.get('dropdown')) {
 | 
						|
            dropdown.hide();
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    hide() {
 | 
						|
        this.menu.style.display = 'none';
 | 
						|
        this.menu.classList.remove('anim', 'menuIn');
 | 
						|
        this.toggle.setAttribute('aria-expanded', 'false');
 | 
						|
        this.menu.style.top = '';
 | 
						|
        this.menu.style.bottom = '';
 | 
						|
        this.menu.style.maxHeight = '';
 | 
						|
 | 
						|
        if (this.moveMenu) {
 | 
						|
            this.menu.style.position = '';
 | 
						|
            this.menu.style[this.direction] = '';
 | 
						|
            this.menu.style.width = '';
 | 
						|
            this.menu.style.left = '';
 | 
						|
            this.container.appendChild(this.menu);
 | 
						|
        }
 | 
						|
 | 
						|
        this.showing = false;
 | 
						|
    }
 | 
						|
 | 
						|
    setupListeners() {
 | 
						|
        const keyboardNavHandler = new KeyboardNavigationHandler(this.container, event => {
 | 
						|
            this.hide();
 | 
						|
            this.toggle.focus();
 | 
						|
            if (!this.bubbleEscapes) {
 | 
						|
                event.stopPropagation();
 | 
						|
            }
 | 
						|
        }, event => {
 | 
						|
            if (event.target.nodeName === 'INPUT') {
 | 
						|
                event.preventDefault();
 | 
						|
                event.stopPropagation();
 | 
						|
            }
 | 
						|
            this.hide();
 | 
						|
        });
 | 
						|
 | 
						|
        if (this.moveMenu) {
 | 
						|
            keyboardNavHandler.shareHandlingToEl(this.menu);
 | 
						|
        }
 | 
						|
 | 
						|
        // Hide menu on option click
 | 
						|
        this.container.addEventListener('click', event => {
 | 
						|
            const possibleChildren = Array.from(this.menu.querySelectorAll('a'));
 | 
						|
            if (possibleChildren.includes(event.target)) {
 | 
						|
                this.hide();
 | 
						|
            }
 | 
						|
        });
 | 
						|
 | 
						|
        onSelect(this.toggle, event => {
 | 
						|
            event.stopPropagation();
 | 
						|
            event.preventDefault();
 | 
						|
            this.show(event);
 | 
						|
            if (event instanceof KeyboardEvent) {
 | 
						|
                keyboardNavHandler.focusNext();
 | 
						|
            }
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
}
 |