blob: 69b068bdc45405644f9dca3c870c3795fba3847d (
plain) (
blame)
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
|
/*
* input_pin.js
* Copyright (c) 2019, Texx
* License: MIT
* See https://github.com/texxme/Texx/blob/master/LICENSE
*/
const $ = require('jquery');
let pin = [];
/**
* Initializes actions of the pin input field
* @param callback
*/
function init(callback) {
let tryCount = 0;
$('#1')
.focus()
.on('input', (el) => {
pin.push($(el.target)
.val());
$(el.target)
.val('*');
$(`#${(parseInt($(el.target)
.attr('id')) + 1).toString()}`)
.focus();
});
$('#2')
.on('input', (el) => {
pin.push($(el.target)
.val());
$(el.target)
.val('*');
$(`#${(parseInt($(el.target)
.attr('id')) + 1).toString()}`)
.focus();
});
$('#3')
.on('input', (el) => {
pin.push($(el.target)
.val());
$(el.target)
.val('*');
$(`#${(parseInt($(el.target)
.attr('id')) + 1).toString()}`)
.focus();
});
$('#4')
.on('input', (el) => {
pin.push($(el.target)
.val());
$(el.target)
.val('*');
tryCount++;
callback(pin.join(''), tryCount);
});
}
/**
* Displays error message and clears input
*/
function isWrong(message) {
$('#pin_message')
.text(message);
for (let i = 1; i < 5; i++) {
$(`#${i}`)
.val('');
}
$('#1')
.focus();
pin = [];
}
/**
* Display generation message
*/
function needsGeneration() {
// TODO: Add loading animation
$('#pin_message')
.text('Generating keys...');
}
exports.init = init;
exports.failure = isWrong;
exports.generate = needsGeneration;
|