cache pin data once retrieved from the server

This commit is contained in:
ansuz 2017-06-26 17:32:31 +02:00
parent 51e06e68a7
commit fce0a37f50

View file

@ -32,9 +32,7 @@ define([
Clipboard: Clipboard, Clipboard: Clipboard,
donateURL: 'https://accounts.cryptpad.fr/#/donate?on=' + origin, donateURL: 'https://accounts.cryptpad.fr/#/donate?on=' + origin,
upgradeURL: 'https://accounts.cryptpad.fr/#/?on=' + origin, upgradeURL: 'https://accounts.cryptpad.fr/#/?on=' + origin,
account: { account: {},
usage: 0,
},
}; };
// constants // constants
@ -759,7 +757,9 @@ define([
if (!pinsReady()) { return void cb('[RPC_NOT_READY]'); } if (!pinsReady()) { return void cb('[RPC_NOT_READY]'); }
rpc.getFileListSize(function (err, bytes) { rpc.getFileListSize(function (err, bytes) {
common.account.usage = typeof(bytes) === 'number'? bytes: 0; if (typeof(bytes) === 'number') {
common.account.usage = bytes;
}
cb(err, bytes); cb(err, bytes);
}); });
}; };
@ -785,13 +785,21 @@ define([
common.getPinLimit = function (cb) { common.getPinLimit = function (cb) {
if (!pinsReady()) { return void cb('[RPC_NOT_READY]'); } if (!pinsReady()) { return void cb('[RPC_NOT_READY]'); }
rpc.getLimit(function (e, limit, plan, note) {
if (e) { return cb(e); } var account = common.account;
common.account.limit = limit; if (typeof(account.limit) !== 'number' ||
common.account.plan = plan; typeof(account.plan) !== 'string' ||
common.account.note = note; typeof(account.note) !== 'string') {
cb(void 0, limit, plan, note); return void rpc.getLimit(function (e, limit, plan, note) {
}); if (e) { return cb(e); }
common.account.limit = limit;
common.account.plan = plan;
common.account.note = note;
cb(void 0, limit, plan, note);
});
}
cb(void 0, account.limit, account.plan, account.note);
}; };
common.isOverPinLimit = function (cb) { common.isOverPinLimit = function (cb) {