define(['dialogHelper', 'layoutManager', 'globalize', 'browser', 'emby-button', 'css!./actionsheet', 'material-icons', 'scrollStyles'], function (dialogHelper, layoutManager, globalize, browser) { function parentWithClass(elem, className) { while (!elem.classList || !elem.classList.contains(className)) { elem = elem.parentNode; if (!elem) { return null; } } return elem; } function getOffsets(elems) { var doc = document; var results = []; if (!doc) { return results; } var box; var elem; for (var i = 0, length = elems.length; i < length; i++) { elem = elems[i]; // Support: BlackBerry 5, iOS 3 (original iPhone) // If we don't have gBCR, just use 0,0 rather than error if (elem.getBoundingClientRect) { box = elem.getBoundingClientRect(); } else { box = { top: 0, left: 0 }; } results[i] = { top: box.top, left: box.left }; } return results; } function getPosition(options, dlg) { var windowHeight = window.innerHeight; var windowWidth = window.innerWidth; if (windowHeight < 540) { return null; } var pos = getOffsets([options.positionTo])[0]; pos.top += options.positionTo.offsetHeight / 2; pos.left += options.positionTo.offsetWidth / 2; var height = dlg.offsetHeight || 300; var width = dlg.offsetWidth || 160; // Account for popup size pos.top -= height / 2; pos.left -= width / 2; // Avoid showing too close to the bottom var overflowX = pos.left + width - windowWidth; var overflowY = pos.top + height - windowHeight; if (overflowX > 0) { pos.left -= (overflowX + 20); } if (overflowY > 0) { pos.top -= (overflowY + 20); } // Do some boundary checking pos.top = Math.max(pos.top, 10); pos.left = Math.max(pos.left, 10); return pos; } function addCenterFocus(dlg) { require(['scrollHelper'], function (scrollHelper) { scrollHelper.centerFocus.on(dlg.querySelector('.actionSheetScroller'), false); }); } function show(options) { // items // positionTo // showCancel // title var dialogOptions = { removeOnClose: true, enableHistory: options.enableHistory, scrollY: false }; var backButton = false; if (layoutManager.tv) { dialogOptions.size = 'fullscreen'; backButton = true; dialogOptions.autoFocus = true; } else { dialogOptions.modal = false; dialogOptions.entryAnimationDuration = 140; dialogOptions.exitAnimationDuration = 180; dialogOptions.autoFocus = false; } var dlg = dialogHelper.createDialog(dialogOptions); if (!layoutManager.tv) { dlg.classList.add('extraSpacing'); } dlg.classList.add('actionSheet'); var html = ''; html += '
'; html += options.text; html += '
'; } var scrollType = layoutManager.desktop ? 'smoothScrollY' : 'hiddenScrollY'; var style = (browser.noFlex || browser.firefox) ? 'max-height:400px;' : ''; // Admittedly a hack but right now the scrollbar is being factored into the width which is causing truncation if (options.items.length > 20) { var minWidth = window.innerWidth >= 300 ? 240 : 200; style += "min-width:" + minWidth + "px;"; } html += '