mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-28 11:35:35 +03:00
b1a6f7d5af
- Rough draft: multiple screens are not handled yet.
34 lines
879 B
Swift
34 lines
879 B
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Foundation
|
|
|
|
fileprivate let defaults = UserDefaults.standard
|
|
|
|
class PrefService {
|
|
|
|
typealias MainWindowPair = StateActionPair<AppState, UuidAction<MainWindow.Action>>
|
|
|
|
static let compatibleVersion = "168"
|
|
static let lastCompatibleVersion = "128"
|
|
|
|
// The following should only be used when Cmd-Q'ing
|
|
func applyPref(from appState: AppState) {
|
|
defaults.setValue(appState.dict(), forKey: PrefService.compatibleVersion)
|
|
}
|
|
|
|
func applyPref<ActionType>(_ pair: StateActionPair<AppState, ActionType>) {
|
|
defaults.setValue(pair.state.dict(), forKey: PrefService.compatibleVersion)
|
|
}
|
|
|
|
func applyMainWindow(_ pair: MainWindowPair) {
|
|
guard case .close = pair.action.payload else {
|
|
return
|
|
}
|
|
|
|
defaults.setValue(pair.state.dict(), forKey: PrefService.compatibleVersion)
|
|
}
|
|
}
|