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

208 lines
3.7 KiB
JavaScript
Raw Normal View History

/**
2015-03-06 23:33:54 +00:00
* Class to handle popups.
**/
Htk.Popup = new Class
({
2015-03-06 23:33:54 +00:00
Extends: Htk.Widget
,Tag: 'htk-popup'
,Properties:
{
/**
* The popup child.
**/
child:
{
type: Htk.Widget
,set: function (x)
{
this._child = x;
this.setChildNode (x.getNode ());
}
,get: function ()
{
return this._child;
}
}
/**
* The popup child Node.
**/
,childNode:
{
type: Object
,set: function (x)
{
this._child = null;
this.setChildNode (x);
}
,get: function ()
{
return this.node.firstChild;
}
}
/**
* Indicates how the dialog must be displayed.
**/
,modal:
{
type: Boolean
,set: function (x)
{
this._modal = x;
}
,get: function ()
{
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
2015-11-09 08:14:33 +00:00
,initialize: function (props)
2015-03-06 23:33:54 +00:00
{
2015-11-09 08:14:33 +00:00
var div = this.createElement ('div');
div.className = 'htk-popup';
this.parent (props);
2015-03-06 23:33:54 +00:00
}
,setChild: function (child)
{
this.setChildNode (child.getNode ());
}
,setChildNode: function (childNode)
{
Vn.Node.removeChilds (this.node);
this.node.appendChild (childNode);
}
,show: function (parent)
{
2015-11-09 08:14:33 +00:00
this._parent = parent;
this.open ();
2015-03-06 23:33:54 +00:00
}
,isModal: function ()
2015-03-06 23:33:54 +00:00
{
return this._modal || Vn.isMobile ();
}
2015-07-21 14:16:07 +00:00
,open: function ()
{
this.node.addEventListener ('mousedown', this._stopEvent);
this._hideHandler = this.hide.bind (this);
document.addEventListener ('mousedown', this._hideHandler);
if (this.isModal ())
{
this._background = document.createElement ('div');
this._background.className = 'htk-background';
document.body.appendChild (this._background);
2015-02-08 15:38:38 +00:00
setTimeout (this._onOpacityTimeout.bind (this), 0);
Vn.Node.addClass (this.node, 'modal');
}
this._isOpen = true;
document.body.appendChild (this.node);
this.reset ();
setTimeout (this._onResetTimeout.bind (this), 200);
}
2015-07-07 15:27:47 +00:00
,_onOpacityTimeout: function ()
2015-07-07 15:27:47 +00:00
{
if (this._background)
this._background.style.opacity = 1;
}
,_onResetTimeout: function ()
{
this.reset ();
}
2015-07-07 15:27:47 +00:00
,reset: function ()
{
if (!this._isOpen)
return;
var margin = 20;
var dblMargin = margin * 2;
2015-07-07 15:27:47 +00:00
var width = this.node.offsetWidth;
var height = this.node.offsetHeight;
var innerWidth = Vn.Browser.getInnerWidth ();
var innerHeight = Vn.Browser.getInnerHeight ();
var style = this.node.style;
if (width + dblMargin > innerWidth)
{
width = innerWidth - dblMargin;
style.width = width +'px';
}
if (height + dblMargin > innerHeight)
{
height = innerHeight - dblMargin;
style.height = height +'px';
}
if (this.isModal ())
{
style.top = '50%';
style.left = '50%';
style.marginLeft = (-this.node.offsetWidth / 2) +'px';
style.marginTop = (-this.node.offsetHeight / 2) +'px';
}
else
{
var spacing = 4;
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) - Vn.Browser.getInnerWidth () + 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
}
2015-03-06 23:33:54 +00:00
,hide: function ()
{
if (!this._isOpen)
return;
if (this._background)
{
Vn.Node.remove (this._background);
Vn.Node.removeClass (this.node, 'modal');
}
2015-07-07 15:27:47 +00:00
this.node.removeEventListener ('mousedown', this._stopEvent)
document.removeEventListener ('mousedown', this._hideHandler);
2015-07-07 15:27:47 +00:00
Vn.Node.remove (this.node);
2015-11-09 08:14:33 +00:00
this._parent = null;
this._isOpen = false;
this.signalEmit ('closed');
}
,_stopEvent: function (e)
{
e.stopPropagation ();
}
});