﻿
//global variables
var combinations = new Array();
var selectedCombination = new Array();
var globalQuantity = new Number;
var colors = new Array();




//check if a function exists
function function_exists(function_name)
{
	if (typeof function_name == 'string')
		return (typeof window[function_name] == 'function');
	return (function_name instanceof Function);
}

//execute oosHook js code
function oosHookJsCode()
{
	for (var i = 0; i < oosHookJsCodeFunctions.length; i++)
	{
		if (function_exists(oosHookJsCodeFunctions[i]))
		setTimeout(oosHookJsCodeFunctions[i]+'()', 0);
	}	
}

//add a combination of attributes in the global JS sytem
function addCombination(idCombination, arrayOfIdAttributes, quantity, price, ecotax, id_image, reference)
{
	globalQuantity += quantity;

	var combination = new Array();
		combination['idCombination'] = idCombination;
		combination['quantity'] = quantity;
		combination['idsAttributes'] = arrayOfIdAttributes;
		combination['price'] = price;
		combination['ecotax'] = ecotax;
		combination['image'] = id_image;
		combination['reference'] = reference;
		combinations.push(combination);
		
}

// test if tab contain the element
function contains (tab, element) 
{
	for (var i = 0; i < tab.length; i++) 
	{
		if (tab[i] == element) {
			return true;
		}
	}
	return false;
}



// search the combinations' case of attributes and update displaying of availability, prices, ecotax, and image
function findCombination(firstTime)
{
	
	//create a temporary 'choice' array containing the choices of the customer
	var choice = new Array();

	$('div#attributes select').each(function()
	{
		var select_name = $(this).attr('name');
		var select_value = $(this).attr('value');
		var select_id = $(this).attr('id');
		var enabled = !$(this).attr('disabled');
		
		//alert(enabled);
		//alert(select_name+','+select_value+', '+select_id);
		
		var toDisable = true;
		var counter = 0;
		var idD;
		var childs = $(this).children();
		childs.each(function(){
			
			var selected = $(this).attr('selected');
			if(selected && ($(this).attr('id') == "Au choix du bénéficiaire")){
				toDisable = false;
				idD = counter;
			}
			counter++;
		});
		
		if(toDisable == true){
			choice.push($(this).val());
		}else{
			//alert(document.getElementById(select_id).options[counter].selected);
		}
		
	});
	
	var nbAttributesEquals = 0;
	//testing every combination to find the combination's attributes' case of the user
	
	var index = 0;
	for (combination in combinations)
	{
		index ++;
		//verify if this combinaison is the same that the user's choice
		nbAttributesEquals = 0;
		for (idAttribute in combinations[combination]['idsAttributes'])
		{
			//ie6 bug fix
			if (idAttribute != 'indexOf'){
				//if this attribute has been choose by user
				if (in_array(combinations[combination]['idsAttributes'][idAttribute], choice))
				{
					//we are in a good way to find the good combination !
					nbAttributesEquals++;
					//var p = combinations[combination]['price'];
					//alert(p);
				}else{
					//document.getElementById('group_'+index).options.length=0;
				}
			}
		}
		
		
		
		if (nbAttributesEquals == choice.length)
		{	
			//combination of the user has been found in our specifications of combinations (created in back office)
			selectedCombination['unavailable'] = false;
			selectedCombination['reference'] = combinations[combination]['reference'];
			$('#idCombination').val(combinations[combination]['idCombination']);

			//get the data of product with these attributes
			quantityAvailable = combinations[combination]['quantity'];
			selectedCombination['price'] = combinations[combination]['price'];
			if (combinations[combination]['ecotax'])
				selectedCombination['ecotax'] = combinations[combination]['ecotax'];
			else
				selectedCombination['ecotax'] = default_eco_tax;
			
			//show the large image in relation to the selected combination
			if (combinations[combination]['image'] && combinations[combination]['image'] != -1)
				displayImage( $('#thumb_'+combinations[combination]['image']).parent() );
			
			$('#e1').hide();
			//update the display
			updateDisplay();

			if(typeof(firstTime) != 'undefined' && firstTime)
				refreshProductImages(0);
			else
				refreshProductImages(combinations[combination]['idCombination']);
			//leave the function because combination has been found
			return;
		}
	}
	$('#e1').show();
	//this combination doesn't exist (not created in back office)
	selectedCombination['unavailable'] = true;
	updateDisplay();
}

function updateColorSelect(id_attribute)
{
	if (id_attribute == 0)
	{
		refreshProductImages(0);
		return ;
	}
	// Visual effect
	$('#color_'+id_attribute).fadeTo('fast', 1, function(){	$(this).fadeTo('slow', 0, function(){ $(this).fadeTo('slow', 1, function(){}); }); });
	// Attribute selection
	$('#group_'+id_color_default+' option[value='+id_attribute+']').attr('selected', 'selected');
	$('#group_'+id_color_default+' option[value!='+id_attribute+']').removeAttr('selected');
	findCombination();
}


//update display of the availability of the product AND the prices of the product
function updateDisplay()
{
	if (!selectedCombination['unavailable'] && quantityAvailable > 0)
	{
		//show the choice of quantities
		$('#quantity_wanted_p:hidden').show('slow');
		
		//show the "add to cart" button ONLY if it was hidden
		$('#add_to_cart:hidden').fadeIn(600);
		$('#add_to_cart_and_buy:hidden').fadeIn(600);
		
		//hide the hook out of stock
		$('#oosHook').hide();
		
		//availability value management
		if (availableNowValue != '')
		{
			//update the availability statut of the product
			$('#availability_value').removeClass('warning-inline');
			$('#availability_value').text(availableNowValue);
			$('#wrong_choice:hidden').show();
		}
		else
		{
			//hide the availability value
			$('#wrong_choice:visible').hide();
		}
		
		//'last quantities' message management
		if (quantityAvailable <= maxQuantityToAllowDisplayOfLastQuantityMessage && !allowBuyWhenOutOfStock)
		{
			//display the 'last quantities' message
			$('#last_quantities').show('slow');
		}
		else
		{
			//hide the 'last quantities' message
			$('#last_quantities').hide('slow');
		}
	
		//display the quantities of pieces (only if allowed)
		if (quantitiesDisplayAllowed)
		{
			$('#pQuantityAvailable:hidden').show('slow');
			$('#quantityAvailable').text(quantityAvailable); 
			if(quantityAvailable < 2)
			{
				$('#quantityAvailableTxt').show();
				$('#quantityAvailableTxtMultiple').hide();
			}
			else
			{
				$('#quantityAvailableTxt').hide();
				$('#quantityAvailableTxtMultiple').show();
			}
		}
	}
	else
	{
		//show the hook out of stock
		$('#oosHook').show();
		if ($('#oosHook').length > 0 && function_exists('oosHookJsCode'))
			oosHookJsCode();
		
		//hide 'last quantities' message if it was previously visible
		$('#last_quantities:visible').hide('slow');

		//hide the quantity of pieces if it was previously visible
		$('#pQuantityAvailable:visible').hide('slow');
		
		//hide the choice of quantities
		if (!allowBuyWhenOutOfStock)
			$('#quantity_wanted_p:visible').hide('slow');
		
		//display that the product is unavailable with theses attributes
		if (!selectedCombination['unavailable'])
			$('#availability_value').text(doesntExistNoMore + (globalQuantity > 0 ? ' ' + doesntExistNoMoreBut : '')).addClass('warning-inline');
		else
			$('#availability_value').text(doesntExist).addClass('warning-inline');
		$('#wrong_choice:hidden').show();


		var wrong_date = false;
		if($('#choose_date').attr('checked')){
			if($('#date_presta option:selected').attr('id') == 'to_define')
				wrong_date = true;
		}		

		//show the 'add to cart' button ONLY IF it's possible to buy when out of stock AND if it was previously invisible
		if (allowBuyWhenOutOfStock && !selectedCombination['unavailable'] && !wrong_date)
		{
			$('#add_to_cart:hidden').fadeIn(600);
			$('#add_to_cart_and_buy:hidden').fadeIn(600);

			if (availableLaterValue != '')
			{
				$('#availability_value').text(availableLaterValue);
				$('p#wrong_choice:hidden').show('slow');
			}
			else
				$('p#wrong_choice:visible').hide('slow');			
		}
		else
		{
			$('#add_to_cart:visible').fadeOut(600);
			$('#add_to_cart_and_buy').fadeOut(600);
			$('p#wrong_choice:hidden').show('slow');
		}		
			
	}
	
	//update display of the the prices in relation to tax, discount, ecotax, and currency criteria
	if (!selectedCombination['unavailable'])
	{
		var attribut_price_tmp = selectedCombination['price'];

		var tax = noTaxForThisProduct ? 1 : ((taxRate / 100) + 1);

		if (noTaxForThisProduct)
			attribut_price_tmp /= tax;

		if (selectedCombination['reference'])
		{
			$('#product_reference span').text(selectedCombination['reference']);
			$('#product_reference:hidden').show();
		}
		else
			$('#product_reference:visible').hide('slow');

		var productPriceWithoutReduction2 = (attribut_price_tmp + productPriceWithoutReduction) * currencyRate;
		
		if (reduction_from != reduction_to && (currentDate > reduction_to || currentDate < reduction_from))
			var priceReduct = 0;
		else
			var priceReduct = productPriceWithoutReduction2 / 100 * parseFloat(reduction_percent) + (reduction_price * currencyRate);
		var priceProduct = productPriceWithoutReduction2 - priceReduct;
		var productPricePretaxed = (productPriceWithoutReduction2 - priceReduct) / tax;

		if (displayPrice == 1)
		{
			priceProduct = productPricePretaxed;
			productPriceWithoutReduction2 /= tax;
		}

		if (group_reduction)
			priceProduct *= group_reduction;
			
		
		priceProduct += getOptionsPrice();
		
		//$('#our_price_display').text(formatCurrency(priceProduct, currencyFormat, currencySign, currencyBlank));
		$('.finalprice').each(function(){
			$(this).text(formatCurrency(priceProduct, currencyFormat, currencySign, currencyBlank));
		});
		
		$('#pretaxe_price_display').text(formatCurrency(productPricePretaxed, currencyFormat, currencySign, currencyBlank));
		$('#old_price_display').text(formatCurrency(productPriceWithoutReduction2, currencyFormat, currencySign, currencyBlank));
		$('#ecotax_price_display').text(formatCurrency(selectedCombination['ecotax'], currencyFormat, currencySign, currencyBlank));
	}
}




//updateDisplay();




function getProductPrice(){
	var price = $('#productPriceWithTax').attr('value');
	return parseFloat(price);
}

function getOptionsPrice(){
	var opt_price = 0;
	opt_price += $('#dvd_stage input:checked').attr('value') == "oui" ? 49 : 0;
	opt_price += $('#decouverte_lotus input:checked').attr('value') == "oui" ? 50 : 0;
	opt_price += $('#decouverte_sensation input:checked').attr('value') == "oui" ? 75 : 0;
	return opt_price;
}

function getOptionPrice(id){
	var price = 0;
	$('div#'+id+' input').each(function(){
		if($(this).attr('id') == "oui" && $(this).attr('checked')){
			price = parseFloat($(this).val());
		}
	});
	return price;
}

function getOptionProductId(idOption, attr, attr_value){
	var idProduct = 0;
	$('div#'+idOption+' input').each(function(){
		if($(this).attr(attr) == attr_value && $(this).attr('checked')){
			idProduct = parseInt($(this).attr('name'));
		}
	});
	return idProduct;
}

function onSelectOption(id, checked){

	var pp = getProductPrice();
	var ops_p = getOptionsPrice() + pp;
	/*$('#our_price_display').text(formatCurrency(ops_p, currencyFormat, currencySign, currencyBlank));*/
	$('.finalprice').each(function(){
		$(this).text(formatCurrency(ops_p, currencyFormat, currencySign, currencyBlank));
	});
	updateDisplay();
	
	if(checked){
		var pid = getOptionProductId(id, 'id', "oui");
		ajaxCart.add(pid, null, false, this);
	}else{
		var pid = getOptionProductId(id, 'id', "non");
		ajaxCart.remove(pid, null, null);
	}
	ajaxCart.refresh();
}

//update display of the large image
function displayImage(domAAroundImgThumb)
{
    if (domAAroundImgThumb.attr('href'))
    {
        var newSrc = domAAroundImgThumb.attr('href').replace('thickbox','large');
        if ($('#bigpic').attr('src') != newSrc)
		{ 
            $('#bigpic').fadeOut('fast', function(){
                $(this).attr('src', newSrc).show();
                if (typeof(jqZoomEnabled) != 'undefined' && jqZoomEnabled)
	                $(this).attr('alt', domAAroundImgThumb.attr('href'));
            });
        }
        $('#views_block li a').removeClass('shown');
        $(domAAroundImgThumb).addClass('shown');
    }
}

// Serialscroll exclude option bug ?
function serialScrollFixLock(event, targeted, scrolled, items, position)
{
	serialScrollNbImages = $('#thumbs_list li:visible').length;
	serialScrollNbImagesDisplayed = 3;
	
	var leftArrow = position == 0 ? true : false;
	var rightArrow = position + serialScrollNbImagesDisplayed >= serialScrollNbImages ? true : false;
	
	$('a#view_scroll_left').css('cursor', leftArrow ? 'default' : 'pointer').css('display', leftArrow ? 'none' : 'block').fadeTo(0, leftArrow ? 0 : 1);		
	$('a#view_scroll_right').css('cursor', rightArrow ? 'default' : 'pointer').fadeTo(0, rightArrow ? 0 : 1).css('display', rightArrow ? 'none' : 'block');
	return true;
}

// Change the current product images regarding the combination selected
function refreshProductImages(id_product_attribute)
{
	$('#thumbs_list_frame').scrollTo('li:eq(0)', 700, {axis:'x'});
	$('#thumbs_list li').hide();
	id_product_attribute = parseInt(id_product_attribute);

	if (typeof(combinationImages) != 'undefined' && typeof(combinationImages[id_product_attribute]) != 'undefined')
	{
		for (var i = 0; i < combinationImages[id_product_attribute].length; i++)
			$('#thumbnail_' + parseInt(combinationImages[id_product_attribute][i])).show();
	}
	//$('#thumbs_list_frame').width((parseInt(($('#thumbs_list_frame >li').width())* i) + 3) + 'px'); //  Bug IE6, needs 3 pixels more ?
	$('#thumbs_list').trigger('goto', 0);
	serialScrollFixLock('', '', '', '', 0);// SerialScroll Bug on goto 0 ?
}

//To do after loading HTML
$(document).ready(function()
{
	//init the serialScroll for thumbs
	$('#thumbs_list').serialScroll({
		items:'li:visible',
		prev:'a#view_scroll_left',
		next:'a#view_scroll_right',
		axis:'x',
		offset:0,
		start:0,
		stop:true,
		onBefore:serialScrollFixLock,
		duration:700,
		step: 2,
		lazy: true,
		lock: false,
		force:false,
		cycle:false
	});
	
	//alert('ok');
	$('#dvd_stage input').click(function(){
		updateDisplay();
	});	
	$('#decouverte_lotus input').click(function(){
		updateDisplay();
	});
	$('#decouverte_sensation input').click(function(){
		updateDisplay();
	});


	$('#thumbs_list').trigger('goto', 1);// SerialScroll Bug on goto 0 ?
	$('#thumbs_list').trigger('goto', 0);

	//hover 'other views' images management
	$('#views_block li a').hover(
		function(){displayImage($(this));},
		function(){}
	);
	
	//set jqZoom parameters if needed
	if (typeof(jqZoomEnabled) != 'undefined' && jqZoomEnabled)
	{
		$('img.jqzoom').jqueryzoom({
			xzoom: 200, //zooming div default width(default width value is 200)
			yzoom: 200, //zooming div default width(default height value is 200)
			offset: 21 //zooming div default offset(default offset value is 10)
			//position: "right" //zooming div position(default position value is "right")
		});
	}

	//add a link on the span 'view full size' and on the big image
	$('span#view_full_size, div#image-block img').click(function(){
		$('#views_block li a.shown').click();
	});

	//catch the click on the "more infos" button at the top of the page
	$('div#short_description_block p a.button').click(function(){
		$('#more_info_tab_more_info').click();
		$.scrollTo( '#more_info_tabs', 1200 );
	});
	


		/*	if($('#date_presta option:selected').attr('id') == "to_define" && $('#choose_date').attr('checked')){
				colorizeElement($('select#date_presta'),'border-color','#FF7373');*/
		
	$('#choose_bon_cadeau').click(function(){
		if($(this).attr('checked')){
			$('#e2').hide();
		}
		//updateDisplay();
	});
	
	
	$('#choose_date').click(function(){
		if($(this).attr('checked')){
			if($('#date_presta option:selected').attr('id') == 'to_define')
				$('#e2').show();
			else
				$('#e2').hide();
		}
	});
	

	$('#date_presta').change(function(){
		if($('#date_presta option:selected').attr('id') == 'to_define')
			$('#e2').show();
		else
			$('#e2').hide();
		//updateDisplay();
	});



	// Hide the customization submit button and display some message
	$('p#customizedDatas input').click(function() {
		$('p#customizedDatas input').hide();
		$('p#customizedDatas').append('<img src="' + img_ps_dir + 'loader.gif" alt="" /> ' + uploading_in_progress);
	});


	$('#choose_bon_cadeau').click(function()
	{
		$('#id_date_presta').hide(300);
	});
	$('#choose_date').click(function()
	{
		$('#id_date_presta').show(300);
	});
	
	
	//init the price in relation of the selected attributes
	if (typeof productHasAttributes != 'undefined' && productHasAttributes)
		findCombination(true);

	//
	$('a#resetImages').click(function() {
		updateColorSelect(0);
	});
});


function saveCustomization()
{
	$('#quantityBackup').val($('#quantity_wanted').val());
	$('body select[@id^="group_"]').each(function() {
		$('#customizationForm').attr('action', $('#customizationForm').attr('action') + '&' + this.id + '=' + parseInt(this.value));
	});
	$('#customizationForm').submit();
}



/**
 *
 * Customs functions
 *
 */
 
 // lorsque l'utilisateur selectionne une déclinaison, il libère l'option suivante.
// si l'utilisateur selectionne l'option 'Au choix du bénéficiaire', le système répercute le choix sur les autres options
function onSelect(id_selector)
{
	var nextID = id_selector;
	nextID ++;
	
	// pour l'option 1 (choix du nombre de tour), on ne met pas à jour l'affichage
	if(id_selector == 1)
	{
		var group = document.getElementById("group_"+nextID);
		if(group != null){
			$(group).attr('disabled', false);
			var p = $('p#p'+nextID);
			if(p != null)
				$('p#p'+nextID).show(1000);
		}
		/*
		if(document.getElementById("group_"+nextID) != null && !disable){
			document.getElementById("group_"+nextID).disabled=false;
			//document.getElementById("p"+nextID).style.display='block';
			$('p#p'+nextID).show(1000);
		}*/
		findCombination();
		return;
	}
	
	// désactivation du champs
	document.getElementById("group_"+id_selector).disabled=true;
	
	// on cherche si l'option 'Au choix du bénéficiaire' est sélectionné
	var containAuChoix = false;
	$('div#attributes select').each(function()
	{
		var id = $(this).attr('id');
		if(id != 'group_1'){
			containAuChoix = containAuChoix || childsValueContain($(this),'Au choix du bénéficiaire');
		}
	});
	
	// si une option est 'Au choix du bénéficiaire', on affecte 'Au choix du bénéficiaire' à toutes les autres
	if(containAuChoix)
	{
		var selectID;
		var disable = false;
		// pour chaque champs select, on selectionne l'option 'Au choix du bénéficiaire' parmit les différentes options
		$('div#attributes select').each(function()
		{
			// selectionner l'option 'Au choix du bénéficiaire'
			selectOption($(this),'Au choix du bénéficiaire');
			// désactiver le champs sauf le champs nombre de tour
			selectID = $(this).attr('id');
			if(selectID != 'group_1'){
				document.getElementById(selectID).disabled=true;
				disable = true;
			}
		});
		// 
		$('div#attributes p').each(function()
		{
			selectID = $(this).attr('id');
			$('p#'+selectID).show(1000);
		});
	}
	
	// Désactiver et afficher le champs suivant
	if(document.getElementById("group_"+nextID) != null && !disable){
		document.getElementById("group_"+nextID).disabled=false;
		$('p#p'+nextID).show(1000);
	}
	
	// trouver les combinaisons
	findCombination();
}

// L'option 'value' est-elle sélectionnée dans 'selector' ?
function childsValueContain(selector, value){
	var idChild;
	var returnValue = false;
	var childs = selector.children();
		childs.each(function()
		{
			var name = $(this).attr('text');
			var selected = $(this).attr('selected');
			if(name == value && selected){
				returnValue = true;
			}
		});
	return returnValue;
}

// Sélectionner l'option 'value' dans 'selector'
function selectOption(selector, value){
	updateChildAttribute(selector, 'text', value);
}

// Met à jour un composant selector, en selectionnant une option 
function updateChildAttribute(selector, attr_name, value){
	var idChild;
	var childs = selector.children();
		childs.each(function()
		{
			var name = $(this).attr(attr_name);
			if(name == value){
				$(this).attr('selected', 'selected');
			}
		});
}

// Restaure les selecteur à leur état initial
function restaureAllSelector(){

	$('div#attributes select').each(function()
	{
		var childs = $(this).children();
		childs.each(function()
		{
			if($(this).attr('value') == "to_define"){
				$(this).attr('selected', 'selected');
				return;
			}
		});
	});
}

// RAZ (Remise à zéro) de tous les selecteurs, le 1er champs reste accessibles tandis que les autres disparaissent et son désactivés
function updateChoice(){
	
	var counter = 1;
	$('div#attributes select').each(function()
	{
		var select_id = $(this).attr('id');
		if(counter != 1){
			$('p#p'+counter).hide(1000);
			document.getElementById(select_id).disabled=false;
		}else{
			document.getElementById(select_id).disabled=false;
		}
		counter ++;
	});
	// restaurer la selection initiale
	restaureAllSelector();

	//onSelectOption();
	// met à jour l'affichage
	findCombination();
}







// L'internaute a-t-il coché : DVD du stage ?
function dvd_stage_checked(){
	var v = $('input#dvd_oui').val();
	if(v == "on")
		return true;
	else
		return false;
}


// L'internaute a-t-il coché : Baptême passager ?
function bapteme_stage_checked(){
	var v = $('input#bapteme_oui').val();
	if(v == "on")
		return true;
	else
		return false;
}

// Le stage est-il de type formule 3 ou legends cars ?
function stage_type_f3(){
	var type = $('input#product_type').val();
	if(type == "Formule 3" || type == "Legends Cars")
		return true;
	return false;
}


/** End Valid form **/
/*
function onSelectCadeau(){
	findCombination();
}*/
