Chrome App fixes

This commit is contained in:
Matias Pando 2014-12-04 17:59:02 -03:00
commit 5b0e5f51db
7 changed files with 24 additions and 49 deletions

View file

@ -1,26 +1,32 @@
'use strict';
var _ = require('lodash');
var preconditions = require('preconditions').singleton();
var isChromeApp = window.chrome && chrome.runtime && chrome.runtime.id;
var isChromeApp = typeof window !== "undefined" && window.chrome && chrome.runtime && chrome.runtime.id;
function LocalStorage() {
function LocalStorage(opts) {
this.type = 'DB';
opts = opts || {};
if (isChromeApp) {
localStorage = chrome.storage.local;
this.ls = opts.ls ||
((typeof localStorage !== "undefined") ? localStorage : null);
if (isChromeApp && !this.ls) {
this.ls = localStorage = chrome.storage.local;
window.localStorage = chrome.storage.local;
}
preconditions.checkState(typeof localStorage !== 'undefined',
preconditions.checkState(this.ls,
'localstorage not available, cannot run plugin');
};
LocalStorage.prototype.init = function() {};
LocalStorage.prototype.setCredentials = function(email, password, opts) {
this.email = email;
this.password = password;
// NOP
};
LocalStorage.prototype.getItem = function(k, cb) {
@ -31,7 +37,7 @@ LocalStorage.prototype.getItem = function(k, cb) {
return cb(null, data[k]);
});
} else {
return cb(null, localStorage.getItem(k));
return cb(null, this.ls.getItem(k));
}
};
@ -40,15 +46,11 @@ LocalStorage.prototype.getItem = function(k, cb) {
*/
LocalStorage.prototype.createItem = function(name, value, callback) {
var self = this;
console.log('createItem ');
self.getItem(name,
function(err, data) {
console.log('error ', err);
console.log('data ', data);
if (data) {
return callback('EEXISTS');
} else {
console.log('calling setitem ');
return self.setItem(name, value, callback);
}
});
@ -58,9 +60,10 @@ LocalStorage.prototype.setItem = function(k, v, cb) {
if (isChromeApp) {
var obj = {};
obj[k] = v;
chrome.storage.local.set(obj, cb);
} else {
localStorage.setItem(k, v);
this.ls.setItem(k, v);
return cb();
}
@ -70,7 +73,7 @@ LocalStorage.prototype.removeItem = function(k, cb) {
if (isChromeApp) {
chrome.storage.remove(k, cb);
} else {
localStorage.removeItem(k);
this.ls.removeItem(k);
return cb();
}
@ -80,50 +83,27 @@ LocalStorage.prototype.clear = function(cb) {
if (isChromeApp) {
chrome.storage.clear();
} else {
localStorage.clear();
this.ls.clear();
}
return cb();
};
LocalStorage.prototype.allKeys = function(cb) {
if (isChromeApp) {
chrome.storage.local.get(null, function(items) {
return cb(null, _.keys(items));
});
} else {
var ret = [];
var l = localStorage.length;
var l = this.ls.length;
for (var i = 0; i < l; i++)
ret.push(localStorage.key(i));
ret.push(this.ls.key(i));
return cb(null, ret);
}
};
LocalStorage.prototype.getFirst = function(prefix, opts, cb) {
opts = opts || {};
var that = this;
this.allKeys(function(err, allKeys) {
var keys = _.filter(allKeys, function(k) {
if ((k === prefix) || k.indexOf(prefix) === 0) return true;
});
if (keys.length === 0)
return cb(new Error('not found'));
if (opts.onlyKey)
return cb(null, null, keys[0]);
that.getItem(keys[0], function(err, data) {
if (err) {
return cb(err);
}
return cb(null, data, keys[0]);
});
});
};
module.exports = LocalStorage;