uawdijnntqw1x1x1
IP : 216.73.216.180
Hostname : xhost1.intravision.ru
Kernel : Linux xhost1.intravision.ru 3.16.0-7-amd64 #1 SMP Debian 3.16.59-1 (2018-10-03) x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
OS : Linux
PATH:
/
var
/
files
/
need-2-delete
/
.
/
mini-borishof.ru1
/
bitrix
/
js
/
.
/
main
/
.
/
.
/
core
/
core_popup.js
/
/
;(function(window) { if (BX.PopupWindowManager) return; BX.PopupWindowManager = { _popups : [], _currentPopup : null, create : function(uniquePopupId, bindElement, params) { var index = -1; if ( (index = this._getPopupIndex(uniquePopupId)) !== -1) return this._popups[index]; var popupWindow = new BX.PopupWindow(uniquePopupId, bindElement, params); BX.addCustomEvent(popupWindow, "onPopupShow", BX.delegate(this.onPopupShow, this)); BX.addCustomEvent(popupWindow, "onPopupClose", BX.delegate(this.onPopupClose, this)); BX.addCustomEvent(popupWindow, "onPopupDestroy", BX.delegate(this.onPopupDestroy, this)); this._popups.push(popupWindow); return popupWindow; }, onPopupShow : function(popupWindow) { if (this._currentPopup !== null) this._currentPopup.close(); this._currentPopup = popupWindow; }, onPopupClose : function(popupWindow) { this._currentPopup = null; }, onPopupDestroy : function(popupWindow) { var index = -1; if ( (index = this._getPopupIndex(popupWindow.uniquePopupId)) !== -1) this._popups = BX.util.deleteFromArray(this._popups, index); }, getCurrentPopup : function() { return this._currentPopup; }, isPopupExists : function(uniquePopupId) { return this._getPopupIndex(uniquePopupId) !== -1 }, _getPopupIndex : function(uniquePopupId) { var index = -1; for (var i = 0; i < this._popups.length; i++) if (this._popups[i].uniquePopupId == uniquePopupId) return i; return index; } }; BX.PopupWindow = function(uniquePopupId, bindElement, params) { BX.onCustomEvent("onPopupWindowInit", [uniquePopupId, bindElement, params ]); this.uniquePopupId = uniquePopupId; this.params = params || {}; this.params.zIndex = parseInt(this.params.zIndex); this.params.zIndex = isNaN(this.params.zIndex) ? 0 : this.params.zIndex; this.buttons = this.params.buttons && BX.type.isArray(this.params.buttons) ? this.params.buttons : []; this.offsetTop = BX.PopupWindow.getOption("offsetTop"); this.offsetLeft = BX.PopupWindow.getOption("offsetLeft"); this.firstShow = false; this.bordersWidth = 20; this.bindElementPos = null; this.closeIcon = null; this.angle = null; this.overlay = null; this.titleBar = null; this.bindOptions = typeof(this.params.bindOptions) == "object" ? this.params.bindOptions : {}; this.autoHide = this.params.autoHide === true; this.isAutoHideBinded = false; this.closeByEsc = !!this.params.closeByEsc; this.isCloseByEscBinded = false; if (this.params.parentPopup instanceof BX.PopupWindow) { this.parentPopup = this.params.parentPopup; this.appendContainer = this.params.parentPopup.contentContainer; this.params.offsetTop = (this.params.offsetTop? this.params.offsetTop: 0) - (BX.PopupWindow.fullscreenStatus? 0: this.parentPopup.popupContainer.offsetTop); this.params.offsetLeft = (this.params.offsetLeft? this.params.offsetLeft: 0) - (BX.PopupWindow.fullscreenStatus? 0: this.parentPopup.popupContainer.offsetLeft); } else { this.parentPopup = null; this.appendContainer = document.body; } this.dragged = false; this.dragPageX = 0; this.dragPageY = 0; if (this.params.events) { for (var eventName in this.params.events) BX.addCustomEvent(this, eventName, this.params.events[eventName]); } if (params.darkMode) { BX.addClass(this.popupContainer, 'popup-window-dark'); } var popupClassName = "popup-window"; /*if (params.lightShadow) popupClassName += " popup-window-light";*/ if (params.contentColor && BX.type.isNotEmptyString(params.contentColor)) popupClassName += " popup-window-content-" + params.contentColor; if (params.contentNoPaddings) popupClassName += " popup-window-content-no-paddings"; if (params.noAllPaddings) popupClassName += " popup-window-no-paddings"; if (params.titleBar) popupClassName += " popup-window-with-titlebar"; if (params.className && BX.type.isNotEmptyString(params.className)) popupClassName += " " + params.className; if (params.darkMode) popupClassName += ' popup-window-dark'; this.popupContainer = document.createElement("DIV"); var titleBarID = 'popup-window-titlebar-' + uniquePopupId; if(params.titleBar) { this.titleBar = BX.create('div', { props : { className : 'popup-window-titlebar', id : titleBarID } }); } if (params.closeIcon) { this.closeIcon = BX.create("a", { props : { className: "popup-window-close-icon" + (params.titleBar ? " popup-window-titlebar-close-icon" : ""), href : ""}, style : (typeof(params.closeIcon) == "object" ? params.closeIcon : {} ), events : { click : BX.proxy(this._onCloseIconClick, this) } }); if (BX.browser.IsIE()) BX.adjust(this.closeIcon, { attrs: { hidefocus: "true" } }); } this.contentContainer = BX.create('div',{ props:{ id: 'popup-window-content-' + uniquePopupId, className: 'popup-window-content' } }); BX.adjust(this.popupContainer, { props : { id : uniquePopupId, className : popupClassName }, style : { zIndex: this.getZindex(), position: "absolute", display: "none", top: "0px", left: "0px" }, children : [this.titleBar, this.contentContainer, this.closeIcon] }); this.appendContainer.appendChild(this.popupContainer); this.buttonsContainer = null; if (params.angle) this.setAngle(params.angle); if (params.overlay) this.setOverlay(params.overlay); this.setOffset(this.params); this.setBindElement(bindElement); this.setTitleBar(this.params.titleBar); this.setContent(this.params.content); this.setButtons(this.params.buttons); if (this.params.bindOnResize !== false) { BX.bind(window, "resize", BX.proxy(this._onResizeWindow, this)); } }; BX.PopupWindow.prototype.setContent = function(content) { if (!this.contentContainer || !content) return; if (BX.type.isElementNode(content)) { BX.cleanNode(this.contentContainer); this.contentContainer.appendChild(content.parentNode ? content.parentNode.removeChild(content) : content ); content.style.display = "block"; } else if (BX.type.isString(content)) { this.contentContainer.innerHTML = content; } else this.contentContainer.innerHTML = " "; }; BX.PopupWindow.prototype.setButtons = function(buttons) { this.buttons = buttons && BX.type.isArray(buttons) ? buttons : []; if (this.buttonsContainer) BX.remove(this.buttonsContainer); if (this.buttons.length > 0 && this.contentContainer) { var newButtons = []; for (var i = 0; i < this.buttons.length; i++) { var button = this.buttons[i]; if (button == null || !BX.is_subclass_of(button, BX.PopupWindowButton)) continue; button.popupWindow = this; newButtons.push(button.render()); } this.buttonsContainer = this.contentContainer.parentNode.appendChild( BX.create("div",{ props : { className : "popup-window-buttons" }, children : newButtons }) ); } }; BX.PopupWindow.prototype.setBindElement = function(bindElement) { if (!bindElement || typeof(bindElement) != "object") return; if (BX.type.isDomNode(bindElement) || (BX.type.isNumber(bindElement.top) && BX.type.isNumber(bindElement.left))) this.bindElement = bindElement; else if (BX.type.isNumber(bindElement.clientX) && BX.type.isNumber(bindElement.clientY)) { BX.fixEventPageXY(bindElement); this.bindElement = { left : bindElement.pageX, top : bindElement.pageY, bottom : bindElement.pageY }; } }; BX.PopupWindow.prototype.getBindElementPos = function(bindElement) { if (BX.type.isDomNode(bindElement)) { return BX.pos(bindElement, false); } else if (bindElement && typeof(bindElement) == "object") { if (!BX.type.isNumber(bindElement.bottom)) bindElement.bottom = bindElement.top; return bindElement; } else { var windowSize = BX.GetWindowInnerSize(); var windowScroll = BX.GetWindowScrollPos(); var popupWidth = this.popupContainer.offsetWidth; var popupHeight = this.popupContainer.offsetHeight; this.bindOptions.forceTop = true; return { left : windowSize.innerWidth/2 - popupWidth/2 + windowScroll.scrollLeft, top : windowSize.innerHeight/2 - popupHeight/2 + windowScroll.scrollTop, bottom : windowSize.innerHeight/2 - popupHeight/2 + windowScroll.scrollTop, //for optimisation purposes windowSize : windowSize, windowScroll : windowScroll, popupWidth : popupWidth, popupHeight : popupHeight }; } }; BX.PopupWindow.prototype.setAngle = function(params) { var className = "popup-window-angly"; if (this.angle == null) { var position = this.bindOptions.position && this.bindOptions.position == "top" ? "bottom" : "top"; var angleMinLeft = BX.PopupWindow.getOption(position == "top" ? "angleMinTop" : "angleMinBottom"); var defaultOffset = BX.type.isNumber(params.offset) ? params.offset : 0; var angleLeftOffset = BX.PopupWindow.getOption("angleLeftOffset", null); if (defaultOffset > 0 && BX.type.isNumber(angleLeftOffset)) defaultOffset += angleLeftOffset - BX.PopupWindow.defaultOptions.angleLeftOffset; this.angle = { element : BX.create("div", { props : { className: className + " " + className +"-" + position }}), position : position, offset : 0, defaultOffset : Math.max(defaultOffset, angleMinLeft) //Math.max(BX.type.isNumber(params.offset) ? params.offset : 0, angleMinLeft) }; this.popupContainer.appendChild(this.angle.element); } if (typeof(params) == "object" && params.position && BX.util.in_array(params.position, ["top", "right", "bottom", "left", "hide"])) { BX.removeClass(this.angle.element, className + "-" + this.angle.position); BX.addClass(this.angle.element, className + "-" + params.position); this.angle.position = params.position; } if (typeof(params) == "object" && BX.type.isNumber(params.offset)) { var offset = params.offset; var minOffset, maxOffset; if (this.angle.position == "top") { minOffset = BX.PopupWindow.getOption("angleMinTop"); maxOffset = this.popupContainer.offsetWidth - BX.PopupWindow.getOption("angleMaxTop"); maxOffset = maxOffset < minOffset ? Math.max(minOffset, offset) : maxOffset; this.angle.offset = Math.min(Math.max(minOffset, offset), maxOffset); this.angle.element.style.left = this.angle.offset + "px"; this.angle.element.style.marginLeft = 0; } else if (this.angle.position == "bottom") { minOffset = BX.PopupWindow.getOption("angleMinBottom"); maxOffset = this.popupContainer.offsetWidth - BX.PopupWindow.getOption("angleMaxBottom"); maxOffset = maxOffset < minOffset ? Math.max(minOffset, offset) : maxOffset; this.angle.offset = Math.min(Math.max(minOffset, offset), maxOffset); this.angle.element.style.marginLeft = this.angle.offset + "px"; this.angle.element.style.left = 0; } else if (this.angle.position == "right") { minOffset = BX.PopupWindow.getOption("angleMinRight"); maxOffset = this.popupContainer.offsetHeight - BX.PopupWindow.getOption("angleMaxRight"); maxOffset = maxOffset < minOffset ? Math.max(minOffset, offset) : maxOffset; this.angle.offset = Math.min(Math.max(minOffset, offset), maxOffset); this.angle.element.style.top = this.angle.offset + "px"; } else if (this.angle.position == "left") { minOffset = BX.PopupWindow.getOption("angleMinLeft"); maxOffset = this.popupContainer.offsetHeight - BX.PopupWindow.getOption("angleMaxLeft"); maxOffset = maxOffset < minOffset ? Math.max(minOffset, offset) : maxOffset; this.angle.offset = Math.min(Math.max(minOffset, offset), maxOffset); this.angle.element.style.top = this.angle.offset + "px"; } } }; BX.PopupWindow.prototype.isTopAngle = function() { return this.angle != null && this.angle.position == "top"; }; BX.PopupWindow.prototype.isBottomAngle = function() { return this.angle != null && this.angle.position == "bottom"; }; BX.PopupWindow.prototype.isTopOrBottomAngle = function() { return this.angle != null && BX.util.in_array(this.angle.position, ["top", "bottom"]); }; BX.PopupWindow.prototype.getAngleHeight = function() { return (this.isTopOrBottomAngle() ? BX.PopupWindow.getOption("angleTopOffset") : 0); }; BX.PopupWindow.prototype.setOffset = function(params) { if (typeof(params) != "object") return; if (params.offsetLeft && BX.type.isNumber(params.offsetLeft)) this.offsetLeft = params.offsetLeft + BX.PopupWindow.getOption("offsetLeft"); if (params.offsetTop && BX.type.isNumber(params.offsetTop)) this.offsetTop = params.offsetTop + BX.PopupWindow.getOption("offsetTop"); }; BX.PopupWindow.prototype.setTitleBar = function(params) { if (!this.titleBar) return; if (typeof(params) == "object" && BX.type.isDomNode(params.content)) { this.titleBar.innerHTML = ""; this.titleBar.appendChild(params.content); } else if (typeof(params) == "string") { this.titleBar.innerHTML = ""; this.titleBar.appendChild( BX.create("span", { props : { className: "popup-window-titlebar-text" }, text : params }) ); } if (this.params.draggable) { this.titleBar.style.cursor = "move"; BX.bind(this.titleBar, "mousedown", BX.proxy(this._startDrag, this)); } }; BX.PopupWindow.prototype.setClosingByEsc = function(enable) { enable = !!enable; if (enable) { this.closeByEsc = true; if (!this.isCloseByEscBinded) { BX.bind(document, "keyup", BX.proxy(this._onKeyUp, this)); this.isCloseByEscBinded = true; } } else { this.closeByEsc = false; if (this.isCloseByEscBinded) { BX.unbind(document, "keyup", BX.proxy(this._onKeyUp, this)); this.isCloseByEscBinded = false; } } }; BX.PopupWindow.prototype.setAutoHide = function(enable) { enable = enable !== false; if (enable) { this.autoHide = true; if (this.isShown()) { this.bindAutoHide(); } } else { this.autoHide = false; this.unbindAutoHide(); } }; BX.PopupWindow.prototype.bindAutoHide = function() { if (!this.isAutoHideBinded) { this.isAutoHideBinded = true; BX.bind(this.popupContainer, "click", this.cancelBubble); BX.bind(document, "click", BX.proxy(this.close, this)); } }; BX.PopupWindow.prototype.unbindAutoHide = function() { if (this.isAutoHideBinded) { this.isAutoHideBinded = false; BX.unbind(this.popupContainer, "click", this.cancelBubble); BX.unbind(document, "click", BX.proxy(this.close, this)); } }; BX.PopupWindow.prototype.setOverlay = function(params) { if (this.overlay == null) { this.overlay = { element : BX.create("div", { props : { className: "popup-window-overlay", id : "popup-window-overlay-" + this.uniquePopupId } }) }; this.adjustOverlayZindex(); this.resizeOverlay(); this.appendContainer.appendChild(this.overlay.element); } if (params && params.opacity && BX.type.isNumber(params.opacity) && params.opacity >= 0 && params.opacity <= 100) { if (BX.browser.IsIE() && !BX.browser.IsIE9()) this.overlay.element.style.filter = "alpha(opacity=" + params.opacity +")"; else { this.overlay.element.style.filter = "none"; this.overlay.element.style.opacity = parseFloat(params.opacity/100).toPrecision(3); } } if (params && params.backgroundColor) this.overlay.element.style.backgroundColor = params.backgroundColor; }; BX.PopupWindow.prototype.removeOverlay = function() { if (this.overlay != null && this.overlay.element != null) BX.remove(this.overlay.element); this.overlay = null; }; BX.PopupWindow.prototype.hideOverlay = function() { if (this.overlay != null && this.overlay.element != null) this.overlay.element.style.display = "none"; }; BX.PopupWindow.prototype.showOverlay = function() { if (this.overlay != null && this.overlay.element != null) this.overlay.element.style.display = "block"; }; BX.PopupWindow.prototype.resizeOverlay = function() { if (this.overlay != null && this.overlay.element != null) { if (this.parentPopup) { this.overlay.element.style.width = this.parentPopup.popupContainer.offsetWidth + "px"; this.overlay.element.style.height = this.parentPopup.popupContainer.offsetHeight + "px"; } else { var windowSize = BX.GetWindowScrollSize(); var scrollHeight = Math.max( document.body.scrollHeight, document.documentElement.scrollHeight, document.body.offsetHeight, document.documentElement.offsetHeight, document.body.clientHeight, document.documentElement.clientHeight ); this.overlay.element.style.width = windowSize.scrollWidth + "px"; this.overlay.element.style.height = scrollHeight + "px"; } } }; BX.PopupWindow.prototype.getZindex = function() { if (this.overlay != null) return BX.PopupWindow.getOption("popupOverlayZindex") + this.params.zIndex; else return BX.PopupWindow.getOption("popupZindex") + this.params.zIndex; }; BX.PopupWindow.prototype.adjustOverlayZindex = function() { if (this.overlay != null && this.overlay.element != null) { this.overlay.element.style.zIndex = parseInt(this.popupContainer.style.zIndex) - 1; } }; BX.PopupWindow.prototype.show = function() { if (!this.firstShow) { BX.onCustomEvent(this, "onPopupFirstShow", [this]); this.firstShow = true; } BX.onCustomEvent(this, "onPopupShow", [this]); this.showOverlay(); this.popupContainer.style.display = "block"; this.adjustPosition(); BX.onCustomEvent(this, "onAfterPopupShow", [this]); if (this.closeByEsc && !this.isCloseByEscBinded) { BX.bind(document, "keyup", BX.proxy(this._onKeyUp, this)); this.isCloseByEscBinded = true; } if (this.autoHide && !this.isAutoHideBinded) { setTimeout( BX.proxy(function() { if (this.isShown()) { this.bindAutoHide(); } }, this), 100 ); } }; BX.PopupWindow.prototype.isShown = function() { return this.popupContainer.style.display == "block"; }; BX.PopupWindow.prototype.cancelBubble = function(event) { if(!event) event = window.event; if (event.stopPropagation) event.stopPropagation(); else event.cancelBubble = true; }; BX.PopupWindow.prototype.close = function(event) { if (!this.isShown()) return; if (event && !(BX.getEventButton(event)&BX.MSLEFT)) return true; BX.onCustomEvent(this, "onPopupClose", [this, event]); this.hideOverlay(); this.popupContainer.style.display = "none"; if (this.isCloseByEscBinded) { BX.unbind(document, "keyup", BX.proxy(this._onKeyUp, this)); this.isCloseByEscBinded = false; } setTimeout(BX.proxy(this._close, this), 0); }; BX.PopupWindow.prototype._close = function() { if (this.autoHide) { this.unbindAutoHide(); } }; BX.PopupWindow.prototype._onCloseIconClick = function(event) { event = event || window.event; this.close(event); BX.PreventDefault(event); }; BX.PopupWindow.prototype._onKeyUp = function(event) { event = event || window.event; if (event.keyCode == 27) { _checkEscPressed(this.getZindex(), BX.proxy(this.close, this)); } }; BX.PopupWindow.prototype.destroy = function() { BX.onCustomEvent(this, "onPopupDestroy", [this]); BX.unbindAll(this); BX.unbind(document, "keyup", BX.proxy(this._onKeyUp, this)); BX.unbind(document, "click", BX.proxy(this.close, this)); BX.unbind(document, "mousemove", BX.proxy(this._moveDrag, this)); BX.unbind(document, "mouseup", BX.proxy(this._stopDrag, this)); BX.unbind(window, "resize", BX.proxy(this._onResizeWindow, this)); BX.remove(this.popupContainer); this.removeOverlay(); }; BX.PopupWindow.prototype.enterFullScreen = function() { if (BX.PopupWindow.fullscreenStatus) { if (document.cancelFullScreen) document.cancelFullScreen(); else if (document.mozCancelFullScreen) document.mozCancelFullScreen(); else if (document.webkitCancelFullScreen) document.webkitCancelFullScreen(); } else { if (BX.browser.IsChrome() || BX.browser.IsSafari()) { this.contentContainer.webkitRequestFullScreen(this.contentContainer.ALLOW_KEYBOARD_INPUT); BX.bind(window, "webkitfullscreenchange", this.fullscreenBind = BX.proxy(this.eventFullScreen, this)); } else if (BX.browser.IsFirefox()) { this.contentContainer.mozRequestFullScreen(this.contentContainer.ALLOW_KEYBOARD_INPUT); BX.bind(window, "mozfullscreenchange", this.fullscreenBind = BX.proxy(this.eventFullScreen, this)); } } }; BX.PopupWindow.prototype.eventFullScreen = function(event) { if (BX.PopupWindow.fullscreenStatus) { if (BX.browser.IsChrome() || BX.browser.IsSafari()) BX.unbind(window, "webkitfullscreenchange", this.fullscreenBind); else if (BX.browser.IsFirefox()) BX.unbind(window, "mozfullscreenchange", this.fullscreenBind); BX.removeClass(this.contentContainer, 'popup-window-fullscreen', [this.contentContainer]); BX.PopupWindow.fullscreenStatus = false; BX.onCustomEvent(this, "onPopupFullscreenLeave"); this.adjustPosition(); } else { BX.addClass(this.contentContainer, 'popup-window-fullscreen'); BX.PopupWindow.fullscreenStatus = true; BX.onCustomEvent(this, "onPopupFullscreenEnter", [this.contentContainer]); this.adjustPosition(); } }; BX.PopupWindow.prototype.adjustPosition = function(bindOptions) { if (bindOptions && typeof(bindOptions) == "object") this.bindOptions = bindOptions; var bindElementPos = this.getBindElementPos(this.bindElement); if (!this.bindOptions.forceBindPosition && this.bindElementPos != null && bindElementPos.top == this.bindElementPos.top && bindElementPos.left == this.bindElementPos.left ) { return; } this.bindElementPos = bindElementPos; var windowSize = bindElementPos.windowSize ? bindElementPos.windowSize : BX.GetWindowInnerSize(); var windowScroll = bindElementPos.windowScroll ? bindElementPos.windowScroll : BX.GetWindowScrollPos(); var popupWidth = bindElementPos.popupWidth ? bindElementPos.popupWidth : this.popupContainer.offsetWidth; var popupHeight = bindElementPos.popupHeight ? bindElementPos.popupHeight : this.popupContainer.offsetHeight; var angleTopOffset = BX.PopupWindow.getOption("angleTopOffset"); var left = this.bindElementPos.left + this.offsetLeft - (this.isTopOrBottomAngle() ? BX.PopupWindow.getOption("angleLeftOffset") : 0); if ( !this.bindOptions.forceLeft && (left + popupWidth + this.bordersWidth) >= (windowSize.innerWidth + windowScroll.scrollLeft) && (windowSize.innerWidth + windowScroll.scrollLeft - popupWidth - this.bordersWidth) > 0) { var bindLeft = left; left = windowSize.innerWidth + windowScroll.scrollLeft - popupWidth - this.bordersWidth; if (this.isTopOrBottomAngle()) { this.setAngle({ offset : bindLeft - left + this.angle.defaultOffset}); } } else if (this.isTopOrBottomAngle()) { this.setAngle({ offset : this.angle.defaultOffset + (left < 0 ? left : 0) }); } if (left < 0) left = 0; var top = 0; if (this.bindOptions.position && this.bindOptions.position == "top") { top = this.bindElementPos.top - popupHeight - this.offsetTop - (this.isBottomAngle() ? angleTopOffset : 0); if (top < 0 || (!this.bindOptions.forceTop && top < windowScroll.scrollTop)) { top = this.bindElementPos.bottom + this.offsetTop; if (this.angle != null) { top += angleTopOffset; this.setAngle({ position: "top"}); } } else if (this.isTopAngle()) { top = top - angleTopOffset + BX.PopupWindow.getOption("positionTopXOffset"); this.setAngle({ position: "bottom"}); } else { top += BX.PopupWindow.getOption("positionTopXOffset"); } } else { top = this.bindElementPos.bottom + this.offsetTop + this.getAngleHeight(); if ( !this.bindOptions.forceTop && (top + popupHeight) > (windowSize.innerHeight + windowScroll.scrollTop) && (this.bindElementPos.top - popupHeight - this.getAngleHeight()) >= 0) //Can we place the PopupWindow above the bindElement? { //The PopupWindow doesn't place below the bindElement. We should place it above. top = this.bindElementPos.top - popupHeight; if (this.isTopOrBottomAngle()) { top -= angleTopOffset; this.setAngle({ position: "bottom"}); } top += BX.PopupWindow.getOption("positionTopXOffset"); } else if (this.isBottomAngle()) { top += angleTopOffset; this.setAngle({ position: "top"}); } } if (!this.parentPopup && top < 0) top = 0; BX.adjust(this.popupContainer, { style: { top: top + "px", left: left + "px", zIndex: this.getZindex() }}); this.adjustOverlayZindex(); }; BX.PopupWindow.prototype._onResizeWindow = function(event) { if (this.isShown()) { this.adjustPosition(); if (this.overlay != null) this.resizeOverlay(); } }; BX.PopupWindow.prototype.move = function(offsetX, offsetY) { var left = parseInt(this.popupContainer.style.left) + offsetX; var top = parseInt(this.popupContainer.style.top) + offsetY; if (typeof(this.params.draggable) == "object" && this.params.draggable.restrict) { //Left side if (!this.parentPopup && left < 0) left = 0; //Right side var scrollSize = BX.GetWindowScrollSize(); var floatWidth = this.popupContainer.offsetWidth; var floatHeight = this.popupContainer.offsetHeight; if (left > (scrollSize.scrollWidth - floatWidth)) left = scrollSize.scrollWidth - floatWidth; if (top > (scrollSize.scrollHeight - floatHeight)) top = scrollSize.scrollHeight - floatHeight; //Top side if (!this.parentPopup && top < 0) top = 0; } this.popupContainer.style.left = left + "px"; this.popupContainer.style.top = top + "px"; }; BX.PopupWindow.prototype._startDrag = function(event) { event = event || window.event; BX.fixEventPageXY(event); this.dragPageX = event.pageX; this.dragPageY = event.pageY; this.dragged = false; BX.bind(document, "mousemove", BX.proxy(this._moveDrag, this)); BX.bind(document, "mouseup", BX.proxy(this._stopDrag, this)); if (document.body.setCapture) document.body.setCapture(); //document.onmousedown = BX.False; document.body.ondrag = BX.False; document.body.onselectstart = BX.False; document.body.style.cursor = "move"; document.body.style.MozUserSelect = "none"; this.popupContainer.style.MozUserSelect = "none"; return BX.PreventDefault(event); }; BX.PopupWindow.prototype._moveDrag = function(event) { event = event || window.event; BX.fixEventPageXY(event); if(this.dragPageX == event.pageX && this.dragPageY == event.pageY) return; this.move((event.pageX - this.dragPageX), (event.pageY - this.dragPageY)); this.dragPageX = event.pageX; this.dragPageY = event.pageY; if (!this.dragged) { BX.onCustomEvent(this, "onPopupDragStart"); this.dragged = true; } BX.onCustomEvent(this, "onPopupDrag"); }; BX.PopupWindow.prototype._stopDrag = function(event) { if(document.body.releaseCapture) document.body.releaseCapture(); BX.unbind(document, "mousemove", BX.proxy(this._moveDrag, this)); BX.unbind(document, "mouseup", BX.proxy(this._stopDrag, this)); //document.onmousedown = null; document.body.ondrag = null; document.body.onselectstart = null; document.body.style.cursor = ""; document.body.style.MozUserSelect = ""; this.popupContainer.style.MozUserSelect = ""; BX.onCustomEvent(this, "onPopupDragEnd"); this.dragged = false; return BX.PreventDefault(event); }; BX.PopupWindow.options = {}; BX.PopupWindow.defaultOptions = { angleLeftOffset : 40, /*left offset for popup about target */ positionTopXOffset : -11, /* when popup position is 'top' offset distance between popup body and target node */ angleTopOffset : 10, /* offset distance between popup body and target node if use angle, sum with positionTopXOffset */ popupZindex : 1000, popupOverlayZindex : 1100, angleMinLeft : 10, angleMaxLeft : 10, angleMinRight : 10, angleMaxRight : 10, angleMinBottom : 23, /**/ angleMaxBottom : 25, angleMinTop : 23, angleMaxTop : 25, offsetLeft : 0, offsetTop: 0 }; BX.PopupWindow.setOptions = function(options) { if (!options || typeof(options) != "object") return; for (var option in options) BX.PopupWindow.options[option] = options[option]; }; BX.PopupWindow.getOption = function(option, defaultValue) { if (typeof(BX.PopupWindow.options[option]) != "undefined") return BX.PopupWindow.options[option]; else if (typeof(defaultValue) != "undefined") return defaultValue; else return BX.PopupWindow.defaultOptions[option]; }; /*========================================Buttons===========================================*/ BX.PopupWindowButton = function(params) { this.popupWindow = null; this.params = params || {}; this.text = this.params.text || ""; this.id = this.params.id || ""; this.className = this.params.className || ""; this.events = this.params.events || {}; this.contextEvents = {}; for (var eventName in this.events) this.contextEvents[eventName] = BX.proxy(this.events[eventName], this); this.buttonNode = BX.create( "span", { props : { className : "popup-window-button" + (this.className.length > 0 ? " " + this.className : ""), id : this.id }, events : this.contextEvents, text : this.text } ); }; BX.PopupWindowButton.prototype.render = function() { return this.buttonNode; }; BX.PopupWindowButton.prototype.setName = function(name) { this.text = name || ""; if (this.buttonNode) { BX.cleanNode(this.buttonNode); BX.adjust(this.buttonNode, { text : this.text} ); } }; BX.PopupWindowButton.prototype.setClassName = function(className) { if (this.buttonNode) { if (BX.type.isString(this.className) && (this.className != '')) BX.removeClass(this.buttonNode, this.className); BX.addClass(this.buttonNode, className) } this.className = className; }; BX.PopupWindowButtonLink = function(params) { BX.PopupWindowButtonLink.superclass.constructor.apply(this, arguments); this.buttonNode = BX.create( "span", { props : { className : "popup-window-button popup-window-button-link" + (this.className.length > 0 ? " " + this.className : ""), id : this.id }, text : this.text, events : this.contextEvents } ); }; BX.extend(BX.PopupWindowButtonLink, BX.PopupWindowButton); BX.PopupMenu = { Data : {}, currentItem : null, show : function(id, bindElement, menuItems, params) { if (this.currentItem !== null) { this.currentItem.popupWindow.close(); } this.currentItem = this.create(id, bindElement, menuItems, params); this.currentItem.popupWindow.show(); }, create : function(id, bindElement, menuItems, params) { if (!this.Data[id]) { this.Data[id] = new BX.PopupMenuWindow(id, bindElement, menuItems, params); } return this.Data[id]; }, getCurrentMenu : function() { return this.currentItem; }, getMenuById : function(id) { return this.Data[id] ? this.Data[id] : null; }, destroy : function(id) { var menu = this.getMenuById(id); if (menu) { if (this.currentItem == menu) { this.currentItem = null; } menu.popupWindow.destroy(); delete this.Data[id]; } } }; BX.PopupMenuWindow = function(id, bindElement, menuItems, params) { this.id = id; this.bindElement = bindElement; this.menuItems = []; this.itemsContainer = null; if (menuItems && BX.type.isArray(menuItems)) { for (var i = 0; i < menuItems.length; i++) { this.__addMenuItem(menuItems[i], null); } } this.params = params && typeof(params) == "object" ? params : {}; this.popupWindow = this.__createPopup(); }; BX.PopupMenuWindow.prototype.__createItem = function(item) { if (item.delimiter) { item.layout.item = BX.create("span", { props: { className: "popup-window-delimiter" }}); } else { item.layout.item = BX.create(!!item.href ? "a" : "span", { props : { className: "menu-popup-item" + (BX.type.isNotEmptyString(item.className) ? " " + item.className : " menu-popup-no-icon")}, attrs : { title : item.title ? item.title : "", onclick: item.onclick && BX.type.isString(item.onclick) ? item.onclick : "", target : item.target ? item.target : "" }, events : item.onclick && BX.type.isFunction(item.onclick) ? { click : BX.proxy(this.onItemClick, {obj : this, item : item }) } : null, children : [ BX.create("span", { props : { className: "menu-popup-item-icon"} }), (item.layout.text = BX.create("span", { props : { className: "menu-popup-item-text"}, html : item.text })) ] }); if (item.href) item.layout.item.href = item.href; } return item; }; BX.PopupMenuWindow.prototype.__createPopup = function() { var domItems = []; for (var i = 0; i < this.menuItems.length; i++) { this.__createItem(this.menuItems[i]); if (this.menuItems[i].layout.hr != null) { domItems.push(this.menuItems[i].layout.hr); } domItems.push(this.menuItems[i].layout.item); } var popupWindow = new BX.PopupWindow("menu-popup-" + this.id, this.bindElement, { closeByEsc: typeof(this.params.closeByEsc) != "undefined" ? this.params.closeByEsc: false, bindOptions: typeof(this.params.bindOptions) == "object" ? this.params.bindOptions : {}, angle: typeof(this.params.angle) != "undefined" ? this.params.angle : false, zIndex: this.params.zIndex ? this.params.zIndex : 0, overlay: typeof(this.params.overlay) == "object" ? this.params.overlay : null, autoHide: typeof(this.params.autoHide) != "undefined" ? this.params.autoHide : true, offsetTop: this.params.offsetTop ? this.params.offsetTop : 1, offsetLeft: this.params.offsetLeft ? this.params.offsetLeft : 0, className: BX.type.isNotEmptyString(this.params.className) ? this.params.className : "", noAllPaddings: true, content : BX.create("div", { props : { className : "menu-popup" }, children: [ (this.itemsContainer = BX.create("div", { props : { className : "menu-popup-items" }, children: domItems})) ]}) }); if (this.params && this.params.events) { for (var eventName in this.params.events) { if (this.params.events.hasOwnProperty(eventName)) { BX.addCustomEvent(popupWindow, eventName, this.params.events[eventName]); } } } return popupWindow; }; BX.PopupMenuWindow.prototype.onItemClick = function(event) { event = event || window.event; this.item.onclick.call(this.obj, event, this.item); }; BX.PopupMenuWindow.prototype.addMenuItem = function(menuItem, refItemId) { var position = this.__addMenuItem(menuItem, refItemId); if (position < 0) { return false; } this.__createItem(menuItem); var refItem = this.getMenuItem(refItemId); if (refItem != null) { if (refItem.layout.hr == null) { refItem.layout.hr = BX.create("div", { props : { className : "popup-window-hr" }, children : [ BX.create("i", {}) ]}); this.itemsContainer.insertBefore(refItem.layout.hr, refItem.layout.item); } if (menuItem.layout.hr != null) { this.itemsContainer.insertBefore(menuItem.layout.hr, refItem.layout.hr); } this.itemsContainer.insertBefore(menuItem.layout.item, refItem.layout.hr); } else { if (menuItem.layout.hr != null) { this.itemsContainer.appendChild(menuItem.layout.hr); } this.itemsContainer.appendChild(menuItem.layout.item); } return true; }; BX.PopupMenuWindow.prototype.__addMenuItem = function(menuItem, refItemId) { if (!menuItem || (!menuItem.delimiter && !BX.type.isNotEmptyString(menuItem.text)) || (menuItem.id && this.getMenuItem(menuItem.id) != null)) { return -1; } menuItem.layout = { item : null, text : null, hr : null }; var position = this.getMenuItemPosition(refItemId); if (position >= 0) { this.menuItems = BX.util.insertIntoArray(this.menuItems, position, menuItem); } else { this.menuItems.push(menuItem); position = this.menuItems.length - 1; } return position; }; BX.PopupMenuWindow.prototype.removeMenuItem = function(itemId) { var item = this.getMenuItem(itemId); if (!item) { return; } for (var position = 0; position < this.menuItems.length; position++) { if (this.menuItems[position] == item) { this.menuItems = BX.util.deleteFromArray(this.menuItems, position); break; } } if (position == 0) { if (this.menuItems[0]) { this.menuItems[0].layout.hr.parentNode.removeChild(this.menuItems[0].layout.hr); this.menuItems[0].layout.hr = null; } } else { item.layout.hr.parentNode.removeChild(item.layout.hr); } item.layout.item.parentNode.removeChild(item.layout.item); item.layout.item = null; }; BX.PopupMenuWindow.prototype.getMenuItem = function(itemId) { for (var i = 0; i < this.menuItems.length; i++) { if (this.menuItems[i].id && this.menuItems[i].id == itemId) { return this.menuItems[i]; } } return null; }; BX.PopupMenuWindow.prototype.getMenuItemPosition = function(itemId) { if (itemId) { for (var i = 0; i < this.menuItems.length; i++) { if (this.menuItems[i].id && this.menuItems[i].id == itemId) { return i; } } } return -1; }; // TODO: copypaste/update/enhance CSS and images from calendar to MAIN CORE // this.values = [{ID: 1, NAME : '111', DESCRIPTION: '111', URL: 'href://...'}] window.BXInputPopup = function(params) { this.id = params.id || 'bx-inp-popup-' + Math.round(Math.random() * 1000000); this.handler = params.handler || false; this.values = params.values || false; this.pInput = params.input; this.bValues = !!this.values; this.defaultValue = params.defaultValue || ''; this.openTitle = params.openTitle || ''; this.className = params.className || ''; this.noMRclassName = params.noMRclassName || 'ec-no-rm'; this.emptyClassName = params.noMRclassName || 'ec-label'; var _this = this; this.curInd = false; if (this.bValues) { this.pInput.onfocus = this.pInput.onclick = function(e) { if (this.value == _this.defaultValue) { this.value = ''; this.className = _this.className; } _this.ShowPopup(); return BX.PreventDefault(e); }; this.pInput.onblur = function() { if (_this.bShowed) setTimeout(function(){_this.ClosePopup(true);}, 200); _this.OnChange(); }; } else { this.pInput.className = this.noMRclassName; this.pInput.onblur = BX.proxy(this.OnChange, this); } } BXInputPopup.prototype = { ShowPopup: function() { if (this.bShowed) return; var _this = this; if (!this.oPopup) { var pRow, pWnd = BX.create("DIV", {props:{className: "bxecpl-loc-popup " + this.className}}); for (var i = 0, l = this.values.length; i < l; i++) { pRow = pWnd.appendChild(BX.create("DIV", { props: {id: 'bxecmr_' + i}, text: this.values[i].NAME, events: { mouseover: function(){BX.addClass(this, 'bxecplloc-over');}, mouseout: function(){BX.removeClass(this, 'bxecplloc-over');}, click: function() { var ind = this.id.substr('bxecmr_'.length); _this.pInput.value = _this.values[ind].NAME; _this.curInd = ind; _this.OnChange(); _this.ClosePopup(true); } } })); if (this.values[i].DESCRIPTION) pRow.title = this.values[i].DESCRIPTION; if (this.values[i].CLASS_NAME) BX.addClass(pRow, this.values[i].CLASS_NAME); if (this.values[i].URL) pRow.appendChild(BX.create('A', {props: {href: this.values[i].URL, className: 'bxecplloc-view', target: '_blank', title: this.openTitle}})); } this.oPopup = new BX.PopupWindow(this.id, this.pInput, { autoHide : true, offsetTop : 1, offsetLeft : 0, lightShadow : true, closeByEsc : true, content : pWnd }); BX.addCustomEvent(this.oPopup, 'onPopupClose', BX.proxy(this.ClosePopup, this)); } this.oPopup.show(); this.pInput.select(); this.bShowed = true; BX.onCustomEvent(this, 'onInputPopupShow', [this]); }, ClosePopup: function(bClosePopup) { this.bShowed = false; if (this.pInput.value == '') this.OnChange(); BX.onCustomEvent(this, 'onInputPopupClose', [this]); if (bClosePopup === true) this.oPopup.close(); }, OnChange: function() { var val = this.pInput.value; if (this.bValues) { if (this.pInput.value == '' || this.pInput.value == this.defaultValue) { this.pInput.value = this.defaultValue; this.pInput.className = this.emptyClassName; val = ''; } else { this.pInput.className = ''; } } if (isNaN(parseInt(this.curInd)) || this.curInd !==false && val != this.values[this.curInd].NAME) this.curInd = false; else this.curInd = parseInt(this.curInd); BX.onCustomEvent(this, 'onInputPopupChanged', [this, this.curInd, val]); if (this.handler && typeof this.handler == 'function') this.handler({ind: this.curInd, value: val}); }, Set: function(ind, val, bOnChange) { this.curInd = ind; if (this.curInd !== false) this.pInput.value = this.values[this.curInd].NAME; else this.pInput.value = val; if (bOnChange !== false) this.OnChange(); }, Get: function(ind) { var id = false; if (typeof ind == 'undefined') ind = this.curInd; if (ind !== false && this.values[ind]) id = this.values[ind].ID; return id; }, GetIndex: function(id) { for (var i = 0, l = this.values.length; i < l; i++) if (this.values[i].ID == id) return i; return false; }, Deactivate: function(bDeactivate) { if (this.pInput.value == '' || this.pInput.value == this.defaultValue) { if (bDeactivate) { this.pInput.value = ''; this.pInput.className = this.noMRclassName; } else if (this.oEC.bUseMR) { this.pInput.value = this.defaultValue; this.pInput.className = this.emptyClassName; } } this.pInput.disabled = bDeactivate; } }; /************** utility *************/ var _escCallbackIndex = -1, _escCallback = null; function _checkEscPressed(zIndex, callback) { if(zIndex === false) { if(_escCallback && _escCallback.length > 0) { for(var i=0;i<_escCallback.length; i++) { _escCallback[i](); } _escCallback = null; _escCallbackIndex = -1; } } else { if(_escCallback === null) { _escCallback = []; _escCallbackIndex = -1; BX.defer(_checkEscPressed)(false); } if(zIndex > _escCallbackIndex) { _escCallbackIndex = zIndex; _escCallback = [callback]; } else if(zIndex == _escCallbackIndex) { _escCallback.push(callback) } } } })(window);
/var/files/need-2-delete/./mini-borishof.ru1/bitrix/js/./main/././core/core_popup.js