2022-07-11 11:06:41 +08:00
|
|
|
import { IpcChannels } from '@/shared/IpcChannels'
|
|
|
|
import { merge } from 'lodash-es'
|
|
|
|
import { proxy, subscribe } from 'valtio'
|
|
|
|
|
|
|
|
interface Settings {
|
|
|
|
accentColor: string
|
|
|
|
unm: {
|
|
|
|
enabled: boolean
|
|
|
|
sources: Array<
|
|
|
|
'migu' | 'kuwo' | 'kugou' | 'ytdl' | 'qq' | 'bilibili' | 'joox'
|
|
|
|
>
|
|
|
|
searchMode: 'order-first' | 'fast-first'
|
|
|
|
proxy: null | {
|
|
|
|
protocol: 'http' | 'https' | 'socks5'
|
|
|
|
host: string
|
|
|
|
port: number
|
|
|
|
username?: string
|
|
|
|
password?: string
|
|
|
|
}
|
|
|
|
cookies: {
|
|
|
|
qq?: string
|
|
|
|
joox?: string
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const initSettings: Settings = {
|
|
|
|
accentColor: 'blue',
|
|
|
|
unm: {
|
|
|
|
enabled: true,
|
|
|
|
sources: ['migu'],
|
|
|
|
searchMode: 'order-first',
|
|
|
|
proxy: null,
|
|
|
|
cookies: {},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2022-08-03 23:48:39 +08:00
|
|
|
const STORAGE_KEY = 'settings'
|
|
|
|
const statesInStorageString = localStorage.getItem(STORAGE_KEY)
|
|
|
|
let statesInStorage = {}
|
|
|
|
if (statesInStorageString) {
|
|
|
|
try {
|
|
|
|
statesInStorage = JSON.parse(statesInStorageString)
|
|
|
|
} catch {
|
|
|
|
// ignore
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const settings = proxy<Settings>(merge(initSettings, statesInStorage))
|
2022-07-11 11:06:41 +08:00
|
|
|
|
|
|
|
subscribe(settings, () => {
|
|
|
|
window.ipcRenderer?.send(IpcChannels.SyncSettings, settings)
|
2022-08-03 23:48:39 +08:00
|
|
|
localStorage.setItem(STORAGE_KEY, JSON.stringify(settings))
|
2022-07-11 11:06:41 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
export default settings
|