%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/ceaa/wp-content/plugins/learnpress/assets/js/admin/
Upload File :
Create Path :
Current File : /var/www/html/ceaa/wp-content/plugins/learnpress/assets/js/admin/attributes.js

;(function ($) {
	var select2Options = {
		formatNoMatches: function () {
			$(document).off('keyup.addNewAttributeValueEvent');
			$(document).on('keyup.addNewAttributeValueEvent', '.select2-input', addNewAttributeValueEvent);
			return 'No match found, <code>Ctrl + Enter</code> to add new attribute';
		},
		formatMatches  : function () {
			$(document).off('keyup.addNewAttributeValueEvent');
		}
	}, postId = 0;

	function getPostId() {
		if (!postId) {
			postId = $('input[name="post_ID"]').val();
		}
		return postId;
	}

	function addAttributeToCourse(button) {
		$(button).addClass('disabled');
		$.post({
			url    : window.location.href.addQueryVar('add-attribute-to-course', getPostId()),
			data   : $().extend({}, $(button).data()),
			success: function (response) {
				var $html = $('.course-attributes');
				$(response).appendTo($html);
				$html.find('.course-attribute-values').select2(select2Options)
			}
		})
	}

	function addNewAttributeValue(name, taxonomy, el) {
		var $li = $(el).closest('.learn-press-attribute');
		$.post({
			url     : window.location.href.addQueryVar('add-attribute-value', getPostId()),
			data    : {
				name    : name,
				taxonomy: taxonomy
			},
			dataType: 'text',
			success : function (response) {
				response = LP.parseJSON(response);
				if (response.result == 'success') {
					$li.find('select.course-attribute-values').append('<option value="' + response.slug + '" selected="selected">' + response.name + '</option>').change();
				} else {
					if (response.message) {
						alert(response.message);
					}
				}
			}
		})
	}

	function addNewAttributeValueEvent(e) {
		if (e.ctrlKey && e.keyCode == 13) {
			var $sel = $('.select2-focused');
			if ($sel.length == 0) {
				return;
			}
			addNewAttributeValue($sel.val(), $sel.closest('.learn-press-attribute').data('taxonomy'), this)
		}
	}

	function saveAttributesEvent(e) {
		$.post({
			url    : window.location.href.addQueryVar('save-attributes', getPostId()),
			data   : {
				data: $('.course-attributes').find('input, select, textarea').serialize(),
			},
			success: function () {

			}
		});
	}

	$(document).ready(function () {
		$(document)
			.on('click', '.add-attribute:not(.disabled)', function () {
				addAttributeToCourse(this);
			})
			.on('click', '#save-attributes', saveAttributesEvent)
			.on('keyup.addNewAttributeValueEvent', '.select2-input', addNewAttributeValueEvent);

		var $courseAttributes = $('.course-attribute-values') ;

		if ($courseAttributes.length) {
			$courseAttributes.select2(select2Options);
		}

	});
})(jQuery);

Zerion Mini Shell 1.0