Your IP : 216.73.216.250


Current Path : /home/digilove/www/modules/mod_sj_vm_search_pro/tmpl/
Upload File :
Current File : /home/digilove/www/modules/mod_sj_vm_search_pro/tmpl/default_js.php

<?php
/**
 * @package SJ Search Pro for VirtueMart
 * @version 3.0.1
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 * @copyright (c) 2015 YouTech Company. All Rights Reserved.
 * @author YouTech Company http://www.smartaddons.com
 *
 */
defined('_JEXEC') or die;

?>
<script type="text/javascript">
// Autocomplete */

(function($) {
	$.fn.SjSearchautocomplete = function(option) {
		return this.each(function() {
			this.timer = null;
			this.items = new Array();
	
			$.extend(this, option);
	
			$(this).attr('autocomplete', 'off');
			
			// Focus
			$(this).on('focus', function() {
				this.request();
			});
			
			// Blur
			$(this).on('blur', function() {
				setTimeout(function(object) {
					object.hide();
				}, 200, this);				
			});
			
			// Keydown
			$(this).on('keydown', function(event) {
				switch(event.keyCode) {
					case 27: // escape
						this.hide();
						break;
					default:
						this.request();
						break;
				}				
			});
			
			// Click
			this.click = function(event) {
				event.preventDefault();
	
				value = $(event.target).parent().attr('data-value');
	
				if (value && this.items[value]) {
					this.select(this.items[value]);
				}
			}
			
			// Show
			this.show = function() {
				var pos = $(this).position();
	
				$(this).siblings('ul.dropdown-menu-sj').css({
					top: pos.top + $(this).outerHeight(),
					left: pos.left
				});
	
				$(this).siblings('ul.dropdown-menu-sj').show();
			}
			
			// Hide
			this.hide = function() {
				$(this).siblings('ul.dropdown-menu-sj').hide();
			}		
			
			// Request
			this.request = function() {
				clearTimeout(this.timer);
		
				this.timer = setTimeout(function(object) {
					object.source($(object).val(), $.proxy(object.response, object));
				}, 200, this);
			}
			
			// Response
			this.response = function(json) {
				html = '';
	
				if (json.length) {
					for (i = 0; i < json.length; i++) {
						this.items[json[i]['value']] = json[i];
					}
	
					for (i = 0; i < json.length; i++) {
						if (!json[i]['category']) {
						html += '<li class="media" data-value="' + json[i]['value'] + '" title="' + json[i]['label'] + '">';
						if(json[i]['image'] && json[i]['show_image'] && json[i]['show_image'] == 1 ) {
							html += '	<a class="media-left" href="' + json[i]['link'] + '">' + json[i]['image'] + '</a>';	
						}
						
						html += '<div class="media-body">';	
						html += '<a href="' + json[i]['link'] + '" title="' + json[i]['label'] + '"><span>' +json[i]['cate_name']+ ' > ' + json[i]['label'] + '</span></a>';
						if(json[i]['salesPrice'] && json[i]['show_price'] && json[i]['show_price'] == 1){
							html += '	<div class="box-price">';
							if (!json[i]['Discount']) {
								html += json[i]['salesPrice'];
							} else {
								html +=  json[i]['salesPrice']+' '+json[i]['Discount']+'' ;
							}
							html += '	</div>';
						}
						html += '</div></li>';
						html += '<li class="clearfix"></li>';
						}
					}
	
					// Get all the ones with a categories
					// var category = new Array();
	
					// for (i = 0; i < json.length; i++) {
						// if (json[i]['category']) {
							// if (!category[json[i]['category']]) {
								// category[json[i]['category']] = new Array();
								// category[json[i]['category']]['name'] = json[i]['category'];
								// category[json[i]['category']]['item'] = new Array();
							// }
	
							// category[json[i]['category']]['item'].push(json[i]);
						// }
					// }
	
					// for (i in category) {
						// html += '<li class="dropdown-header">' + category[i]['name'] + '</li>';
	
						// for (j = 0; j < category[i]['item'].length; j++) {
							// html += '<li data-value="' + category[i]['item'][j]['value'] + '"><a href="#">&nbsp;&nbsp;&nbsp;' + category[i]['item'][j]['label'] + '</a></li>';
						// }
					// }
				}
	
				if (html) {
					this.show();
				} else {
					this.hide();
				}
	
				$(this).siblings('ul.dropdown-menu-sj').html(html);
			}
			
			$(this).after('<ul class="dropdown-menu-sj"></ul>');
			
		});
	}
})(window.jQuery);

jQuery(document).ready(function($) {
	var selector = '#search<?php  echo $module->id ?>';
	var total = 0;
	var character = <?php  echo ((int)$params['character'] != '' ? (int)$params['character'] : 3);?>;
	var showimage = <?php echo $params['show_image'];?>;
	var showprice = <?php echo $params['show_price'];?>;
	var $_ajax_url = '<?php echo (string)JURI::getInstance(); ?>';
	
	$(selector).find('input[name=\'keyword\']').SjSearchautocomplete({
		delay: 200,
		source: function(request, response) {
			var category_id = $(".select_category select[name=\"virtuemart_category_id\"]").first().val();
			
			if(typeof(category_id) == 'undefined')
				category_id = 0;
			var limit = <?php echo ((int)$params['limit'] != '' ? (int)$params['limit'] : 5);?>;
			if(request.length >= character){
				$.ajax({
					type: 'POST',
					url: $_ajax_url,
					data: {
						is_ajax_searchpro: 1,
						search_module_id: <?php echo $module->id ?>,
						search_category_id : category_id,
						search_name : encodeURIComponent(request)
					},
					dataType: 'json',
					success: function(json) {		
						response($.map(json, function(item) {
							total = 0;
							if(item.total){
								total = item.total;
							}
							
							return {
								salesPrice		: item.salesPrice,
								Discount 		: item.Discount,
								label			: item.name,
								cate_name		: item.category_name,
								image			: item.image,
								link			: item.link,
								show_price		: showprice,
								show_image		: showimage,			
								value			: item.product_id,
							}
						}));
					}
				});
			}	
		},
	});
});

</script>