notion-enhancer/resources/store.js
2020-05-31 22:17:59 +10:00

44 lines
944 B
JavaScript

/*
* notion-enhancer
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com>
* (c) 2020 TarasokUA
* (https://dragonwocky.me/) under the MIT license
*/
// a wrapper for accessing data stored in a JSON file
const path = require('path'),
fs = require('fs');
function getJSON(from) {
try {
return JSON.parse(fs.readFileSync(from));
} catch {
return {};
}
}
module.exports = (opts) => {
opts = {
config: 'user-preferences',
defaults: {},
...opts,
};
const config = path.join(__dirname, opts.config + '.json');
return new Proxy(
{},
{
get(obj, prop) {
obj = { ...opts.defaults, ...getJSON(config) };
return obj[prop];
},
set(obj, prop, val) {
obj = { ...opts.defaults, ...getJSON(config) };
obj[prop] = val;
fs.writeFileSync(config, JSON.stringify(obj));
return true;
},
}
);
};