index.js
9.9 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
/**
* @description 登录
* @author TaoHuang
* @time 2016/7/14
*/
var $ = require('yoho-jquery');
var EventProxy = require('yoho-eventproxy');
var $phoneNumInput = $('#account'),
$passwordInput = $('#password'),
$imgCaptchaInput = $('#captcha'),
$loginBtn = $('#login-btn'),
$phone = $('#phone');
var $loginTip = $loginBtn.siblings('.login-fail-tip'),
ep = new EventProxy();
var $regionCodeText = $('#country-code'),
$regionSelectList = $('#country-select-list'),
$regionSelectHeader = $('#country-select-header');
var $emailAutoComplete = $('#email-autocomplete');
var mailPhoneRegx = require('../common/mail-phone-regx');
var mailAc = require('../common/ac-email'); // 邮箱自动完成
var $remember = $('.remember-me');
var captchaUrl = '/passport/images?t='; // /passport/images?t=1454464125
var $captchaWrap = $('.captcha-wrap'),
$captchaImg = $captchaWrap.find('#captcha-img');
// checkbox status unicode
var checkbox = {
checked: '',
unchecked: ''
};
var upDown = {
up: '',
down: ''
};
var selectedIcon = '';
require('yoho-jquery-placeholder');
function errTip(ele, msg) {
var $errTip = ele.next('.tips');
var $errMsg = $errTip.find('.content');
$errMsg.text(msg);
return $errTip.removeClass('hide');
}
function hideTip(ele) {
return ele.next('.tips').addClass('hide');
}
// 验证账户名
function validateAccountLocal() {
var phoneNum = $.trim($phoneNumInput.val()),
regionCode = $regionCodeText.text();
if (phoneNum !== '') {
if (/^[0-9]+$/.test(phoneNum)) {
// 这里只做中国区验证
if (regionCode === '+86') {
if (phoneNum.length === 11 && mailPhoneRegx.phoneRegx['+86'].test(phoneNum)) {
return true;
} else {
errTip($phoneNumInput, '手机号码不正确,请重新输入');
return false;
}
}
return true;
} else {
// 邮箱验证
if (mailPhoneRegx.emailRegx.test(phoneNum)) {
return true;
} else {
errTip($phoneNumInput, '邮箱格式不正确,请重新输入');
return false;
}
}
} else {
errTip($phoneNumInput, '请输入账号');
return false;
}
}
// 异步验证帐号是否存在
function validateAccountAsync() {
return $.ajax({
type: 'POST',
url: '/passport/login/user',
data: {
phoneNum: $phoneNumInput.val(),
area: $regionCodeText.text().replace('+', '')
}
}).then(function(data) {
if (data.code && data.code === 200) {
return true;
} else {
errTip($phoneNumInput, '账号不存在');
return false;
}
});
}
// 整合本地和异步验证信息
function validateAccount() {
function validate() {
var defer = $.Deferred(); // eslint-disable-line
if (validateAccountLocal()) {
validateAccountAsync().then(function(result) {
if (result) {
defer.resolve(result);
} else {
defer.reject(result);
}
});
} else {
defer.reject(false);
}
return defer.promise();
}
return validate().then(function() {
hideTip($phoneNumInput);
ep.emit('phone', true);
}).fail(function() {
ep.emit('phone', false);
});
}
// 验证密码
function validatePasswordLocal() {
var password = $.trim($passwordInput.val());
var length = password.length;
if (length !== 0) {
if (length < 6) {
ep.emit('password', false);
errTip($passwordInput, '请输入长度为6-20字符的密码');
return false;
} else {
ep.emit('password', true);
return true;
}
} else {
errTip($passwordInput, '请输入密码');
ep.emit('password', false);
return false;
}
}
// 验证验证码
function validateCaptchaLocal() {
var captcha = $.trim($imgCaptchaInput.val());
var length = captcha.length;
if ($captchaWrap.hasClass('hide')) {
ep.emit('captcha', true);
return;
}
switch (length) {
case 0:
errTip($imgCaptchaInput, '请输入验证码');
ep.emit('captcha', false);
break;
case 4:
ep.emit('captcha', true);
break;
default:
errTip($imgCaptchaInput, '请输入长度为4字符的验证码');
ep.emit('captcha', false);
break;
}
}
// 密码错误次数,超过三次显示验证码
function showAccountErrTimes() {
$captchaWrap.removeClass('hide');
$captchaImg.attr('src', captchaUrl + $.now());
$imgCaptchaInput.val('');
}
// 登录
function login() {
$.ajax({
url: '/passport/login/auth',
type: 'POST',
data: {
areaCode: $regionCodeText.text().replace('+', ''),
account: $.trim($phoneNumInput.val()),
password: $.trim($passwordInput.val()),
captcha: $.trim($imgCaptchaInput.val()),
isRemember: $remember.hasClass('checked') ? true : false
},
success: function(res) {
if (res.code === 200) {
if (res.data) {
// 防止data.data为undefined时下行语句执行出错而导致脚本不能走到complete去处理authing
location.href = res.data.refer;
}
} else {
if (res.data.errorType === 'captcha') {
$imgCaptchaInput.val('');
} else {
$loginTip.removeClass('hide').children('em').html(res.message);
$passwordInput.val('');
}
// 验证错误次数
if (res.data && res.data.needCaptcha) {
showAccountErrTimes();
}
}
}
});
}
// 邮箱自动补全,并验证信息
mailAc($phoneNumInput, function() {
function throttle() {
return $.ajax({
url: '/passport/login/account',
type: 'GET',
data: {
account: $.trim($phoneNumInput.val())
}
});
}
validateAccount().then(function(result) {
if (result) {
return throttle();
} else {
return false;
}
}).then(function(res) {
if (!res) {
return;
}
if (res.data && res.data.needCaptcha) {
showAccountErrTimes();
}
});
});
$phoneNumInput.on('focus', function() {
hideTip($phoneNumInput);
$phone.addClass('focus');
}).on('blur', function() {
$phone.removeClass('focus');
});
$('[placeholder]').placeholder();
// 改变选择图标
function changeHeader() {
var $indicator = $regionSelectHeader.find('.iconfont');
if ($regionSelectList.hasClass('hide')) {
$indicator.html(upDown.up);
} else {
$indicator.html(upDown.down);
}
}
// 选择国家列表
$regionSelectList.on('click', '.option', function() {
var $clickItem = $(this);
var areaCode = $clickItem.data('code');
var name = $clickItem.data('value');
var $selectedItem = $clickItem.siblings('.selected');
$selectedItem.find('.iconfont').html('').end().removeClass('selected');
$clickItem.find('.iconfont').html(selectedIcon).end().addClass('selected');
$regionSelectHeader.find('.name').html(name);
$regionCodeText.text(areaCode);
$regionSelectList.addClass('hide');
changeHeader();
});
// 选择国家头
$regionSelectHeader.on('click', function() {
$regionSelectList.toggleClass('hide');
changeHeader();
});
// 密码
$passwordInput.on('blur', function() {
$passwordInput.removeClass('focus');
validatePasswordLocal();
}).on('focus', function() {
$passwordInput.addClass('focus');
hideTip($passwordInput);
});
// 验证码
$imgCaptchaInput.on('blur', function() {
$imgCaptchaInput.removeClass('focus');
validateCaptchaLocal();
}).on('focus', function() {
$imgCaptchaInput.addClass('focus');
});
// 邮箱自动完成列表项点击
$emailAutoComplete.on('click', 'li', function() {
$phoneNumInput.val($(this).text()).focus();
$emailAutoComplete.addClass('hide');
});
// 记住登录状态
$remember.on('click', function() {
var $this = $(this);
$this.toggleClass('checked');
if ($this.hasClass('checked')) {
$this.children('span').html(checkbox.checked);
} else {
$this.children('span').html(checkbox.unchecked);
}
});
// 验证码刷新
$captchaWrap.on('click', '.change-captcha, .captcha-img', function() {
$captchaImg.attr('src', captchaUrl + $.now());
});
// 初始:只带账户名的页面,密码输入获得焦点
if (($phoneNumInput.val() !== '' || $phoneNumInput.val() === $phoneNumInput.attr('placeholder')) &&
$passwordInput.val() === '') {
$passwordInput.focus();
}
// 同时监听三个事件
ep.tail('phone', 'password', 'captcha', function(phoneAuth, passwordAuth, captchaAuth) {
if (phoneAuth && passwordAuth && captchaAuth) {
$loginBtn.removeClass('auth_ok');
} else {
$loginBtn.addClass('auth_ok');
}
});
ep.on('phone', function(auth) {
if (auth) {
hideTip($phoneNumInput);
}
});
ep.on('password', function(auth) {
if (auth) {
hideTip($passwordInput);
}
});
ep.on('captcha', function(auth) {
if (auth && !$captchaWrap.hasClass('hide')) {
hideTip($imgCaptchaInput);
}
});
// 登录
$loginBtn.on('click', function() {
if ($loginBtn.hasClass('auth_ok')) {
return;
}
login();
});
// Enter登录
$('input.va').on('keypress', function(e) {
if (e.which === 13) {
login();
}
});
// 首次触发
$imgCaptchaInput.triggerHandler('blur');