mirror of
https://github.com/zombieFox/nightTab.git
synced 2024-11-25 01:23:15 +01:00
65 lines
1.2 KiB
JavaScript
65 lines
1.2 KiB
JavaScript
var data = (function() {
|
|
|
|
var saveName = "nitghTab";
|
|
|
|
var set = function(key, data) {
|
|
localStorage.setItem(key, data);
|
|
};
|
|
|
|
var get = function(key) {
|
|
return localStorage.getItem(key);
|
|
};
|
|
|
|
var remove = function(key) {
|
|
localStorage.removeItem(key);
|
|
};
|
|
|
|
var save = function() {
|
|
var data = {
|
|
version: version.get(),
|
|
state: state.get(),
|
|
bookmarks: bookmarks.get()
|
|
};
|
|
set(saveName, JSON.stringify(data));
|
|
};
|
|
|
|
var wipe = function() {
|
|
remove(saveName);
|
|
};
|
|
|
|
var load = function() {
|
|
return JSON.parse(get(saveName));
|
|
};
|
|
|
|
var restore = function() {
|
|
var data = load();
|
|
if (data) {
|
|
if (!("version" in data) || data.version != version.get()) {
|
|
console.log("data version " + data.version + " found less than current");
|
|
data = update.run(data);
|
|
set(saveName, JSON.stringify(data));
|
|
} else {
|
|
console.log("data version " + version.get() + " no need to run update");
|
|
};
|
|
} else {
|
|
console.log("no data found to load");
|
|
};
|
|
};
|
|
|
|
var init = function() {
|
|
restore();
|
|
};
|
|
|
|
return {
|
|
init: init,
|
|
save: save,
|
|
remove: remove,
|
|
set: set,
|
|
get: get,
|
|
load: load,
|
|
wipe: wipe,
|
|
restore: restore
|
|
};
|
|
|
|
})();
|