notion-enhancer/pkg/store.js
dragonwocky 2303783319
#97, #98, and small alterations.
(removed platform support requests, replaced getNotion() with __notion)
2020-09-17 13:06:49 +10:00

40 lines
1015 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 } = require('./helpers.js');
// a wrapper for accessing data stored in a JSON file.
module.exports = (namespace, defaults = {}) => {
namespace = path.resolve(`${__data}/${namespace}.json`);
fs.ensureDirSync(__data);
let data;
const saveData = () => fs.writeJsonSync(namespace, data),
handler = {
get(obj, prop) {
if (prop === 'isProxy') return true;
if (
typeof obj[prop] === 'object' &&
obj[prop] !== null &&
!obj[prop].isProxy
)
obj[prop] = new Proxy(obj[prop], handler);
return obj[prop];
},
set(obj, prop, val) {
obj[prop] = val;
saveData();
return true;
},
};
data = new Proxy({ ...defaults, ...getJSON(namespace) }, handler);
return data;
};