Update app.js

Refactoring
master
Andrew Gregory 2022-03-23 14:22:17 +08:00 committed by GitHub
parent 1d7c090c21
commit 94207739c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 10 deletions

View File

@ -106,9 +106,9 @@ function hotp(token) {
} }
// Tokens are displayed in three states: // Tokens are displayed in three states:
// 1. Unselected (state.id==-1) // 1. Unselected (state.id<0)
// 2. Selected, inactive (no code) (state.id!=-1,state.hotp.hotp=="") // 2. Selected, inactive (no code) (state.id>=0,state.hotp.hotp=="")
// 3. Selected, active (code showing) (state.id!=-1,state.hotp.hotp!="") // 3. Selected, active (code showing) (state.id>=0,state.hotp.hotp!="")
var fontszCache = {}; var fontszCache = {};
var state = { var state = {
listy:0, // list scroll position listy:0, // list scroll position
@ -135,7 +135,7 @@ half = n => Math.floor(n / 2);
function timerCalc() { function timerCalc() {
let timerfn = exitApp; let timerfn = exitApp;
let timerdly = 10000; let timerdly = 10000;
if (state.id != -1 && state.hotp.hotp != "") { if (state.id >= 0 && state.hotp.hotp != "") {
if (tokens[state.id].period > 0) { if (tokens[state.id].period > 0) {
// timed HOTP // timed HOTP
if (state.hotp.next < Date.now()) { if (state.hotp.next < Date.now()) {
@ -181,7 +181,7 @@ function updateProgressBar() {
function drawProgressBar() { function drawProgressBar() {
let id = state.id; let id = state.id;
if (id != -1 && tokens[id].period > 0) { if (id >= 0 && tokens[id].period > 0) {
let rem = Math.floor((state.hotp.next - Date.now()) / 1000); let rem = Math.floor((state.hotp.next - Date.now()) / 1000);
if (rem >= 0) { if (rem >= 0) {
let y1 = tokenY(id); let y1 = tokenY(id);
@ -269,10 +269,10 @@ function changeId(id) {
state.hotp.hotp = CALCULATING; state.hotp.hotp = CALCULATING;
let pid = state.id; let pid = state.id;
state.id = id; state.id = id;
if (pid != -1) { if (pid >= 0) {
drawToken(pid); drawToken(pid);
} }
if (id != -1) { if (id >= 0) {
drawToken( id); drawToken( id);
} }
} }
@ -320,7 +320,7 @@ function onTouch(zone, e) {
id = -1; id = -1;
} }
if (state.id != id) { if (state.id != id) {
if (id != -1) { if (id >= 0) {
// scroll token into view if necessary // scroll token into view if necessary
var dy = 0; var dy = 0;
var y = id * TOKEN_HEIGHT - state.listy; var y = id * TOKEN_HEIGHT - state.listy;
@ -347,7 +347,7 @@ function onSwipe(e) {
exitApp(); exitApp();
break; break;
case -1: case -1:
if (state.id != -1 && tokens[state.id].period <= 0) { if (state.id >= 0 && tokens[state.id].period <= 0) {
tokens[state.id].period--; tokens[state.id].period--;
require("Storage").writeJSON(SETTINGS, {tokens:tokens, misc:settings.misc}); require("Storage").writeJSON(SETTINGS, {tokens:tokens, misc:settings.misc});
state.hotp.hotp = CALCULATING; state.hotp.hotp = CALCULATING;