__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
(function($){
	"use strict";

	var JMElements = function(id, fields, lang, element_field, version){
		var self = this;

		if (typeof id == 'undefined' || !id || typeof fields == 'undefined' || !fields) {
			return false;
		}

		this.id = id;
		this.data_holder = $('#' + id);
		if (this.data_holder.length != 1) {
			return false;
		}

		this.lang = lang;
		this.element_field = element_field;

		this.fields = $(fields);
		if (this.fields.length > 0) {
			this.fields.each(function(){
				var tag_name = $(this).prop('tagName');
				var input_type = $(this).attr('type');
				var multiple = $(this).attr('multiple');

				var entry = {
					name: $(this).attr('name'),
					value: $(this).val(),
					tag_name: tag_name,
					input_type: input_type,
					multiple: multiple
				};

				if ((input_type && (input_type == 'checkbox' || input_type == 'radio')) || (tag_name == 'SELECT' && multiple)) {
					if ($(this).is(':selected') || $(this).is(':checked')) {
						self.fields_defaults.push(entry);
					}
				} else {
					self.fields_defaults.push(entry);
				}
			});
		}

		this.data = this.data_holder.val();
		if (this.data != '') {
			this.pushElements(this.data);
		}

		if (version == 2 || version == 3) {
			this.sortable_list = $('#' + self.id + '_items').sortable({
				axis:'y',
				cursor: 'move',
				items: 'tr',
				handle: '.jm-sort-handle',
				cancel: 'a,.btn,i',
				update: function( event, ui ) {
					self.stringify();
				}
			});
		}else{
			this.sortable_list = dragula([document.querySelector('#' + self.id + '_items')])
			.on('drop', el => {
				self.stringify();
			});
		}

		this.save_btn = $('#' + id + '_btn_save');
		this.add_btn = $('#' + id + '_btn_add');
		this.cancel_btn = $('#' + id + '_btn_cancel');

		var last_field = this.fields.last().parents('div.control-group');
		this.cancel_btn.insertAfter(last_field);
		this.save_btn.insertAfter(last_field);

		$("#toolbar-apply .btn").mousedown(function(e) {
			if( self.save_btn.hasClass('active') ) {
				self.save_btn.trigger('click');
			}
		});

		$("#toolbar-save .btn").mousedown(function(e) {
			if( self.save_btn.hasClass('active') ) {
				self.save_btn.trigger('click');
			}
		});

		$("#toolbar-save-new .btn").mousedown(function(e) {
			if( self.save_btn.hasClass('active') ) {
				self.save_btn.trigger('click');
			}
		});

		$("#toolbar-save-copy .btn").mousedown(function(e) {
			if( self.save_btn.hasClass('active') ) {
				self.save_btn.trigger('click');
			}
		});

		this.save_btn.click(function(e){
			e.preventDefault();
			self.save();
			self.toggleFormFields(0);
			$('#' + self.id + '_items').find('.jm-elements-edit-icon').removeClass('active');
			return false;
		});

		this.cancel_btn.click(function(e){
			e.preventDefault();
			self.clearForm();
			self.toggleFormFields(0);
			$('#' + self.id + '_items').find('.jm-elements-edit-icon').removeClass('active');
			return false;
		});

		this.add_btn.click(function(e){
			e.preventDefault();
			self.clearForm();
			$('joomla-field-media').trigger('updatePreview');
			self.toggleFormFields(1);
			$('#' + self.id + '_items').find('.jm-elements-edit-icon').removeClass('active');
			return false;
		});

		this.toggleFormFields(0);

	};

	JMElements.prototype = {
		constructor: JMElements,
		id: null,
		data: '',
		elements: [],
		fields: null,
		fields_defaults: [],
		data_holder: null,
		current_index: -1,
		lang: {
			element_name: 'Item',
			elements_heading: 'Items'
		},
		element_field: '',
		sortable_list: '',
		save_btn: null,
		cancel_btn: null,
		add_btn: null,
		pushElements: function(data) {
			var elements = $.parseJSON(data);
			if (elements.length > 0) {
				this.elements = elements;

				for (var i in this.elements) {
					if (!this.elements.hasOwnProperty(i)) {
						continue;
					}
						var element_name = '';
						if (this.element_field) {
							for (var j in this.elements[i]) {
								if (!this.elements[i].hasOwnProperty(j)) {
									continue;
								}
								if (this.elements[i][j].name == this.element_field) {
									element_name = this.elements[i][j].value;
								}
							}
						}

						this.pushElement(i, true, element_name);
				}
			}
		},

		pushElement: function(index, is_new, element_name) {
			var element = this.elements[index];
			if (!element) {
				return false;
			}
			var self = this;
			var wrapper = $('#' + self.id + '_item-' + index);

			is_new = (is_new || !wrapper.length) ? true : false;

			if (is_new) {
				wrapper = $('<tr />', {
					id: self.id + '_item-' + index,
					'class': 'jm-element-item',
					'data-index': index
				});
			}

			if (!element_name) {
				element_name = this.lang.element_name + ' #' + (index+1);
			}

			if (is_new) {
				wrapper.html('<td><span class="icon-menu jm-sort-handle" style="cursor: move;"></span></td><td class="jm-elements-slide-title"><strong>' + element_name + '</strong></td><td><span class="btn btn-mini jm-elements-edit-icon"><i class="icon icon-edit" /></span></td><td><span class="btn btn-mini jm-elements-delete-icon"><i class="icon icon-remove" /></span></td>');

				wrapper.find('.jm-elements-delete-icon').click(function(){
					self.removeElement(index);
				});
				wrapper.find('.jm-elements-edit-icon').click(function(){
					$('#' + self.id + '_items').find('.jm-elements-edit-icon').removeClass('active');
					$(this).addClass('active');
					self.editElement(index);
				});

				$('#' + self.id + '_items').append(wrapper);
			} else {
				wrapper.find('strong').text(element_name);
			}
		},

		getElement: function(index, json) {
			if (typeof this.elements[index] != undefined) {
				this.current_index = index;
				if (json) {
					return JSON.stringify(this.elements[index]);
				}
				return this.elements[index];
			}
			return false;
		},

		editElement: function(index) {
			this.clearForm();
			var element = this.getElement(index, false);
			if (!element) {
				return false;
			}

			this.current_index = index;

			var self = this;

			this.fields.each(function(){
				var tag_name = $(this).prop('tagName');
				var input_type = $(this).attr('type');
				var multiple = $(this).attr('multiple');

				// first clear everything - just in case
				if (tag_name == 'SELECT') {
					$(this).find('option').removeAttr('selected');
				} else {
					if (input_type == 'checkbox' || input_type == 'radio') {
						$(this).removeAttr('checked');
						if( $(this).parent().hasClass('btn-group') ) {
							$(this).next().removeClass('active btn-success btn-danger');
						}
					} else {
						$(this).val('');
					}
				}

				if (element.length > 0) {
					for (var i in element) {
						if (!element.hasOwnProperty(i)) {
							continue;
						}
						if (element[i].name != $(this).attr('name')) {
							continue;
						}
						if (tag_name == 'SELECT') {
							$(this).find('option[value="'+element[i].value+'"]').attr('selected', 'selected');
						} else if (input_type == 'checkbox' || input_type == 'radio') {
							if ($(this).val() == element[i].value) {
								$(this).attr('checked', 'checked');
								if( $(this).parent().hasClass('btn-group') ) {
									if( $(this).val() == 1 ) {
										$(this).next().addClass('active btn-success');
									} else {
										$(this).next().addClass('active btn-danger');
									}
								}
							}
						} else {
							$(this).val(element[i].value);
							if( $(this).hasClass('minicolors') ) { //color field
								$(this).next().find('.minicolors-swatch-color').css('background-color', element[i].value);
							}
						}
					}
				}
				
				$('.field-media-wrapper').each(function() {
					$(this).trigger('updatePreview');
				})
				
				$(this).trigger('change');
				$(this).trigger('liszt:updated');
			});

			this.toggleFormFields(1);
		},

		removeElement: function(index) {
			if (typeof this.elements[index] != undefined) {
				delete this.elements[index];

				this.clearForm();
				$('#' + this.id + '_item-' + index).remove();

				this.stringify();
				return true;
			}

			this.clearForm();
			return false;
		},

		save: function() {
				var vals = this.fields.serializeArray();
				var is_new = this.current_index == -1;
				var index = is_new ? this.elements.length : this.current_index;
				this.elements[index] = vals;

				var element_name = '';
				if (this.element_field) {
					element_name = $('[name^="' + this.element_field + '"]').first().val();
				}

				this.clearForm();

				this.pushElement(index, is_new, element_name);

				this.stringify();
		},

		stringify: function() {
			var json = null;
			var elements = this.elements;
			var rows = $('#' + this.id + '_items').find('tr');
			var data = [];

			rows.each(function(j){
				var row = $(this);
				var row_index = row.attr('data-index');
				for (var i in elements) {
					if (elements.hasOwnProperty(i) && elements[i] != null && i == row_index) {
						data[data.length] = elements[i];
					}
				}
			});

			this.data_holder.val(JSON.stringify(data));
		},

		clearForm: function() {
			this.current_index = -1;

			var self = this;

			this.fields.each(function(){
				var tag_name = $(this).prop('tagName');
				var input_type = $(this).attr('type');
				var multiple = $(this).attr('multiple');

				// first clear everything - just in case

				if (tag_name == 'SELECT') {
					$(this).find('option').removeAttr('selected');
				} else {
					if (input_type == 'checkbox' || input_type == 'radio') {
						$(this).removeAttr('checked');
						if( $(this).parent().hasClass('btn-group') ) {
							$(this).next().removeClass('active btn-success btn-danger');
						}
					} else {
						$(this).val('');
					}
				}

				if (self.fields_defaults.length > 0) {
					for (var i in self.fields_defaults) {
						if (!self.fields_defaults.hasOwnProperty(i)) {
							continue;
						}
						if (self.fields_defaults[i].name != $(this).attr('name')) {
							continue;
						}
						if (tag_name == 'SELECT') {
							$(this).find('option[value="'+self.fields_defaults[i].value+'"]').attr('selected', 'selected');
						} else if (input_type == 'checkbox' || input_type == 'radio') {
							if ($(this).val() == self.fields_defaults[i].value) {
								$(this).attr('checked', 'checked');
								if( $(this).parent().hasClass('btn-group') ) {
									if( $(this).val() == 1 ) {
										$(this).next().addClass('active btn-success');
									} else {
										$(this).next().addClass('active btn-danger');
									}
								}
							}
						} else {
							$(this).val(self.fields_defaults[i].value);
							if( $(this).hasClass('minicolors') ) { //color field
								$(this).next().find('.minicolors-swatch-color').css('background-color', self.fields_defaults[i].value);
							}
						}

					}
				}
				$(this).trigger('change');
				$(this).trigger('liszt:updated');
			});
		},

		clearFormSubmit: function(callback) {
			this.clearForm();

			if($.isFunction(callback)){
				callback();
			}
		},

		toggleFormFields: function(state) {
			if (state == 1) {
				this.save_btn.addClass('active');
				this.fields.parents('div.control-group').css('display', '');
				this.save_btn.css('display', '');
				this.cancel_btn.css('display', '');
				this.add_btn.css('display', 'none');
			} else {
				this.save_btn.removeClass('active');
				this.fields.parents('div.control-group').css('display', 'none');
				this.save_btn.css('display', 'none');
				this.cancel_btn.css('display', 'none');
				this.add_btn.css('display', '');
			}
		}
	};

	window.JMElements = JMElements;

})(jQuery);

Filemanager

Name Type Size Permission Actions
index.html File 0 B 0664
jmelements.js File 11.23 KB 0664
jquery.flipster.css File 9.34 KB 0664
jquery.flipster.min.js File 7.35 KB 0664
script.js File 3.68 KB 0664
Filemanager