﻿
Favorites = {

    sAddPage: '/Ajaxloading/FavoriteProduct/AddProductFavorite.aspx',

    Add: function(productId) {
    
        beforeAjaxLoading();

        $.ajax({
            type: "POST",
            url: this.sAddPage,
            data: 'productId=' + productId + '&randCode=' + Math.random(),
            dataType: "html",
            success: function(msg){
                msg = msg.replace('\r\n', '');
                msg = msg.replace('\r\n', '');
                
                afterAjaxLoading();
                
                if(msg == 'User not logged in yet') {
                    alert('Vui lòng đăng nhập để đưa sản phẩm vào danh sách yêu thích của bạn!');
                }
                else {
                    alert('Sản phẩm đã được đưa vào danh sách yêu thích của bạn!');
                }
            }
        });
    }
}
