select-coupon.page.js 4.95 KB
/**
 * 优惠券选择
 * @author: bikai<kai.bi@yoho.cn>
 * @date: 2015/12/10
 */
require('cart/select-coupon.page.css');
let $ = require('yoho-jquery'),
    ellipsis = require('yoho-mlellipsis'),
    loading = require('plugin/loading'),
    tip = require('plugin/tip'),
    conponTmpl = require('cart/select-coupon/coupon.hbs'),
    conponNotAvaliableTmpl = require('cart/select-coupon/coupon-not-avaliable.hbs'),
    orderInfo = require('./order-info').orderInfo;

let isGetData;

let $newCoupon = $('#new-coupon'),
    linkUrl = document.referrer,
    $couponList = $('#coupon-list');

let winH = $(window).height();

require('common');

function fixedLayOut() {
    let $null = $('.null'),
        navH = $('.nav-title').height(),
        nullH = $null.height();

    if ($null.length === 0) {
        return false;
    }

    $null.css({
        top: winH / 2 - nullH / 2 + navH
    });
}

ellipsis.init();

function goToBack() {
    if (linkUrl) {
        window.location.href = linkUrl;
    } else {
        history.go(-1);
    }
}

$newCoupon.on('submit', function() {
    let $this = $(this);

    if (!$this.find('[name="couponCode"]').val()) {
        tip.show('请输入优惠券码');
        return false;
    }
    $.ajax({
        method: 'POST',
        url: '/cart/index/new/couponSearch',
        data: $this.serialize()
    }).then(function(res) {
        if (res.message) {
            tip.show(res.message);
        }
        if (res.code === 200) {
            tip.show('优惠券可用');

            // 实付金额发生变化,使用有货币为0
            orderInfo('yohoCoin', 0);
            orderInfo('couponCode', res.data.coupon_code);
            orderInfo('couponName', res.data.coupon_title);
            goToBack();
        }
    }).fail(function() {
        tip.show('网络错误');
    });
    return false;
});

$couponList.on('touchstart', '.employ-main', function() {
    let $this = $(this);

    $this.siblings().removeClass('focus');
    $this.addClass('focus');
}).on('touchend touchcancel', '.employ-main', function() {
    let $this = $(this);

    $this.siblings().removeClass('focus');
    $this.removeClass('focus');
});

$('body').on('touchend', '.not-use', function() {
    orderInfo('couponCode', null);
    orderInfo('couponName', null);

    // 实付金额发生变化,使用有货币为0
    orderInfo('yohoCoin', 0);
    goToBack();
});


$newCoupon.find('input').on('input', function() {
    if ($(this).val() !== '') {
        $newCoupon.find('.submit').css('background', '#444');
    } else {
        $newCoupon.find('.submit').css('background', '#b0b0b0');
    }
});

function getCouponHandle(allCoupons) {
    let notAvailableCoupons,
        coupons;

    // 把可用和不可用的优惠券分离出来
    notAvailableCoupons = allCoupons.notAvailableCoupons;
    coupons = allCoupons.coupons;

    // 没有优惠券
    if (!(notAvailableCoupons.length || coupons.length)) {
        $('.coupon-wrap').html($('#tmpl-no-coupon').html());
        fixedLayOut();
        return;
    }


    $.each(coupons, function(i, coupon) {
        coupon.couponValue = Math.floor(coupon.couponValue);
    });

    $.each(notAvailableCoupons, function(i, coupon) {
        coupon.couponValue = Math.floor(coupon.couponValue);
    });

    // 渲染可用的优惠券
    $couponList.append(conponTmpl({
        coupons: coupons
    })).find('.employ-main').on('touchstart', function() {
        let couponCode = $(this).data('coupon-code');

        $.ajax({
            method: 'POST',
            url: '/cart/index/new/couponSearch',
            data: {
                couponCode: couponCode
            }
        }).then(function(res) {
            if (res.code === 200) {

                // tip.show('优惠券可用');
                orderInfo('couponCode', res.data.coupon_code);
                orderInfo('couponName', res.data.coupon_title);

                // 实付金额发生变化,使用有货币为0
                orderInfo('yohoCoin', 0);
                goToBack();
            } else if (res.message) {
                tip.show(res.message);
            }
        }).fail(function() {
            tip.show('网络错误');
        });
    });

    if (notAvailableCoupons.length) {
        $('.not-avaliable-coupon-line').show();
    }
    $('#coupon-list-not').append(conponNotAvaliableTmpl({
        notAvailableCoupons: notAvailableCoupons
    }));
    window.rePosFooter();

}

function getCouponDate() {

    if (isGetData) {
        return;
    }

    loading.showLoadingMask();
    isGetData = true;

    $.ajax({
        type: 'GET',
        url: '/cart/index/new/couponList',
        dataType: 'json'
    }).then(getCouponHandle).fail(function() {

        // tip.show('加载优惠券失败');
    }).always(function() {
        isGetData = false;
        loading.hideLoadingMask();
    });
}

getCouponDate();

// $(window).scroll(function() {
//     if ($(window).scrollTop() + $(window).height() > $('body').height() * 0.9) {
//         getCouponDate();
//     }
// });