mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
44 lines
944 B
JavaScript
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;
|
|
},
|
|
}
|
|
);
|
|
};
|