/*
*  Ajax Autocomplete for jQuery, version 1.0.7
*  (c) 2009 Tomas Kirda
*
*  Ajax Autocomplete for jQuery is freely distributable under the terms of an MIT-style license.
*  For details, see the web site: http://www.devbridge.com/projects/autocomplete/jquery/
*
*  Last Review: 07/27/2009
*/

(function($) {

	$.fn.autocomplete = function(options) {
		return this.each(function() {
			return new Autocomplete(this, options);
		});
	};

	var reEscape = new RegExp('(\\' + ['/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\'].join('|\\') + ')', 'g');

	var fnFormatResult = function(data, currentValue) {

		var pattern = currentValue.replace(reEscape, '\\$1');
		var ignorePattern = "[-# ]{0,2}";
		myStr = pattern.replace(/([a-zA-Z0-9])/gi, "$1" + ignorePattern).toLowerCase();

		if (myStr.substring(myStr.length - ignorePattern.length, myStr.length) == ignorePattern) {
			myStr = myStr.substring(0, myStr.length - ignorePattern.length);
		}

		var searchfor = new RegExp("(" + myStr + ")", "gi");
		var title = data.DisplayTitle.replace(searchfor, '<strong>$1<\/strong>');

		if (data.Count != '')
			title = title + ' (' + data.Count + ')'; 

		return title;
	};

	var Autocomplete = function(el, options) {
		this.el = $(el);
		this.el.attr('autocomplete', 'off');
		this.suggestions = [];
		this.data = [];
		this.badQueries = [];
		this.selectedIndex = -1;
		this.currentValue = this.el.val();
		this.intervalId = 0;
		this.cachedResponse = [];
		this.onChangeInterval = null;
		this.ignoreValueChange = false;
		this.serviceUrl = options.serviceUrl;
		this.isLocal = false;
		this.options = {
			autoSubmit: false,
			minChars: 1,
			maxHeight: 600,
			deferRequestBy: 0,
			width: 0,
			highlight: true,
			params: {},
			fnFormatResult: fnFormatResult,
			delimiter: null
		};
		if (options) { $.extend(this.options, options); }
		if (this.options.lookup) {
			this.isLocal = true;
			if ($.isArray(this.options.lookup)) { this.options.lookup = { suggestions: this.options.lookup, data: [] }; }
		}
		this.initialize();
	};

	Autocomplete.prototype = {

		killerFn: null,

		initialize: function() {

			var me, zindex;
			me = this;

			zindex = Math.max.apply(null, $.map($('body > *'), function(e, n) { var pos = $(e).css('position'); if (pos === 'absolute' || pos === 'relative') { return parseInt($(e).css('z-index'), 10) || 1; } }));

			this.killerFn = function(e) {
				if ($(e.target).parents('.autocomplete').size() === 0) {
					me.killSuggestions();
					me.disableKillerFn();
				}
			};

			var uid = new Date().getTime();
			var autocompleteElId = 'Autocomplete_' + uid;

			if (!this.options.width) { this.options.width = this.el.width(); }
			this.mainContainerId = 'AutocompleteContainter_' + uid;

			$('<div id="' + this.mainContainerId + '" style="position:absolute;z-index:' + zindex + '"><div class="autocomplete-w1"><div class="autocomplete" id="' + autocompleteElId + '" style="display:none; width:' + this.options.width + 'px;"></div></div></div>').appendTo('body');

			this.container = $('#' + autocompleteElId);
			$('#acLoading').prependTo(this.container);
			$('#acRelatedGroupsContainer').prependTo(this.container);
			$('#acAdditionalContainer').prependTo(this.container);
			$('#acGroupsContainer').prependTo(this.container);
			$('#acProductsContainer').prependTo(this.container);
			$('#acShowAllResults').prependTo(this.container);

			this.container.products = $('#acProductsContainer');
			this.container.groups = $('#acGroupsContainer');
			this.container.additional = $('#acAdditionalContainer');
			this.container.relatedgroups = $('#acRelatedGroupsContainer');

			this.fixPosition();
			if (window.opera) {
				this.el.keypress(function(e) { me.onKeyPress(e); });
			} else {
				this.el.keydown(function(e) { me.onKeyPress(e); });
			}
			this.el.keyup(function(e) { me.onKeyUp(e); });
			this.el.blur(function() { me.enableKillerFn(); });
			this.el.focus(function() { me.fixPosition(); });

			this.container.css({ maxHeight: this.options.maxHeight + 'px' });
		},

		fixPosition: function() {
			var offset = this.el.offset();
			$('#' + this.mainContainerId).css({ top: (offset.top + this.el.innerHeight()) + 'px', left: offset.left + 'px' });
		},

		enableKillerFn: function() {
			var me = this;
			$(document).bind('click', me.killerFn);
		},

		disableKillerFn: function() {
			var me = this;
			$(document).unbind('click', me.killerFn);
		},

		killSuggestions: function() {
			var me = this;
			this.stopKillSuggestions();
			this.intervalId = window.setInterval(function() { me.hide(); me.stopKillSuggestions(); }, 300);
		},

		stopKillSuggestions: function() {
			window.clearInterval(this.intervalId);
		},

		onKeyPress: function(e) {
			if (!this.enabled) { return; }
			// return will exit the function
			// and event will not fire
			switch (e.keyCode) {
				case 27: //Event.KEY_ESC:
					this.el.val(this.currentValue);
					this.hide();
					break;
				case 9: //Event.KEY_TAB:
				case 13: //Event.KEY_RETURN:
					if (this.selectedIndex === -1) {
						this.hide();
						return;
					}
					this.select(this.selectedIndex);
					if (e.keyCode === 9/* Event.KEY_TAB */) { return; }
					break;
				case 38: //Event.KEY_UP:
					this.moveUp();
					break;
				case 40: //Event.KEY_DOWN:
					this.moveDown();
					break;
				default:
					return;
			}
			e.stopImmediatePropagation();
			e.preventDefault();
		},

		onKeyUp: function(e) {
			switch (e.keyCode) {
				case 38: //Event.KEY_UP:
				case 40: //Event.KEY_DOWN:
					return;
			}
			clearInterval(this.onChangeInterval);
			if (this.currentValue !== this.el.val()) {
				if (this.options.deferRequestBy > 0) {
					// Defer lookup in case when value changes very quickly:
					var me = this;
					this.onChangeInterval = setInterval(function() { me.onValueChange(); }, this.options.deferRequestBy);
				} else {
					this.onValueChange();
				}
			}
		},

		onValueChange: function() {
			clearInterval(this.onChangeInterval);
			this.currentValue = this.el.val();
			var q = this.getQuery(this.currentValue);
			this.selectedIndex = -1;
			if (this.ignoreValueChange) {
				this.ignoreValueChange = false;
				return;
			}
			if (q === '' || q.length < this.options.minChars) {
				this.hide();
			} else {
				this.getSuggestions(q);
			}
		},

		getQuery: function(val) {
			var d, arr;
			d = this.options.delimiter;
			if (!d) { return $.trim(val); }
			arr = val.split(d);
			return $.trim(arr[arr.length - 1]);
		},

		getSuggestionsLocal: function(q) {
			var ret, arr, len, val;
			arr = this.options.lookup;
			len = arr.suggestions.length;
			ret = { suggestions: [], data: [] };
			for (var i = 0; i < len; i++) {
				val = arr.suggestions[i];
				if (val.toLowerCase().indexOf(q.toLowerCase()) === 0) {
					ret.suggestions.push(val);
					ret.data.push(arr.data[i]);
				}
			}
			return ret;
		},

		getSuggestions: function(q) {
			this.container.show();
			$('#acLoading').show();
			$('#acShowAllResults').show();
			this.container.products.hide();
			this.container.groups.hide();
			this.container.additional.hide();
			this.container.relatedgroups.hide();

			var cr, me, ls;
			cr = this.cachedResponse[q];

			if (cr && $.isArray(cr.suggestions)) {
				this.suggestions = cr.suggestions;
				this.data = cr.data;
				this.suggest();
			} else if (!this.isBadQuery(q)) {
				me = this;
				me.options.params.query = q;
				$.get(this.serviceUrl, me.options.params, function(txt) { me.processResponse(txt); }, 'text');
			}
		},

		isBadQuery: function(q) {
			var i = this.badQueries.length;
			while (i--) {
				if (q.indexOf(this.badQueries[i]) === 0) { return true; }
			}
			return false;
		},

		hide: function() {
			this.enabled = false;
			this.selectedIndex = -1;
			this.container.hide();
		},

		suggest: function() {
			this.container.hide();
			this.container.products.find('.acItems').empty();
			this.container.groups.find('.acItems').empty();
			this.container.additional.find('.acItems').empty();
			this.container.relatedgroups.find('.acItems').empty();

			if (this.suggestions.Products && this.suggestions.Products.length)
				this.processResults(this.container.products, this.suggestions.Products);
			else
				$('#acNothingFound').clone().show().appendTo(this.container.products.find('.acItems'));

			if (this.suggestions.Groups && this.suggestions.Groups.length)
				this.processResults(this.container.groups, this.suggestions.Groups);
			else
				$('#acNothingFound').clone().show().appendTo(this.container.groups.find('.acItems'));

			if (this.suggestions.AttributeBased && this.suggestions.AttributeBased.length)
				this.processResults(this.container.additional, this.suggestions.AttributeBased);
			else
				$('#acNothingFound').clone().show().appendTo(this.container.additional.find('.acItems'));

			if (this.suggestions.RelatedProductGroups && this.suggestions.RelatedProductGroups.length)
				this.processResults(this.container.relatedgroups, this.suggestions.RelatedProductGroups);
			else
				$('#acNothingFound').clone().show().appendTo(this.container.additional.find('.acItems'));

			this.enabled = true;
			$('#acLoading').hide();
			this.container.show();
		},

		processResults: function(container, resultset) {
			me = this;
			len = resultset.length;
			f = this.options.fnFormatResult;
			v = this.getQuery(this.currentValue);
			container.show();

			for (var i = 0; i < len; i++) {
				div = $((me.selectedIndex === i ? '<div class="rt1 selected"' : '<div class="rt1"') + ' title="' + resultset[i].DisplayTitle + '">' + f(resultset[i], v) + '</div>');
				div.mouseover(function() { $(this).attr('class', 'selected') });
				div.mouseout(function() { $(this).attr('class', '') });
				div.click((function(xi) { return function() { me.select(xi); }; })(resultset[i]));
				container.find('.acItems').append(div);
			}
		},

		processResponse: function(text) {
			var response;
			try {
				response = eval('(' + text + ')');
			} catch (err) { return; }
			if (!$.isArray(response.data)) { response.data = []; }
			this.cachedResponse[response.query] = response;
			if (response.d.length === 0) { this.badQueries.push(response.query); }
			this.suggestions = response.d;
			this.suggest();
		},

		select: function(selectedValue) {
			if (selectedValue) {
				this.el.val(selectedValue.DisplayTitle);
				if (this.options.autoSubmit) {
					var f = this.el.parents('form');
					if (f.length > 0) { f.get(0).submit(); }
				}
				this.ignoreValueChange = true;
				this.hide();
				this.onSelect(selectedValue);
			}
		},

		moveUp: function() {
		},

		moveDown: function() {
		},

		adjustScroll: function(i) {
			var activeItem, offsetTop, upperBound, lowerBound;
			activeItem = this.activate(i);
			offsetTop = activeItem.offsetTop;
			upperBound = this.container.scrollTop();
			lowerBound = upperBound + this.options.maxHeight - 25;
			if (offsetTop < upperBound) {
				this.container.scrollTop(offsetTop);
			} else if (offsetTop > lowerBound) {
				this.container.scrollTop(offsetTop - this.options.maxHeight + 25);
			}
			// this.el.val(this.suggestions[i].Title);
		},

		activate: function(index) {
			$('.acItems DIV:eq(' + this.selectedIndex + ')').attr('class', '');
			$('.acItems DIV:eq(' + index + ')').attr('class', 'selected');
			this.selectedIndex = index;

			return $get('.acItems DIV:eq(' + index + ')');
		},

		onSelect: function(i) {
			var me, onSelect, getValue, s, d;
			me = this;
			onSelect = me.options.onSelect;
			getValue = function(value) {
				var del, currVal;
				del = me.options.delimiter;
				currVal = me.currentValue;
				if (!del) { return value; }
				var arr = currVal.split(del);
				if (arr.length === 1) { return value; }
				return currVal.substr(0, currVal.length - arr[arr.length - 1].length) + value;
			};
			me.el.val(getValue(s));
			if ($.isFunction(onSelect)) { onSelect(i); }
		}

	};

})(jQuery);
