aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/scripts/4_input_pin.js
diff options
context:
space:
mode:
authorMarvin Borner2019-01-27 17:48:07 +0100
committerMarvin Borner2019-01-27 17:48:07 +0100
commit46f92ac829cfaeb255317c99a0cb220e1ff6b071 (patch)
tree3561a868091297052d5ebfbbb079bc27c05656e5 /public/scripts/4_input_pin.js
parent9683cf0c06c4e5a0618e75a23e491abdbb0a7d19 (diff)
Added pin input field(s)
Diffstat (limited to 'public/scripts/4_input_pin.js')
-rw-r--r--public/scripts/4_input_pin.js55
1 files changed, 55 insertions, 0 deletions
diff --git a/public/scripts/4_input_pin.js b/public/scripts/4_input_pin.js
new file mode 100644
index 0000000..e0c96bd
--- /dev/null
+++ b/public/scripts/4_input_pin.js
@@ -0,0 +1,55 @@
+const $ = require('jquery');
+let pin = [];
+
+/**
+ * Initializes actions of the pin input field
+ * @param callback
+ */
+function init(callback) {
+ $('#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('*');
+ console.log(pin);
+ callback(pin.join(''))
+ });
+}
+
+/**
+ * Displays error message and clears input
+ */
+function isWrong() {
+ $('#pin_message').text('Passphrase is wrong!');
+ 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;