View file upload/js/xenforo/full/form_filler.js

File size: 1.93Kb
/** @param {jQuery} $ jQuery Object */
!function($, window, document, _undefined)
{
	XenForo._FormFiller = {};

	XenForo.FormFillerControl = function($control)
	{
		var $form = $control.closest('form'),

			FormFiller = $form.data('FormFiller');

		if (!FormFiller)
		{
			FormFiller = new XenForo.FormFiller($form);
			$form.data('FormFiller', FormFiller);
		}

		FormFiller.addControl($control);
	};

	XenForo.FormFiller = function($form)
	{
		var valueCache = {},
			clicked = null,
			xhr = null,
			preventSubmit = false;

		$form.on('submit', function(e)
		{
			if (preventSubmit)
			{
				e.preventDefault();
				e.stopImmediatePropagation();
			}
		});

		function handleValuesResponse(clicked, ajaxData)
		{
			if (XenForo.hasResponseError(ajaxData))
			{
				return false;
			}

			$.each(ajaxData.formValues, function(selector, value)
			{
				var $ctrl = $form.find(selector);

				if ($ctrl.length)
				{
					if ($ctrl.is(':checkbox, :radio'))
					{
						$ctrl.prop('checked', value).triggerHandler('click');
					}
					else if ($ctrl.is('select, input, textarea'))
					{
						$ctrl.val(value);
					}
				}
			});

			clicked.focus();
		}

		function handleSelection(e)
		{
			var choice = $(e.target).data('choice') || $(e.target).val();
			if (choice === '')
			{
				return true;
			}

			if (xhr)
			{
			//	xhr.abort();
			}

			if (valueCache[choice])
			{
				handleValuesResponse(this, valueCache[choice]);
			}
			else
			{
				clicked = this;
				preventSubmit = true;

				xhr = XenForo.ajax($form.data('form-filler-url'),
					{ choice: choice },
					function(ajaxData, textStatus)
					{
						valueCache[choice] = ajaxData;

						handleValuesResponse(clicked, ajaxData);
					}
				);
				xhr.always(function()
				{
					preventSubmit = false;
				});
			}
		}

		this.addControl = function($control)
		{
			$control.click(handleSelection);
		};
	};

	XenForo.register('.FormFiller', 'XenForo.FormFillerControl');
}
(jQuery, this, document);