window.stagPopupsQueue = []; function showStagPopup(_key, _noAutoFocus) { /*$('html, body').addClass('no-scroll'); $(window.top.document.body).find('#stag_mcp_lhs').addClass('no-scroll');*/ let stagPopup = $('[stag-popup-key="' + _key + '"]'); if(stagPopup.is('.show')) return false; else { let zIndex = $('.stag-popup.show[stag-popup-key]').last().css('z-index'); if(zIndex) zIndex++; else zIndex = 100; stagPopup.css('z-index', zIndex); } stagPopup.addClass('show'); stagPopup.find('[moe][initialized]').removeAttr('initialized'); initMoes(); initFileInputs(); if(!_noAutoFocus) { window.setTimeout(function() { stagPopup.find('input[type="text"]:not([readonly]):visible,select:visible').first().focus(); }, 150); } stagPopupsQueue.push(stagPopup); return false; } function submitStagPopup(_form) { if(!_form[0].checkValidity()) { _form[0].reportValidity(); return false; } showMask(); $.post(_form.attr('action'), _form.serialize(), function(_data) { stagPopupsQueue = []; fastReload(); }); return false; } function closeStagPopup(_noEvent = false) { hideMoeFormMask(); if(!stagPopupsQueue.length) return false; let popup = stagPopupsQueue[stagPopupsQueue.length - 1]; let closeAll = !!popup.attr('close-all-with-self'); popup.removeClass('show'); stagPopupsQueue.splice(stagPopupsQueue.length - 1, 1); if(closeAll) { while(stagPopupsQueue.length) { closeStagPopup(true); } } else { if(popup.is('[update-parent]') && !_noEvent) { let hook = popup.attr('update-parent'); if(!!$.trim(hook) && hasMCHook(hook)) { runMCHook(hook) } else { if(stagPopupsQueue.length) { refreshDynamicStagPopup(); } else { fastReload(popup.is('[update-target]') ? popup.attr('update-target') : ''); return false; } } } } // remove from the DOM if(popup.is('.dynamic-popup')) popup.remove(); // if all closed if(!stagPopupsQueue.length) { $('html, body').removeClass('no-scroll'); $(window.top.document.body).find('#stag_mcp_lhs').removeClass('no-scroll'); if(!_noEvent) { $('body').trigger('stag-popup-closed'); } } return false; } function convertContentLinksForInPopupNavigation(popup) { popup.find('.stag-popup-content-inner').find('a').each(function() { let a = $(this); if(!(!a.attr('href') || a.is('[open-in-stag-popup]') || a.is('[native]') || a.attr('href') === '#' || a[0].onclick)) { a.attr('replace-in-stag-popup', 1); } }); } function openDynamicStagPopup(_url, initer, title, updateParent, style = '', replace = false, updateTarget = null) { let url = _url; if(url.indexOf('popupmode') === -1) { url += (url.indexOf('?') !== -1 ? '&' : '?') + 'popupmode=1'; } // close out any open inline visit-segment $('.note-section.visit-segment.edit').removeClass('edit'); showMask(); window.noMc = true; $.get(url, (_data) => { let popup = null; if(replace) { if(!stagPopupsQueue.length) { console.error('No stag-popup currently visible!'); return false; } popup = stagPopupsQueue[stagPopupsQueue.length - 1]; if(!popup.is('.dynamic-popup')) { console.error('Topmost stag-popup is not dynamic!'); return false; } popup.attr('stag-popup-key', url); } else { popup = $('.dynamic-popup[stag-popup-key="' + url + '"]'); if(!popup.length) { $('main.stag-content').append( '
' ); popup = $('.dynamic-popup[stag-popup-key="' + url + '"]'); } } popup.attr('mc-initer', initer); popup.find('.stag-popup-title>span').html(title); popup.find('.stag-popup-content-inner').html(_data); convertContentLinksForInPopupNavigation(popup); if(!replace) { if(updateParent) { popup.attr('update-parent', updateParent); } else { popup.removeAttr('update-parent'); } showStagPopup(url, true); if(updateTarget) { popup.attr('update-target', updateTarget); } } if(initer) runMCInitializer(initer); runMCInitializer('pro-suggest'); // not the place for this! Move to better place. initMoes(); hideMask(); initFileInputs(); }).fail(() => { toastr.error('Unable to open ' + _url); hideMask(); }); } function isDynamicStagPopupPresent() { if(!stagPopupsQueue.length) return false; let popup = stagPopupsQueue[stagPopupsQueue.length - 1]; if(popup.is('.dynamic-popup')) return true; return false; } function refreshDynamicStagPopup(_url = false, _target = null) { if(!stagPopupsQueue.length) return false; let popup = stagPopupsQueue[stagPopupsQueue.length - 1]; if(popup.is('.dynamic-popup')) { showMask(); window.noMc = true; if(_url) { popup.attr('stag-popup-key', _url); } let url = popup.attr('stag-popup-key'), initer = popup.attr('mc-initer'); $.get(url, (_data) => { if(_target) { _data = '