international.js 4.14 KB
/**
 * 国际账号登录
 * @author: xuqi<qi.xu@yoho.cn>
 * @date: 2015/10/8
 */
var $ = require('yoho-jquery');
var ImgCheck = require('plugin/img-check');

var $phoneNum = $('#phone-num'),
    $countrySelect = $('#country-select'),
    $areaCode = $('#area-code'),
    $pwd = $('#pwd'),
    $loginBtn = $('#btn-login'),

    $captcha = $('#js-img-check'),

    pnPass = false,
    pwdPass = false;

var api = require('../api');
var tip = require('../../plugin/tip');

var trim = $.trim;
var showErrTip = tip.show;

var imgCheck = new ImgCheck($captcha, {
    useREM: {
        rootFontSize: 40,
        picWidth: 150
    }
});

if ($captcha.data('init') != null) { //eslint-disable-line
    imgCheck.init();
}


// 登录按钮状态切换
function switchLoginBtnStatus() {
    var bool = !(pnPass && pwdPass);

    $loginBtn.toggleClass('disable', bool);
}

function resetForm() {
    $pwd.val('').focus();
    $loginBtn.text('登录').addClass('disable');
}

// Android-UC下显示select的direction:rtl无效的临时解决办法
api.selectCssHack($countrySelect);

// 显示隐藏密码
api.bindEyesEvt();

// 清空手机号码
api.bindClearEvt();

$phoneNum.bind('input', function() {
    if (trim($phoneNum.val()) === '') {
        pnPass = false;
    } else {
        pnPass = true;
    }

    switchLoginBtnStatus();
});

$pwd.bind('input', function() {
    var pwd = trim($pwd.val());

    if (pwd === '') {
        pwdPass = false;
    } else {
        pwdPass = true;
    }

    switchLoginBtnStatus();
});

$countrySelect.change(function() {
    $areaCode.text($countrySelect.val());
});

$loginBtn.on('touchstart', function() {
    var pn = trim($phoneNum.val()),
        areaCode = $countrySelect.val(),
        pwd = trim($pwd.val()),
        captcha = null;

    if ($loginBtn.hasClass('disable')) {
        return;
    }

    if (imgCheck.atWorking) {
        captcha = imgCheck.getResults();

        if (captcha === '0000') {
            return tip.show(' 请将图片旋转到正确方向');
        }
    }


    $loginBtn.text('正在登录...').addClass('disable');

    if ((api.phoneRegx[areaCode].test(pn) || areaCode !== '+86') && api.pwdValidate(pwd)) {
        let data = {
            areaCode: areaCode.replace('+', ''),
            account: pn,
            password: pwd
        };

        if (imgCheck.atWorking) {
            $.extend(data, {captcha});
        }

        $.ajax({
            type: 'POST',
            url: '/passport/login/auth',
            data,
            success: function(data) {
                var res,
                    time;

                if (data.code === 200) {
                    res = data.data;
                    showErrTip('登录成功');

                    $.ajax({
                        url: res.session,
                        dataType: 'jsonp',
                        success: function() {
                            clearTimeout(time);

                            // Cookie写入成功后,1s后跳转页面
                            setTimeout(function() {
                                location.href = res.href;
                            }, 1000);
                        }
                    });

                    // 3秒后强制跳转
                    time = setTimeout(function() {
                        location.href = res.href;
                    }, 3000);

                    $loginBtn.text('登录成功').off();
                    showErrTip('登录成功');
                } else {
                    if (data.captchaShow) {
                        imgCheck.atWorking ? imgCheck.refresh() : imgCheck.init();
                    }

                    showErrTip(data.message);
                    resetForm();
                }
            },
            error: function() {
                showErrTip('网络断开连接啦~');
                $loginBtn.text('登录');

                imgCheck.atWorking && imgCheck.refresh();
            }
        });
    } else {
        showErrTip('账号或密码有错误,请重新输入');
        $loginBtn.text('登录').addClass('disable');
    }
});

// 对初始有默认值的情况去初始化登录按钮状态
$phoneNum.trigger('input');
$pwd.trigger('input');