jellyfin-web/dashboard-ui/components/paperdialoghelper.js

163 lines
4.3 KiB
JavaScript
Raw Normal View History

2015-09-17 09:04:04 -07:00
(function (globalScope) {
function paperDialogHashHandler(dlg, hash, lockDocumentScroll) {
2015-09-17 09:04:04 -07:00
function onHashChange(e, data) {
data = data.state;
2015-09-29 10:35:23 -07:00
var isActive = data.hash == '#' + hash;
2015-09-17 09:04:04 -07:00
if (data.direction == 'back') {
if (dlg) {
2015-09-17 10:24:23 -07:00
if (!isActive) {
2015-09-17 09:04:04 -07:00
dlg.close();
dlg = null;
}
}
}
}
function onDialogClosed() {
if (lockDocumentScroll !== false) {
Dashboard.onPopupClose();
}
2015-09-17 14:26:06 -07:00
2015-09-17 09:04:04 -07:00
dlg = null;
2015-09-29 09:29:06 -07:00
if (enableHashChange()) {
$(window).off('navigate', onHashChange);
2015-09-17 09:04:04 -07:00
2015-09-29 09:29:06 -07:00
if (window.location.hash == '#' + hash) {
history.back();
}
2015-09-17 09:04:04 -07:00
}
}
var self = this;
$(dlg).on('iron-overlay-closed', onDialogClosed);
dlg.open();
if (lockDocumentScroll !== false) {
Dashboard.onPopupOpen();
}
2015-09-17 09:04:04 -07:00
2015-09-29 09:29:06 -07:00
if (enableHashChange()) {
window.location.hash = hash;
$(window).on('navigate', onHashChange);
}
}
2015-09-17 09:04:04 -07:00
2015-09-29 09:29:06 -07:00
function enableHashChange() {
// It's not firing popstate in response to hashbang changes
if ($.browser.msie) {
return false;
}
return true;
2015-09-17 09:04:04 -07:00
}
function openWithHash(dlg, hash, lockDocumentScroll) {
2015-09-17 09:04:04 -07:00
new paperDialogHashHandler(dlg, hash, lockDocumentScroll);
2015-09-17 09:04:04 -07:00
}
2015-09-29 09:29:06 -07:00
function close(dlg) {
if (enableHashChange()) {
2015-10-01 23:14:04 -07:00
if (dlg.opened) {
history.back();
}
2015-09-29 09:29:06 -07:00
} else {
dlg.close();
}
}
2015-10-13 12:22:45 -07:00
function createDialog(options) {
options = options || {};
2015-10-01 23:14:04 -07:00
var dlg = document.createElement('paper-dialog');
dlg.setAttribute('with-backdrop', 'with-backdrop');
dlg.setAttribute('role', 'alertdialog');
// without this safari will scroll the background instead of the dialog contents
// but not needed here since this is already on top of an existing dialog
dlg.setAttribute('modal', 'modal');
// seeing max call stack size exceeded in the debugger with this
dlg.setAttribute('noAutoFocus', 'noAutoFocus');
dlg.entryAnimation = 'scale-up-animation';
dlg.exitAnimation = 'fade-out-animation';
2015-10-13 12:22:45 -07:00
dlg.classList.add('popupEditor');
2015-10-13 22:46:11 -07:00
if (options.size == 'small') {
dlg.classList.add('small-paper-dialog');
}
else if (options.size == 'medium') {
2015-10-13 12:22:45 -07:00
dlg.classList.add('medium-paper-dialog');
} else {
dlg.classList.add('fullscreen-paper-dialog');
}
var theme = options.theme || 'b';
dlg.classList.add('ui-body-' + theme);
dlg.classList.add('background-theme-' + theme);
2015-10-01 23:14:04 -07:00
dlg.classList.add('smoothScrollY');
return dlg;
}
2015-10-08 10:28:26 -07:00
function positionTo(dlg, elem) {
2015-10-13 22:46:11 -07:00
2015-10-08 10:28:26 -07:00
var windowHeight = $(window).height();
// If the window height is under a certain amount, don't bother trying to position
// based on an element.
if (windowHeight >= 540) {
var pos = $(elem).offset();
pos.top += elem.offsetHeight / 2;
pos.left += elem.offsetWidth / 2;
// Account for margins
pos.top -= 24;
pos.left -= 24;
// Account for popup size - we can't predict this yet so just estimate
pos.top -= $(dlg).height() / 2;
pos.left -= $(dlg).width() / 2;
// Account for scroll position
pos.top -= $(window).scrollTop();
pos.left -= $(window).scrollLeft();
// Avoid showing too close to the bottom
pos.top = Math.min(pos.top, windowHeight - 300);
pos.left = Math.min(pos.left, $(window).width() - 300);
// Do some boundary checking
pos.top = Math.max(pos.top, 0);
pos.left = Math.max(pos.left, 0);
dlg.style.position = 'fixed';
dlg.style.left = pos.left + 'px';
dlg.style.top = pos.top + 'px';
}
}
2015-09-17 09:04:04 -07:00
globalScope.PaperDialogHelper = {
2015-09-29 09:29:06 -07:00
openWithHash: openWithHash,
2015-10-01 23:14:04 -07:00
close: close,
2015-10-08 10:28:26 -07:00
createDialog: createDialog,
positionTo: positionTo
2015-09-17 09:04:04 -07:00
};
})(this);