40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import { settingsStore, bulkApplySettings, defaultSettings } from "./settings"
|
|
import clone from "lodash/clone"
|
|
import assign from "lodash/assign"
|
|
import eq from "lodash/eq"
|
|
|
|
function checkAndMigrateOldSettings() {
|
|
const vuexData = JSON.parse(window.localStorage.getItem("vuex") || "{}")
|
|
if (eq(vuexData, {})) return
|
|
|
|
if (vuexData.postwoman && vuexData.postwoman.settings) {
|
|
const settingsData = clone(defaultSettings)
|
|
assign(settingsData, vuexData.postwoman.settings)
|
|
|
|
window.localStorage.setItem("settings", JSON.stringify(settingsData))
|
|
|
|
delete vuexData.postwoman.settings
|
|
window.localStorage.setItem("vuex", JSON.stringify(vuexData))
|
|
}
|
|
}
|
|
|
|
function setupSettingsPersistence() {
|
|
const settingsData = JSON.parse(window.localStorage.getItem("settings") || "{}")
|
|
|
|
if (settingsData) {
|
|
bulkApplySettings(settingsData)
|
|
}
|
|
|
|
|
|
settingsStore.subject$
|
|
.subscribe(settings => {
|
|
window.localStorage.setItem("settings", JSON.stringify(settings))
|
|
})
|
|
}
|
|
|
|
export function setupLocalPersistence() {
|
|
checkAndMigrateOldSettings()
|
|
|
|
setupSettingsPersistence()
|
|
}
|