var fIID = 0;
var interval = 1;
$(".price_limit").live("change", (function () {
var b = parseInt($("#min_price").val());
var a = parseInt($("#max_price").val());
$("#slider-range").slider("values", [b, a]);
iF()
}));
$("#filterpro .filtered").live("change", (function () {
iF()
}));
$(function () {
$("#slider-range").slider({range:true, min:0, max:0, values:[0, 0], stop:function (a, b) {
iF()
}, slide:function (a, b) {
$("#min_price").val(b.values[0]);
$("#max_price").val(b.values[1])
}});
$("#min_price").val($("#slider-range").slider("values", 0));
$("#max_price").val($("#slider-range").slider("values", 1))
});
function iF() {
clearTimeout(fIID);
$("#filterpro_page").val(0);
fIID = setTimeout("doFilter(false)", interval)
}
function doFilter(b) {
var a = $("#filterpro").serialize().replace(/[^&]+=\.?(?:&|$)/g, "").replace(/&+$/, "");
if (!b) {
window.location.hash = a
}
$.ajax({url:"index.php?route=module/filterpro/getproducts", type:"POST", data:a + (b ? "&getPriceLimits=true" : ""), dataType:"json", success:function (g) {
//view = "grid";
view = $.cookie('display');
if (view) {
display(view);
} else {
display('grid');
}
if (g.result) {
$(".product-" + view).html("");
$("#productTemplate").tmpl(g.result).appendTo(".product-" + view)
}
$(".pagination").html(g.pagination);
var d = parseInt(g.min_price);
var c = Math.ceil(parseFloat(g.max_price));
if (b) {
$("#slider-range").slider("option", {min:d, max:c});
if ($("#max_price").val() >= 1) {
d = parseInt($("#min_price").val());
c = parseInt($("#max_price").val())
}
$("#slider-range").slider("option", {values:[d, c]});
$("#min_price").val(d);
$("#max_price").val(c)
}
if (g.totals_data) {
var atts = {};
$.each(g.totals_data.attributes, function(k, v) {
atts[v.id + "_" + v.text] = v.t;
});
$('.a_name').each(function (k, v) {
var at_v_i = $(v).attr('at_v_i');
if (atts[at_v_i]) {
$('[at_v_t="'+at_v_i+'"]').text($('[at_v_t="'+at_v_i+'"]').attr('data-value')+"("+atts[at_v_i]+")");
$(v).removeAttr("disabled");
} else {
$('[at_v_t="' + at_v_i + '"]').text($('[at_v_t="' + at_v_i + '"]').attr('data-value'));
$(v).attr("disabled", "disabled");
$(v).removeAttr('checked');
$(v).removeAttr(':selected');
}
});
var h = [];
$.each(g.totals_data.manufacturers, function (f, k) {
if (k.id) {
h[h.length] = k.id;
var j = $("#manufacturer_" + k.id);
j.removeAttr("disabled");
if (j.get(0).tagName == "OPTION") {
j.text($("#m_" + k.id).val() + " (" + k.t + ")")
} else {
$('label[for="manufacturer_' + k.id + '"]').text($("#m_" + k.id).val() + " (" + k.t + ")")
}
}
});
$(".manufacturer_value").each(function (f, k) {
var j = $(this);
var l = j.attr("id").match(/manufacturer_(\d+)/);
if ($.inArray(l[1], h) < 0) {
j.attr("disabled", "disabled");
if (this.tagName == "OPTION") {
j.text($("#m_" + l[1]).val());
j.attr("selected", false)
} else {
$('label[for="manufacturer_' + l[1] + '"]').text($("#m_" + l[1]).val());
j.attr("checked", false)
}
}
});
var e = [];
$.each(g.totals_data.options, function (j, k) {
if (k.id) {
e[e.length] = k.id;
var f = $("#option_value_" + k.id);
if (f.length) {
f.removeAttr("disabled");
if (f.get(0).tagName == "OPTION") {
f.text($("#o_" + k.id).val() + " (" + k.t + ")")
} else {
$('label[for="option_value_' + k.id + '"]').text($("#o_" + k.id).val() + " (" + k.t + ")")
}
}
}
});
$(".option_value").each(function (j, k) {
var f = $(this);
var l = f.attr("id").match(/option_value_(\d+)/);
if ($.inArray(l[1], e) < 0) {
f.attr("disabled", "disabled");
if (this.tagName == "OPTION") {
f.text($("#o_" + l[1]).val());
f.attr("selected", false)
} else {
$('label[for="option_value_' + l[1] + '"]').text($("#o_" + l[1]).val());
f.attr("checked", false)
}
}
})
}
}})
}
$(document).ready(function () {
$(".option_box .option_name").click(function () {
$(this).siblings(".collapsible").toggle();
$(this).toggleClass("hided")
});
$(".option_box .attribute_group_name").click(function () {
$(this).siblings(".attribute_box").toggle();
$(this).toggleClass("hided")
});
$(".clear_filter").click(function () {
$("#filterpro select").val("");
$("#filterpro :input").each(function () {
if ($(this).is(":checked")) {
$(this).attr("checked", false)
}
});
var b = $("#slider-range").slider("option", "min");
var a = $("#slider-range").slider("option", "max");
$("#slider-range").slider("option", {values:[b, a]});
$("#min_price").val(b);
$("#max_price").val(a);
iF()
});
$(".pagination .links a").live("click", (function () {
var a = $(this).attr("href");
var b = a.match(/page=(\d+)/);
$("#filterpro_page").val(b[1]);
doFilter(false);
return false
}));
if($(".sort select").length){
$(".sort select").get(0).onchange = null;
$(".sort select").change(function () {
vars = $(this).val().split("&");
$("#filterpro_sort").val(vars[0]);
$("#filterpro_order").val(vars[1]);
iF()
});
$(".sort select option").each(function () {
var d = $(this).val();
var a = gUV(d, "sort");
if (a == "rating") {
$(this).remove()
} else {
$(this).val(a + "&" + gUV(d, "order"))
}
});
}
if ($(".limit select").length) {
$(".limit select").get(0).onchange = null;
$(".limit select").change(function () {
$("#filterpro_limit").val($(this).val());
iF()
});
$(".limit select option").each(function () {
$(this).val(gUV($(this).val(), "limit"))
});
}
$("#filterpro").deserialize(window.location.hash.substr(1));
if ($(".sort select").length) {
if ($("#filterpro_sort").val()) {
$(".sort select").val($("#filterpro_sort").val() + "&" + $("#filterpro_order").val())
} else {
vars = $(".sort select").val().split("&");
$("#filterpro_sort").val(vars[0]);
$("#filterpro_order").val(vars[1])
}
}
if ($("#filterpro_limit").length) {
if ($("#filterpro_limit").val()) {
$(".limit select").val($("#filterpro_limit").val())
} else {
$("#filterpro_limit").val($(".limit select").val())
}
}
doFilter(true)
});
function gUV(e, f) {
var c = String(e).split("?");
var a = "";
if (c[1]) {
var b = c[1].split("&");
for (var g = 0; g <= (b.length); g++) {
if (b[g]) {
var d = b[g].split("=");
if (d[0] && d[0] == f) {
a = d[1]
}
}
}
}
return a
}