cart.js 16.3 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
/**
 * [购物车] 购物袋
 * @author: jinhu.dong<jinhu.dong@yoho.cn>
 * @date: 2016/07/08
 * @module shopping/cart
 */

var Dialog = require('../../plugins/dialog');
var JSON = require('yoho-json2');
var _confirm = Dialog.Confirm;
var _alert = Dialog.Alert;
var Util = require('./util');

// var hbs = require('yoho-handlebars');
var Stepper = require('./stepper');

// 删除商品信息
var removedProSkus = [];
var removedProsInfo = [];

// 模版
var removedGoodsTpl = require('../../../tpl/shopping/removed-goods.hbs');
var editTpl = require('../../../tpl/shopping/edit-color-size.hbs');

var Cart;

require('yoho-jquery-dotdotdot');

function dotName() {

    // product name dotdotdot
    $('.pro-name a').dotdotdot({
        wrap: 'letter'
    });
}

Cart = {
    /*
     * 添加到购物车
     * @function [addToCart]
     * @params { String } productSku 购买商品Sku码
     * @params { Number } buyNumber 购买商品数量
     * @params { Function } callback 购买结果回调
     */
    addToCart: function(params, callback) {
        Util.ajax({
            url: '/shopping/cart/add',
            type: 'POST',
            data: params,
            success: function(res) {
                if (res.code === 200) {
                    if (callback) {
                        return callback(res);
                    }
                }
            }
        });
    },

    /*
     * 显示商品库存不足提示
     * @function [toggleNotEnough]
     * @params { Object } target 提示显示在目标DOM对象
     * @params { Object } bCheckAll 显示全选提示还是单个商品提示
     */
    toggleNotEnough: function(target, bCheckAll) {
        var msg = '您勾选的商品库存不足',
            allKlass = '',
            tooltip;

        if (bCheckAll) {
            msg = '您全选的商品中存在库存不足商品,已帮您自动取消勾选';
            allKlass = 'all';
        }

        tooltip = $('<div class="tooltip">' +
            '<div class="content ' + allKlass + '">' + msg + '</div>' +
            '<div class="indicator"></div>' +
          '</div>');

        tooltip.appendTo(target);

        setTimeout(function() {
            tooltip.remove();
        }, 2000);
    },

    /*
     * 取消全选
     * @function [toggleCheckAllPros]
     * @params { Boolean } checked 选择,取消选择
     */
    toggleCheckAllPros: function(checked) {
        var data = [],
            goodInfo;

        $('#cart_content').find('li.chk').each(function() {
            goodInfo = $.parseJSON($(this).attr('data-product_info'));
            goodInfo.selected = checked;
            data.push(goodInfo);
        });

        Cart.resetCheckAllStyle();
        Cart.toggleSelectGoods(data);
    },

    /*
     *  取消全选样式,选择商品数量没有达到
     *  @function [resetCheckAllStyle]
     */
    resetCheckAllStyle: function() {
        $('.chk-all').removeClass('chk-group');
    },

    /*
     *  根据服务端JSON,刷新购物车信息
     *  @function [refreshCart]
     *  @params { Function } callback 刷新购物车后的回调函数
     */
    refreshCart: function(callback) {
        Util.ajax({
            url: '/shopping/cart/data',
            success: function(res) {
                Util.refreshCart(res, function() {
                    Stepper.init();

                    if (callback) {
                        return callback();
                    }
                });
            }
        });
    },

    /*
     *  选择与取消选择
     *  @function [toggleSelectGoods]
     *  @params { Array } data 选择与取消选择商品信息
     */
    toggleSelectGoods: function(data) {
        $.ajax({
            type: 'POST',
            url: '/shopping/cart/toggleSelectGoods',
            data: {skuList: JSON.stringify(data)},
            dataType: 'json'
        }).done(function(res) {
            if (res.code === 200) {
                Util.refreshCart(res, function() {
                    Stepper.init();
                });
            } else {
                new _alert(res.message).show();
            }
        }).fail(function() {

        });
    },

    /*
     *  单选每一个商品判断是否需要全选
     *  @function [toggleCheck]
     *  @params { Object } target 单个商品
     */
    toggleCheck: function(target) {
        var $this = $(target),
            $checkoutBtn = $('#checkout_btn'),
            checkAll = $this.hasClass('chk-all');

        var goodInfo;
        var data = [];

        if ($this.hasClass('chk-group')) {
            // 取消选择
            $this.removeClass('chk-group');
            $checkoutBtn.addClass('disable');

            if (checkAll) {
                Cart.toggleCheckAllPros('N');
            } else {
                Cart.resetCheckAllStyle();
                goodInfo = $.parseJSON($this.parent().attr('data-product_info'));
                goodInfo.selected = 'N';
                data.push(goodInfo);
                Cart.toggleSelectGoods(data);
            }
        } else {
            // 选择
            if (checkAll) {
                Cart.toggleCheckAllPros('Y');
            } else {
                goodInfo = $.parseJSON($this.parent().attr('data-product_info'));
                goodInfo.selected = 'Y';
                data.push(goodInfo);
                Cart.toggleSelectGoods(data);
            }
        }
    },

    /*
     *  删除商品
     *  @function [removePro]
     *  @params { Array } products 商品列表
     *  @params { Array } extraInfos 删除商品额外信息
     */
    removePro: function(products, extraInfos) {
        var dialog;

        if (products.length) {
            dialog = new _confirm({
                content: '您确定要从购物车中删除该商品吗?',
                cb: function() {
                    dialog.close();
                    Util.ajax({
                        url: '/shopping/cart/product/remove',
                        data: {skuList: JSON.stringify(products)},
                        type: 'DELETE',
                        success: function(res) {
                            Util.refreshCart(res, function() {
                                Stepper.init();

                                // 显示或者更新删除商品模块
                                Cart.showRemovedProducts(products, extraInfos);
                            });
                        }
                    });
                }
            }).show();
        } else {
            new _alert('请至少选中一件商品!').show();
        }
    },

    /*
     *  显示或者更新删除商品模块
     *  @function [removePro]
     *  @params { Array } products 已删除商品列表
     */
    showRemovedProducts: function(products, extraInfos) {
        var productsLen = products.length,
            index = 0,
            currentPro,
            currentExtraInfo,
            currentSku;

        var currentRemovedLen = removedProsInfo.length;
        var currentItemBuyNumber;

        // var template;

        if (extraInfos.length) {
            for (index; index < productsLen; index++) {
                currentPro = products[index];
                currentExtraInfo = extraInfos[index];
                currentSku = currentPro.product_sku;

                if (removedProSkus.indexOf(currentPro.product_sku) === -1) {
                    // 当前删除商品不存在
                    removedProSkus.push(currentSku);
                    removedProsInfo.push({
                        productName: currentExtraInfo.productName,
                        salesPrice: currentExtraInfo.salesPrice,
                        buyNumber: currentPro.buy_number,
                        productSku: currentSku,
                        productId: currentExtraInfo.productId,
                        goodsId: currentExtraInfo.goodsId,
                        cnAlphabet: currentExtraInfo.cnAlphabet,
                        goodType: currentExtraInfo.goodType,
                        selected: currentExtraInfo.selected
                    });
                } else {
                    // 当前删除商品是否已经存在,如果存在就累计数量
                    while (currentRemovedLen--) {
                        currentItemBuyNumber = removedProsInfo[currentRemovedLen].buyNumber;
                        if (removedProsInfo[currentRemovedLen].productSku === currentSku) {
                            removedProsInfo[currentRemovedLen].buyNumber = currentItemBuyNumber + currentPro.buy_number;
                        }
                    }
                }
            }
        }

        // 刷新
        $('#removed_products').html(removedGoodsTpl({
            removedProducts: removedProsInfo
        }));
    },

    /*
     *  商品移入收藏夹
     *  @function [sendToFavorite]
     *  @params { Array } products 商品列表
     *  @params { Function } callback 移入收藏夹成功后回调
     */
    sendToFavorite: function(products, callback) {
        var msg = '<p>确定要将该商品从购物车中移入收藏吗?</p><p>移入收藏后该商品将不在购物车中显示</p>';
        var dialog;

        if (!products.length) {
            new _alert('请至少选中一件商品!').show();
        } else {
            if (products.length > 1) {
                msg = '<p>确定要将已选中的商品从购物车中移入收藏吗?</p><p>移入收藏后已选中的商品将不在购物车中显示</p>';
            }

            // callback存在说明从删除模块收藏
            if (callback) {
                Util.ajax({
                    url: '/shopping/cart/product/send_to_favorite',
                    type: 'POST',
                    data: {skuList: JSON.stringify(products)},
                    success: function(res) {
                        Util.refreshCart(res, function() {
                            Stepper.init();

                            if (callback) {
                                return callback();
                            }
                        });
                    }
                });
            } else {
                dialog = new _confirm({
                    content: msg,
                    cb: function() {
                        dialog.close();
                        Util.ajax({
                            url: '/shopping/cart/product/send_to_favorite',
                            type: 'POST',
                            data: {skuList: JSON.stringify(products)},
                            success: function(res) {
                                Util.refreshCart(res, function() {
                                    Stepper.init();
                                });
                            }
                        });
                    }
                }).show();
            }
        }
    },

    /*
     *  修改商品颜色和尺寸
     *  @function [editColorOrSize]
     *  @params { String } productId 商品ID
     *  @params { String } skn 商品skn
     *  @params { String } defaultColor 商品默认颜色
     *  @params { String } defaultSize 商品默认尺寸
     *  @params { Function } setEditable 编辑商品回调
     */
    editColorOrSize: function(productId, skn, defaultColor, defaultSize, setEditable) {
        var index = 0;
        var colors;
        var colorsLen;
        var color;

        // 前端处理后的集合
        var filterSet = [];
        var defaultImg;
        var editTarget = $('#edit_' + productId);

        // 选择
        var selectColor;

        // sku
        var newProductSku;
        var oldProductSku;

        $.ajax({
            type: 'GET',
            url: '/product/item/getProductInfo',
            data: {
                productId: productId,
                skn: skn
            },
            success: function(res) {
                // 没有res.code
                if (res.colors) {
                    // 获取成功
                    colors = res.colors;
                    colorsLen = colors.length;
                    for (index; index < colorsLen; index++) {
                        color = colors[index];

                        // 迭代每一种颜色
                        filterSet.push({
                            proId: res.id,
                            color: color.color,
                            active: color.cur,
                            sizes: color.sizes,
                            pic: color.thumbs[0],
                            selectable: color.total > 0,
                            colorName: color.name
                        });
                        if (color.color === defaultColor && color.cur) {
                            defaultImg = color.thumbs[0];
                        }
                    }
                }

                editTarget.append(editTpl({
                    colors: filterSet,
                    defaultColor: defaultColor,
                    defaultSize: defaultSize,
                    defaultImg: defaultImg
                })
                );

                oldProductSku = editTarget.find('.current-sizes .current').attr('data-sku');

                editTarget.delegate('#confirm', 'click', function(e) {
                    e.preventDefault();
                    Util.ajax({
                        url: '/shopping/cart/updateProduct',
                        type: 'PUT',
                        data: {
                            swapData: JSON.stringify([{
                                buy_number: '1',
                                selected: 'Y',
                                new_product_sku: newProductSku,
                                old_product_sku: oldProductSku
                            }])
                        },
                        success: function(newCartData) {
                            editTarget.find('.edit-color-size').remove();
                            Util.refreshCart(newCartData);
                            setEditable();
                        }
                    });
                    return false;
                }).delegate('#cancel', 'click', function(e) {
                    e.preventDefault();
                    editTarget.find('.edit-color-size').remove();
                    setEditable();
                    return false;
                }).delegate('.edit-color-size', 'click', function(e) {
                    e.preventDefault();
                    return false;
                }).delegate('.color-item', 'click', function(e) {
                    e.preventDefault();
                    selectColor = $(this);
                    if (!selectColor.hasClass('current-color')) {
                        selectColor.addClass('current-color').siblings().removeClass('current-color');
                        selectColor.parent().siblings('.current-sizes').hide().removeClass('current-sizes');
                        editTarget.find('#' + selectColor.attr('data-target')).show().addClass('current-sizes')
                                  .end()
                                  .find('.right img').attr({
                                      src: selectColor.attr('data-imageurl'),
                                      title: selectColor.attr('data-title')
                                  })
                                  .end()
                                  .find('.selected-color').text(selectColor.attr('data-title'));
                    }
                    return false;
                }).delegate('.current-sizes .size-item', 'click', function() {
                    $(this).addClass('current').siblings('.current').removeClass('current');
                    newProductSku = $(this).attr('data-sku');
                });
            },
            fail: function() {
                new _alert('此商品无法编辑颜色和尺寸').show();
            },
            complete: function() {
                setEditable();
            }
        });

    },

    /*
     *  点击结算时检查商品库存
     *  @function [checkStorage]
     *  @params { Function } callback 检查完回调函数
     */
    checkStorage: function(callback) {
        Util.ajax({
            url: '/shopping/cart/checkStorage',
            success: function(res) {
                if (!res.noStorage.length) {
                    if (callback) {
                        return callback();
                    }
                } else {
                    new _alert(res.noStorage.join('<br/>') + '<br/>库存不足').show();
                }
            }
        });
    }
};

dotName();

module.exports = Cart;