mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 17:56:25 +00:00
add ConfigManager & ZoomManager
This commit is contained in:
45
browser/main/lib/ConfigManager.js
Normal file
45
browser/main/lib/ConfigManager.js
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
import _ from 'lodash'
|
||||||
|
|
||||||
|
const defaultConfig = {
|
||||||
|
zoom: 1,
|
||||||
|
isSideNavFolded: false
|
||||||
|
}
|
||||||
|
|
||||||
|
function _validate (config) {
|
||||||
|
if (!_.isObject(config)) return false
|
||||||
|
if (!_.isNumber(config.zoom) || config.zoom < 0) return false
|
||||||
|
if (!_.isBoolean(config.isSideNavFolded)) return false
|
||||||
|
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
function _save (config) {
|
||||||
|
window.localStorage.setItem('config', JSON.stringify(config))
|
||||||
|
}
|
||||||
|
|
||||||
|
function get () {
|
||||||
|
let config = window.localStorage.getItem('config')
|
||||||
|
|
||||||
|
try {
|
||||||
|
config = JSON.parse(config)
|
||||||
|
if (!_validate(config)) throw new Error('INVALID CONFIG')
|
||||||
|
} catch (err) {
|
||||||
|
console.warn('Boostnote resets the malformed configuration.')
|
||||||
|
config = defaultConfig
|
||||||
|
_save(config)
|
||||||
|
}
|
||||||
|
|
||||||
|
return config
|
||||||
|
}
|
||||||
|
|
||||||
|
function set (updates) {
|
||||||
|
let currentConfig = get()
|
||||||
|
let newConfig = Object.assign({}, defaultConfig, currentConfig, updates)
|
||||||
|
if (!_validate(newConfig)) throw new Error('INVALID CONFIG')
|
||||||
|
_save(newConfig)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default {
|
||||||
|
get,
|
||||||
|
set
|
||||||
|
}
|
||||||
30
browser/main/lib/ZoomManager.js
Normal file
30
browser/main/lib/ZoomManager.js
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
import ConfigManager from './ConfigManager'
|
||||||
|
|
||||||
|
const electron = require('electron')
|
||||||
|
const { remote } = electron
|
||||||
|
|
||||||
|
_init()
|
||||||
|
|
||||||
|
function _init () {
|
||||||
|
setZoom(getZoom(), true)
|
||||||
|
}
|
||||||
|
|
||||||
|
function _saveZoom (zoomFactor) {
|
||||||
|
ConfigManager.set({zoom: zoomFactor})
|
||||||
|
}
|
||||||
|
|
||||||
|
function setZoom (zoomFactor, noSave = false) {
|
||||||
|
if (!noSave) _saveZoom(zoomFactor)
|
||||||
|
remote.getCurrentWebContents().setZoomFactor(zoomFactor)
|
||||||
|
}
|
||||||
|
|
||||||
|
function getZoom () {
|
||||||
|
let config = ConfigManager.get()
|
||||||
|
|
||||||
|
return config.zoom
|
||||||
|
}
|
||||||
|
|
||||||
|
export default {
|
||||||
|
setZoom,
|
||||||
|
getZoom
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user