step towards customizable login functionality
This commit is contained in:
parent
1fba82540a
commit
5346afe51f
@ -4,7 +4,7 @@ define([
|
|||||||
'/bower_components/chainpad-crypto/crypto.js',
|
'/bower_components/chainpad-crypto/crypto.js',
|
||||||
'/common/common-util.js',
|
'/common/common-util.js',
|
||||||
'/common/outer/network-config.js',
|
'/common/outer/network-config.js',
|
||||||
'/common/credential.js',
|
'/customize/credential.js',
|
||||||
'/bower_components/chainpad/chainpad.dist.js',
|
'/bower_components/chainpad/chainpad.dist.js',
|
||||||
|
|
||||||
'/bower_components/tweetnacl/nacl-fast.min.js',
|
'/bower_components/tweetnacl/nacl-fast.min.js',
|
||||||
@ -1,97 +0,0 @@
|
|||||||
define(function () {
|
|
||||||
/*
|
|
||||||
This module uses localStorage, which is synchronous, but exposes an
|
|
||||||
asyncronous API. This is so that we can substitute other storage
|
|
||||||
methods.
|
|
||||||
|
|
||||||
To override these methods, create another file at:
|
|
||||||
/customize/storage.js
|
|
||||||
*/
|
|
||||||
|
|
||||||
var Store = {};
|
|
||||||
|
|
||||||
// Store uses nodebacks...
|
|
||||||
Store.set = function (key, val, cb) {
|
|
||||||
localStorage.setItem(key, JSON.stringify(val));
|
|
||||||
cb();
|
|
||||||
};
|
|
||||||
|
|
||||||
// implement in alternative store
|
|
||||||
Store.setBatch = function (map, cb) {
|
|
||||||
Object.keys(map).forEach(function (key) {
|
|
||||||
localStorage.setItem(key, JSON.stringify(map[key]));
|
|
||||||
});
|
|
||||||
cb(void 0, map);
|
|
||||||
};
|
|
||||||
|
|
||||||
var safeGet = window.safeGet = function (key) {
|
|
||||||
var val = localStorage.getItem(key);
|
|
||||||
try {
|
|
||||||
return JSON.parse(val);
|
|
||||||
} catch (err) {
|
|
||||||
console.log(val);
|
|
||||||
console.error(err);
|
|
||||||
return val;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
Store.get = function (key, cb) {
|
|
||||||
cb(void 0, safeGet(key));
|
|
||||||
};
|
|
||||||
|
|
||||||
// implement in alternative store
|
|
||||||
Store.getBatch = function (keys, cb) {
|
|
||||||
var res = {};
|
|
||||||
keys.forEach(function (key) {
|
|
||||||
res[key] = safeGet(key);
|
|
||||||
});
|
|
||||||
cb(void 0, res);
|
|
||||||
};
|
|
||||||
|
|
||||||
Store.remove = function (key, cb) {
|
|
||||||
localStorage.removeItem(key);
|
|
||||||
cb();
|
|
||||||
};
|
|
||||||
|
|
||||||
// implement in alternative store
|
|
||||||
Store.removeBatch = function (keys, cb) {
|
|
||||||
keys.forEach(function (key) {
|
|
||||||
localStorage.removeItem(key);
|
|
||||||
});
|
|
||||||
cb();
|
|
||||||
};
|
|
||||||
|
|
||||||
Store.keys = function (cb) {
|
|
||||||
cb(void 0, Object.keys(localStorage));
|
|
||||||
};
|
|
||||||
|
|
||||||
Store.ready = function (f) {
|
|
||||||
if (typeof(f) === 'function') {
|
|
||||||
f(void 0, Store);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
var changeHandlers = Store.changeHandlers = [];
|
|
||||||
|
|
||||||
Store.change = function (f) {
|
|
||||||
if (typeof(f) !== 'function') {
|
|
||||||
throw new Error('[Store.change] callback must be a function');
|
|
||||||
}
|
|
||||||
changeHandlers.push(f);
|
|
||||||
|
|
||||||
if (changeHandlers.length === 1) {
|
|
||||||
// start listening for changes
|
|
||||||
window.addEventListener('storage', function (e) {
|
|
||||||
changeHandlers.forEach(function (f) {
|
|
||||||
f({
|
|
||||||
key: e.key,
|
|
||||||
oldValue: e.oldValue,
|
|
||||||
newValue: e.newValue,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
return Store;
|
|
||||||
});
|
|
||||||
@ -1,7 +1,7 @@
|
|||||||
define([
|
define([
|
||||||
'jquery',
|
'jquery',
|
||||||
'/common/cryptpad-common.js',
|
'/common/cryptpad-common.js',
|
||||||
'/common/login.js',
|
'/customize/login.js',
|
||||||
'/common/common-interface.js',
|
'/common/common-interface.js',
|
||||||
'/common/common-realtime.js',
|
'/common/common-realtime.js',
|
||||||
'/common/common-feedback.js',
|
'/common/common-feedback.js',
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
define([
|
define([
|
||||||
'jquery',
|
'jquery',
|
||||||
'/common/login.js',
|
'/customize/login.js',
|
||||||
'/common/cryptpad-common.js',
|
'/common/cryptpad-common.js',
|
||||||
'/common/test.js',
|
'/common/test.js',
|
||||||
'/common/credential.js', // preloaded for login.js
|
'/customize/credential.js', // preloaded for login.js
|
||||||
'/common/common-interface.js',
|
'/common/common-interface.js',
|
||||||
'/common/common-util.js',
|
'/common/common-util.js',
|
||||||
'/common/common-realtime.js',
|
'/common/common-realtime.js',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user