0
1
Fork 0
hedera-web-mindshore/js/htk/popup/index.js

195 lines
3.6 KiB
JavaScript
Raw Normal View History

2022-06-06 08:53:59 +00:00
require('./style.scss');
2022-06-06 12:49:18 +00:00
var Component = require('vn/component');
2016-09-26 09:28:47 +00:00
/**
2015-03-06 23:33:54 +00:00
* Class to handle popups.
2022-05-26 06:08:31 +00:00
*/
2022-06-06 08:53:59 +00:00
module.exports = new Class({
2022-06-06 12:49:18 +00:00
Extends: Component
2015-03-06 23:33:54 +00:00
,Tag: 'htk-popup'
2022-06-06 08:53:59 +00:00
,Properties: {
/**
* The popup child.
2022-05-26 06:08:31 +00:00
*/
2022-06-06 08:53:59 +00:00
child: {
2022-06-06 12:49:18 +00:00
type: Component
2022-11-16 01:46:44 +00:00
,set(x) {
this._child = x;
2022-05-26 06:08:31 +00:00
this._setChildNode(x.node);
}
2022-11-16 01:46:44 +00:00
,get() {
return this._child;
}
}
/**
* The popup child Node.
2022-05-26 06:08:31 +00:00
*/
2022-06-06 08:53:59 +00:00
,childNode: {
type: Object
2022-11-16 01:46:44 +00:00
,set(x) {
this._child = null;
2022-05-26 06:08:31 +00:00
this._setChildNode(x);
}
2022-11-16 01:46:44 +00:00
,get() {
return this.node.firstChild;
}
}
/**
* Indicates how the dialog must be displayed.
2022-05-26 06:08:31 +00:00
*/
2022-06-06 08:53:59 +00:00
,modal: {
type: Boolean
2022-11-16 01:46:44 +00:00
,set(x) {
this._modal = x;
}
2022-11-16 01:46:44 +00:00
,get() {
return this._modal;
}
}
}
2015-03-06 23:33:54 +00:00
2015-11-09 08:14:33 +00:00
,_parent: null
,_modal: false
,_isOpen: false
,_child: null
2015-03-06 23:33:54 +00:00
2022-11-16 01:46:44 +00:00
,initialize(props) {
2022-05-26 06:08:31 +00:00
this._bgMouseDownHandler = this._bgMouseDown.bind(this);
2022-06-06 16:02:17 +00:00
Component.prototype.initialize.call(this, props);
2015-03-06 23:33:54 +00:00
}
2016-10-16 14:16:08 +00:00
2022-11-16 01:46:44 +00:00
,render() {
2022-06-06 17:13:57 +00:00
this.createRoot('div');
2016-10-16 14:16:08 +00:00
}
2015-03-06 23:33:54 +00:00
2022-11-16 01:46:44 +00:00
,_setChildNode(childNode) {
2022-05-26 06:08:31 +00:00
Vn.Node.removeChilds(this.node);
this.node.appendChild(childNode);
2015-03-06 23:33:54 +00:00
}
2022-11-16 01:46:44 +00:00
,show(parent, event) {
2015-11-09 08:14:33 +00:00
this._parent = parent;
2022-06-06 08:53:59 +00:00
this._lastEvent = event;
2022-05-26 06:08:31 +00:00
this.open();
2015-03-06 23:33:54 +00:00
}
2022-11-16 01:46:44 +00:00
,isModal() {
2022-11-12 12:06:55 +00:00
return this._modal || Vn.isMobile();
}
2015-07-21 14:16:07 +00:00
2022-11-16 01:46:44 +00:00
,open() {
2022-05-26 06:08:31 +00:00
if (this._isOpen) {
this.reset();
2016-05-02 13:05:49 +00:00
return;
}
2022-05-26 06:08:31 +00:00
this.node.addEventListener('mousedown', this._onMouseDown.bind(this));
2022-05-26 06:08:31 +00:00
if (this.isModal()) {
var bg = this._bg = this.createElement('div');
2016-05-04 14:36:51 +00:00
bg.className = 'htk-background';
2022-05-26 06:08:31 +00:00
bg.addEventListener('mousedown', this._bgMouseDownHandler);
Htk.Toast.pushTop(bg);
2022-06-07 08:19:29 +00:00
this.node.classList.add('modal');
2022-05-26 06:08:31 +00:00
bg.appendChild(this.node);
2016-05-04 14:36:51 +00:00
2022-05-26 06:08:31 +00:00
this.doc.body.appendChild(bg);
setTimeout(this._onOpacityTimeout.bind(this), 0);
} else {
this.doc.addEventListener('mousedown', this._bgMouseDownHandler);
this.doc.body.appendChild(this.node);
}
this._isOpen = true;
2022-05-26 06:08:31 +00:00
this.reset();
setTimeout(this._onResetTimeout.bind(this), 0);
}
2015-07-07 15:27:47 +00:00
2022-11-16 01:46:44 +00:00
,_onOpacityTimeout() {
2016-05-04 14:36:51 +00:00
if (this._bg)
this._bg.style.opacity = 1;
}
2022-11-16 01:46:44 +00:00
,_onResetTimeout() {
2022-05-26 06:08:31 +00:00
this.reset();
}
2015-07-07 15:27:47 +00:00
2022-11-16 01:46:44 +00:00
,reset() {
if (!this._isOpen)
return;
2016-10-30 22:48:18 +00:00
var node = this._node;
2016-10-30 22:48:18 +00:00
var style = node.style;
2016-05-04 14:36:51 +00:00
style.height = '';
style.width = '';
2022-06-07 08:19:29 +00:00
if (!this.isModal()) {
var margin = 20;
var dblMargin = margin * 2;
var width = node.offsetWidth;
var height = node.offsetHeight;
var innerWidth = window.innerWidth;
var innerHeight = window.innerHeight;
if (width + dblMargin > innerWidth) {
width = innerWidth - dblMargin;
style.width = width +'px';
}
if (height + dblMargin > innerHeight) {
height = innerHeight - dblMargin;
style.height = height +'px';
}
var spacing = 4;
2022-05-26 06:08:31 +00:00
var rect = this._parent.getBoundingClientRect();
var left = rect.left;
var top = rect.top + spacing + this._parent.offsetHeight;
2015-07-07 15:27:47 +00:00
if (left + width > innerWidth)
left -= (left + width) - window.innerWidth + margin;
if (top + height > innerHeight)
top -= height + this._parent.offsetHeight + spacing * 2;
2015-07-07 15:27:47 +00:00
if (left < 0)
left = margin;
if (top < 0)
top = margin;
style.top = (top) +'px';
style.left = (left) +'px';
}
2015-07-07 15:27:47 +00:00
}
2022-11-16 01:46:44 +00:00
,hide() {
if (!this._isOpen)
return;
2022-05-26 06:08:31 +00:00
if (this._bg) {
Htk.Toast.popTop();
Vn.Node.remove(this._bg);
Vn.Node.removeClass(this._node, 'modal');
2016-05-04 14:36:51 +00:00
this._bg = null;
2022-05-26 06:08:31 +00:00
} else
this.doc.removeEventListener('mousedown', this._bgMouseDownHandler);
2016-05-04 14:36:51 +00:00
2022-05-26 06:08:31 +00:00
Vn.Node.remove(this._node);
2015-11-09 08:14:33 +00:00
this._parent = null;
this._isOpen = false;
2022-05-30 01:30:33 +00:00
this.emit('closed');
}
2022-11-16 01:46:44 +00:00
,_bgMouseDown(e) {
2016-05-04 14:36:51 +00:00
if (e !== this._lastEvent)
2022-05-26 06:08:31 +00:00
this.hide();
2016-05-04 14:36:51 +00:00
this._lastEvent = null;
}
2022-11-16 01:46:44 +00:00
,_onMouseDown(e) {
2016-05-04 14:36:51 +00:00
this._lastEvent = e;
}
});