hedera-web/js/htk/toast.js

161 lines
3.0 KiB
JavaScript
Raw Normal View History

2015-03-06 23:33:54 +00:00
/**
* Class to show toast messages.
**/
2016-09-26 09:28:47 +00:00
module.exports =
2015-08-17 18:02:14 +00:00
{
maxMessages: 6
,timeout: 10 /* Seconds */
,_container: null
,_timeouts: null
2016-10-30 22:48:18 +00:00
,_topHeap: []
2015-03-06 23:33:54 +00:00
2015-08-17 18:02:14 +00:00
/**
* Shows a normal toast message.
*
* @param {String} message The message text
2015-08-17 18:02:14 +00:00
**/
,showMessage: function (message)
2015-03-06 23:33:54 +00:00
{
2015-08-17 18:02:14 +00:00
this._showText (message, 'message');
2015-03-06 23:33:54 +00:00
}
2015-08-17 18:02:14 +00:00
/**
* Shows a warning toast message.
*
* @param {String} message The message text
2015-08-17 18:02:14 +00:00
**/
,showWarning: function (message)
2015-03-06 23:33:54 +00:00
{
2015-08-17 18:02:14 +00:00
this._showText (message, 'warning');
2015-03-06 23:33:54 +00:00
}
2015-08-17 18:02:14 +00:00
/**
* Shows an error toast message.
*
* @param {String} message The message text
2015-08-17 18:02:14 +00:00
**/
,showError: function (message)
2015-03-06 23:33:54 +00:00
{
2015-08-17 18:02:14 +00:00
this._showText (message, 'error');
2015-03-06 23:33:54 +00:00
}
2016-10-30 22:48:18 +00:00
,pushTop: function (top)
{
this._topHeap.push (top);
this._refreshPosition ();
2016-10-30 22:48:18 +00:00
}
,popTop: function ()
{
var top = this._topHeap.pop ();
this._refreshPosition ();
return top;
}
,_refreshPosition: function ()
{
if (!this._container)
return;
var left;
var heapLen = this._topHeap.length;
if (heapLen > 0)
{
var top = this._topHeap[heapLen - 1];
var rect = top.getBoundingClientRect ();
left = (rect.left + parseInt (rect.width / 2) - window.pageXOffset) +'px';
}
else
left = '';
this._container.style.left = left;
2016-10-30 22:48:18 +00:00
}
2015-08-17 18:02:14 +00:00
/**
* Hides all currently displayed toast messages.
**/
,hide: function ()
2015-03-06 23:33:54 +00:00
{
2015-08-17 18:02:14 +00:00
if (!this._container)
return;
if (this._timeouts)
for (var i = 0; i < this._timeouts.length; i++)
clearTimeout (this._timeouts[i]);
this._timeouts = null;
document.removeEventListener ('mousedown', this.hideHandler);
Vn.Node.remove (this._container);
this._container = null;
this.nodes = [];
2015-03-06 23:33:54 +00:00
}
2015-08-17 18:02:14 +00:00
,_createContainer: function ()
{
2016-10-30 22:48:18 +00:00
if (!this._container)
{
var container = document.createElement ('div');
container.className = 'htk-toast';
document.body.appendChild (container);
2015-08-17 18:02:14 +00:00
2016-10-30 22:48:18 +00:00
this.hideHandler = this.hide.bind (this);
document.addEventListener ('mousedown', this.hideHandler);
2015-08-17 18:02:14 +00:00
2016-10-30 22:48:18 +00:00
this._timeouts = [];
this._container = container;
}
this._refreshPosition ();
2015-08-17 18:02:14 +00:00
}
,_showText: function (message, className)
2015-03-06 23:33:54 +00:00
{
2015-08-17 18:02:14 +00:00
this._createContainer ();
if (this._timeouts.length >= this.maxMessages)
this._onMessageTimeout ();
2016-10-30 22:48:18 +00:00
var toast = document.createElement ('div');
toast.className = className;
toast.addEventListener ('mousedown', this._onMessageMouseDown);
2015-08-17 18:02:14 +00:00
var textNode = document.createTextNode (message);
2016-10-30 22:48:18 +00:00
toast.appendChild (textNode);
2015-08-17 18:02:14 +00:00
2016-10-30 22:48:18 +00:00
this._container.appendChild (toast);
2015-08-17 18:02:14 +00:00
var timeoutId = setTimeout (this._onMessageTimeout.bind (this), this.timeout * 1000);
this._timeouts.push (timeoutId);
2016-10-30 22:48:18 +00:00
setTimeout (this._onShowToastTimeout.bind (this, toast), 50);
}
,_onShowToastTimeout: function (toast)
{
Vn.Node.addClass (toast, 'show');
2015-03-06 23:33:54 +00:00
}
2015-08-17 18:02:14 +00:00
,_onMessageTimeout: function ()
2015-03-06 23:33:54 +00:00
{
2015-08-17 18:02:14 +00:00
if (!this._container)
return;
var nodes = this._container.childNodes;
if (nodes.length > 0)
2015-03-15 12:44:57 +00:00
{
2015-08-17 18:02:14 +00:00
clearTimeout (this._timeouts.shift ());
Vn.Node.remove (nodes[0]);
2015-03-15 12:44:57 +00:00
}
2015-08-17 18:02:14 +00:00
if (nodes.length == 0)
this.hide ();
2015-03-06 23:33:54 +00:00
}
2015-08-17 18:02:14 +00:00
,_onMessageMouseDown: function (event)
2015-03-06 23:33:54 +00:00
{
event.stopPropagation ();
}
2015-08-17 18:02:14 +00:00
};