AnonSec Shell
Server IP : 85.193.89.191  /  Your IP : 18.223.239.103
Web Server : Apache
System : Linux 956367-cx40159.tmweb.ru 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
User : bitrix ( 600)
PHP Version : 8.1.27
Disable Function : NONE
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/bitrix/www/bitrix/components/bitrix/main.ui.grid/templates/tilegrid/js/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/bitrix/www/bitrix/components/bitrix/main.ui.grid/templates/tilegrid/js/manager.js
;(function() {
	'use strict';

	BX.namespace('BX.Main');

	/**
	 * Works with tileGrid instances
	 * @type {{data: Array, push: BX.Main.tileGridManager.push, getById: BX.Main.tileGridManager.getById}}
	 */

	if (BX.Main.tileGridManager)
	{
		return;
	}

	BX.Main.tileGridManager = {
		data: [],

		push: function(id, instance)
		{
			if (BX.type.isNotEmptyString(id) && instance)
			{
				var object = {
					id: id,
					instance: instance,
					old: null
				};

				if (this.getById(id) === null)
				{
					this.data.push(object);
				}
				else
				{
					this.data[0] = object;
				}
			}
		},

		getById: function(id)
		{
			var result = this.data.filter(function(current) {
				return (current.id === id);
			});

			return result.length === 1 ? result[0] : null;
		},

		getInstanceById: function(id)
		{
			var result = this.getById(id);
			return BX.type.isPlainObject(result) ? result["instance"] : null;
		},

		reload: function(id, url)
		{
			var instance = this.getInstanceById(id);
			if(instance)
			{
				instance.reload(url);
			}
		},

		getDataIndex: function(id)
		{
			var result = null;
			this.data.forEach(function(item, index) {
				if (item.id === id)
				{
					result = index;
				}
			});

			return result;
		},

		destroy: function(id)
		{
			if (BX.type.isNotEmptyString(id))
			{
				var tileGrid = this.getInstanceById(id);

				if (tileGrid instanceof BX.Main.TileGrid)
				{
					tileGrid.destroy();
					var index = this.getDataIndex(id);

					if (index !== null)
					{
						delete this.data[index];
					}
				}
			}
		}
	};
})();

Anon7 - 2022
AnonSec Team