notion-enhancer/pkg/store.js
2020-07-16 23:14:41 +10:00

31 lines
778 B
JavaScript

/*
* notion-enhancer
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com>
* (https://dragonwocky.me/) under the MIT license
*/
'use strict';
const path = require('path'),
fs = require('fs-extra'),
{ getJSON, data_folder } = require('./helpers.js');
// a wrapper for accessing data stored in a JSON file.
module.exports = (namespace, defaults = {}) => {
namespace = path.resolve(data_folder, namespace + '.json');
fs.ensureDirSync(data_folder);
const getData = () => ({ ...defaults, ...getJSON(namespace) });
return new Proxy(defaults, {
get(obj, prop) {
obj = getData();
return obj[prop];
},
set(obj, prop, val) {
obj = getData();
obj[prop] = val;
fs.writeJsonSync(namespace, obj);
return true;
},
});
};