mirror of
https://github.com/zombieFox/nightTab.git
synced 2024-11-23 08:33:38 +01:00
73 lines
1.9 KiB
JavaScript
73 lines
1.9 KiB
JavaScript
var shade = (function() {
|
|
|
|
var previousShade = null;
|
|
|
|
var destroy = function() {
|
|
var all_shade = helper.eA(".shade");
|
|
if (all_shade[0]) {
|
|
for (var i = 0; i < all_shade.length; i++) {
|
|
all_shade[i].destroy();
|
|
};
|
|
};
|
|
};
|
|
|
|
var render = function(override) {
|
|
var options = {
|
|
action: null,
|
|
includeHeader: false
|
|
};
|
|
if (override) {
|
|
options = helper.applyOptions(options, override);
|
|
};
|
|
var _destroy_previousShade = function() {
|
|
if (previousShade != null) {
|
|
destroy();
|
|
};
|
|
};
|
|
var _render_shade = function() {
|
|
var body = helper.e("body");
|
|
var shade = document.createElement("div");
|
|
shade.setAttribute("class", "shade");
|
|
if (options.includeHeader) {
|
|
helper.addClass(shade, "m-shade-top");
|
|
};
|
|
shade.destroy = function() {
|
|
if (shade.classList.contains("is-opaque")) {
|
|
helper.removeClass(shade, "is-opaque");
|
|
helper.addClass(shade, "is-transparent");
|
|
} else {
|
|
shade.remove();
|
|
};
|
|
};
|
|
shade.addEventListener("transitionend", function(event, elapsed) {
|
|
if (event.propertyName === "opacity" && getComputedStyle(this).opacity == 0) {
|
|
this.parentElement.removeChild(this);
|
|
};
|
|
if (event.propertyName === "opacity" && getComputedStyle(this).opacity == 1) {
|
|
helper.addClass(this, "is-transition-end");
|
|
};
|
|
}.bind(shade), false);
|
|
shade.addEventListener("click", function() {
|
|
this.destroy();
|
|
if (options.action) {
|
|
options.action();
|
|
};
|
|
}, false);
|
|
previousShade = shade;
|
|
body.appendChild(shade);
|
|
getComputedStyle(shade).opacity;
|
|
helper.removeClass(shade, "is-transparent");
|
|
helper.addClass(shade, "is-opaque");
|
|
};
|
|
_destroy_previousShade();
|
|
_render_shade();
|
|
};
|
|
|
|
// exposed methods
|
|
return {
|
|
destroy: destroy,
|
|
render: render
|
|
};
|
|
|
|
})();
|