salix/front/core/components/popover/popover.js

206 lines
5.9 KiB
JavaScript
Raw Normal View History

2018-02-10 15:18:01 +00:00
import ngModule from '../../module';
import Component from '../../lib/component';
import './style.scss';
/**
* A simple popover.
2018-10-18 07:24:20 +00:00
*
* @property {HTMLElement} parent The parent element to show drop down relative to
*
* @event open Thrown when popover is displayed
* @event close Thrown when popover is hidden
*/
export default class Popover extends Component {
constructor($element, $scope, $timeout, $transitions) {
super($element, $scope);
this.$timeout = $timeout;
this.$transitions = $transitions;
this._shown = false;
}
$postLink() {
super.$postLink();
this.$element.addClass('vn-popover');
this.docKeyDownHandler = e => this.onDocKeyDown(e);
this.docFocusInHandler = e => this.onDocFocusIn(e);
this.bgMouseDownHandler = e => this.onBgMouseDown(e);
this.element.addEventListener('focusin',
e => this.onFocusIn(e));
this.popover = this.element.querySelector('.popover');
this.popover.addEventListener('mousedown',
e => this.onMouseDown(e));
this.arrow = this.element.querySelector('.arrow');
this.content = this.element.querySelector('.content');
}
2018-03-20 10:28:41 +00:00
/**
* @type {HTMLElement} The popover child.
*/
get child() {
return this.content.firstChild;
}
2018-03-20 10:28:41 +00:00
set child(value) {
this.content.innerHTML = '';
this.content.appendChild(value);
}
/**
* @type {Boolean} Wether to show or hide the popover.
*/
get shown() {
return this._shown;
}
set shown(value) {
if (value)
this.show();
else
this.hide();
}
/**
2018-10-18 18:48:21 +00:00
* Shows the popover emitting the open signal. If a parent is specified
* it is shown in a visible relative position to it.
2018-10-18 07:24:20 +00:00
*
* @param {HTMLElement} parent Overrides the parent property
*/
2018-10-18 07:24:20 +00:00
show(parent) {
if (this._shown) return;
2018-10-18 07:24:20 +00:00
if (parent) this.parent = parent;
this._shown = true;
this.element.style.display = 'block';
this.$timeout.cancel(this.showTimeout);
this.showTimeout = this.$timeout(() => {
this.$element.addClass('shown');
this.showTimeout = null;
}, 30);
this.document.addEventListener('keydown', this.docKeyDownHandler);
this.document.addEventListener('focusin', this.docFocusInHandler);
this.element.addEventListener('mousedown', this.bgMouseDownHandler);
this.deregisterCallback = this.$transitions.onStart({}, () => this.hide());
this.relocate();
2018-10-18 07:24:20 +00:00
this.emit('open');
}
/**
2018-10-18 18:48:21 +00:00
* Hides the popover emitting the close signal.
*/
hide() {
if (!this._shown) return;
this._shown = false;
this.$element.removeClass('shown');
this.$timeout.cancel(this.showTimeout);
this.showTimeout = this.$timeout(() => {
this.element.style.display = 'none';
this.showTimeout = null;
2018-10-18 07:24:20 +00:00
this.emit('close');
}, 250);
this.document.removeEventListener('keydown', this.docKeyDownHandler);
this.document.removeEventListener('focusin', this.docFocusInHandler);
this.element.removeEventListener('mousedown', this.bgMouseDownHandler);
2017-07-05 07:47:24 +00:00
if (this.deregisterCallback)
this.deregisterCallback();
}
/**
* Repositions the popover to a correct location relative to the parent.
*/
relocate() {
if (!(this.parent && this._shown)) return;
2019-04-10 13:47:23 +00:00
2019-04-10 05:20:23 +00:00
let margin = 10;
2019-04-10 13:47:23 +00:00
let scrollbarSize = 10;
let style = this.popover.style;
style.width = '';
style.height = '';
2017-10-04 14:02:53 +00:00
let arrowStyle = this.arrow.style;
arrowStyle.top = '';
arrowStyle.bottom = '';
let parentRect = this.parent.getBoundingClientRect();
let popoverRect = this.popover.getBoundingClientRect();
let arrowRect = this.arrow.getBoundingClientRect();
2019-04-10 13:47:23 +00:00
let clamp = (value, min, max) => Math.min(Math.max(value, min), max);
let arrowHeight = Math.sqrt(Math.pow(arrowRect.height, 2) * 2) / 2;
2017-10-04 14:02:53 +00:00
2019-04-10 13:47:23 +00:00
let endMargin = margin + scrollbarSize;
let maxRight = window.innerWidth - endMargin;
let maxBottom = window.innerHeight - endMargin;
let maxWith = maxRight - margin;
let maxHeight = maxBottom - margin - arrowHeight;
let width = clamp(popoverRect.width, parentRect.width, maxWith);
let height = popoverRect.height;
2019-04-10 13:47:23 +00:00
let left = parentRect.left + parentRect.width / 2 - width / 2;
left = clamp(left, margin, maxRight - width);
2017-10-04 14:02:53 +00:00
2019-04-10 13:47:23 +00:00
let top = parentRect.top + parentRect.height + arrowHeight;
let showTop = top + height > maxBottom;
if (showTop) top = parentRect.top - height - arrowHeight;
top = Math.max(top, margin);
if (showTop)
arrowStyle.bottom = `0`;
else
arrowStyle.top = `0`;
2017-02-01 09:05:15 +00:00
2019-04-10 05:20:23 +00:00
let arrowLeft = (parentRect.left - left) + parentRect.width / 2;
2019-04-10 13:47:23 +00:00
arrowLeft = clamp(arrowLeft, arrowHeight, width - arrowHeight);
2019-04-10 05:20:23 +00:00
arrowStyle.left = `${arrowLeft}px`;
2017-06-03 11:01:47 +00:00
style.top = `${top}px`;
style.left = `${left}px`;
style.width = `${width}px`;
2019-04-10 13:47:23 +00:00
if (height > maxHeight) style.height = `${maxHeight}px`;
2017-02-01 09:05:15 +00:00
}
2017-10-04 14:02:53 +00:00
onDocKeyDown(event) {
if (event.defaultPrevented) return;
if (event.keyCode == 27) { // Esc
event.preventDefault();
this.hide();
}
2017-02-01 09:05:15 +00:00
}
2017-10-04 14:02:53 +00:00
onMouseDown(event) {
this.lastMouseEvent = event;
2017-07-05 07:47:24 +00:00
}
onBgMouseDown(event) {
if (event != this.lastMouseEvent)
this.hide();
2017-07-05 07:47:24 +00:00
}
2017-10-04 14:02:53 +00:00
onFocusIn(event) {
this.lastFocusEvent = event;
2017-02-01 09:05:15 +00:00
}
2017-10-04 14:02:53 +00:00
onDocFocusIn(event) {
if (event !== this.lastFocusEvent)
this.hide();
}
}
Popover.$inject = ['$element', '$scope', '$timeout', '$transitions'];
ngModule.component('vnPopover', {
template: require('./popover.html'),
controller: Popover,
2018-10-18 07:24:20 +00:00
transclude: true
});