mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-11-03 13:33:18 +00:00
48 lines
910 B
JavaScript
48 lines
910 B
JavaScript
'use strict';
|
|
|
|
const process = require('process');
|
|
const JsonDB = require('node-json-db');
|
|
|
|
let instance = null;
|
|
let app = null;
|
|
|
|
/* To make the util runnable in both main and renderer process */
|
|
if (process.type === 'renderer') {
|
|
app = require('electron').remote.app;
|
|
} else {
|
|
app = require('electron').app;
|
|
}
|
|
|
|
class ConfigUtil {
|
|
constructor() {
|
|
if (instance) {
|
|
return instance;
|
|
} else {
|
|
instance = this;
|
|
}
|
|
|
|
this.db = new JsonDB(app.getPath('userData') + '/config.json', true, true);
|
|
return instance;
|
|
}
|
|
|
|
getConfigItem(key, defaultValue = null) {
|
|
const value = this.db.getData('/')[key];
|
|
if (value === undefined) {
|
|
this.setConfigItem(key, defaultValue);
|
|
return defaultValue;
|
|
} else {
|
|
return value;
|
|
}
|
|
}
|
|
|
|
setConfigItem(key, value) {
|
|
this.db.push(`/${key}`, value, true);
|
|
}
|
|
|
|
removeConfigItem(key) {
|
|
this.db.delete(`/${key}`);
|
|
}
|
|
}
|
|
|
|
module.exports = new ConfigUtil();
|