// JavaScript Document
jQuery.noConflict();
var j$ = jQuery;
//url
var url_customer = "/api/customer.php";
var url_cart = "/api/cart.php";

//クッキー取得
//mycuoca
j$(function (){
	ULID = j$.cookie('ULID');
	UPID = j$.cookie('UPID');
	if(ULID && UPID){
		var ntime = (new Date()).getTime();
		j$.getJSON(url_customer,{type:'json',cust_id:ULID,passwd:UPID,ntime:ntime},callbackGetCustomerData);
	}
	else{
		j$("#sidemycuoca-name").html("ようこそ、ゲストさん");
		j$("#sidemycuoca-point").html('クオカポイント<span class="attention">0pt</span>');
		j$("#sidemycuoca-r").html('<a href="https://mycuoca.cuoca.com/index.html?mode=login">ログイン</a>');
		//送料無料コメント(1/2)
		//j$("#header").after('<div style="background-color:#f7e657; padding:5px;width:890px;margin-bottom:5px;"><img src="http://www.cuoca.com/library/common/parts/0yen_icon.gif" style="vertical-align:-3px;" /><font color="#e42424"><b><span style="font-size:14px;">【初回送料無料キャンペーン】 クオカで初めてご購入のお客様に限り送料無料！6月25日まで ※Webでご注文3,000円以上</span></b></font></div>');
	}
});
//
//smartcart
j$(function (){
	UCRT = j$.cookie('UCRT');
	CSD = j$.cookie('CSD');
	if(UCRT && CSD){
		var ntime = (new Date()).getTime();
		j$.getJSON(url_cart,{type:'json',code:UCRT,key:CSD,ntime:ntime},callBackCartUpDate);
	}
	else{
	}
});

//mycuoca表示
function callbackGetCustomerData(data, status) {
	//j$.dump(data,status);
	if(data.result == "OK"){
		j$("#sidemycuoca-name").html("ようこそ、"+data.customer.last_name + data.customer.first_name+"さん");
		j$("#sidemycuoca-point").html('クオカポイント<span class="attention">' + data.customer.point + 'pt</span>');
		j$("#sidemycuoca-r").html('<a href="https://mycuoca.cuoca.com/login.php?mode=logout&ref=/index.html">ログアウト</a>');
	}
	else{
		j$("#sidemycuoca-name").html("ようこそ、ゲストさん");
		j$("#sidemycuoca-point").html('クオカポイント<span class="attention">0pt</span>');
		j$("#sidemycuoca-r").html('<a href="https://mycuoca.cuoca.com/index.html?mode=login">ログイン</a>');
		//送料無料コメント(2/2)
		//j$("#header").after('<div style="background-color:#f7e657; padding:5px;width:890px;margin-bottom:5px;"><img src="http://www.cuoca.com/library/common/parts/0yen_icon.gif" style="vertical-align:-3px;" /><font color="#e42424"><b><span style="font-size:14px;">【初回送料無料キャンペーン】 クオカで初めてご購入のお客様に限り送料無料！6月25日まで ※Webでご注文3,000円以上</span></b></font></div>');
	}
}

//smartCart表示
function callBackCartUpDate(data,status){
	//j$.dump(data,true);
	if(data.item_count  >= 1){
		j$("#smartcart-mes,#cart-item-etc").css("display","none");
		j$("#cart-items,#to-order-step-header,#to-order-step-footer").css("display","block");
		var last = data.last_adding[0];
		var innerContents = '';
		innerContents += '<div id="add-item-image"><a href="#"><img src="'+last.image+'" alt="'+last.name+'" width="100"></a></div>';
		innerContents += '<div class="cart-item clearfix">';
		innerContents += '<div class="cart-item-name"><a href="'+last.url+'">'+last.name+'</a></div>';
		innerContents += '<div class="cart-item-num">数量　'+last.count+'</div>';
		innerContents += '<div class="cart-item-value">単価　'+last.price+'円</div>';
		j$("#com_data_publish_last_in0").html(innerContents);
		//合計金額
		j$("#com_data_publish_count_all_sum").html(data.item_count);
		j$("#com_data_publish_price_all_sum").html(data.price_sum);
		j$("#com_data_publish_carry_sum").html(data.soryo_sum);
		j$("#com_data_publish_total_sum").html(data.total_sum);
		j$("#com_data_publish_soryo_alert_sum").html(data.soryo_alert);
	}
	if(data.item_count > 1){
		j$("#cart-item-etc").css("display","block");
		j$("#cart-item-etc").html("");
		//
		for(i=1;i<data.items.length;i++){
			innerContents = ''; 
			innerContents += '<div class="cart-item clearfix">';
			innerContents += '<div class="cart-item-name"><a href="'+ data.items[i].url +'">'+ data.items[i].name +'</a></div>';
			innerContents += '<div class="cart-item-num">数量　'+ data.items[i].count +'</div>';
			innerContents += '<div class="cart-item-value">単価　'+ data.items[i].price +'円</div>';
			innerContents += '</div>';
			j$("#cart-item-etc").append(innerContents);
		}
	}
}
