1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 03:25:03 +03:00
vimr/VimR/Context.swift

171 lines
5.9 KiB
Swift
Raw Normal View History

2017-01-22 16:22:05 +03:00
/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
import Foundation
import RxSwift
2017-02-28 12:43:45 +03:00
class Context {
2017-01-25 00:39:19 +03:00
let stateSource: Observable<AppState>
2017-04-22 16:56:13 +03:00
let actionEmitter = ActionEmitter()
init(baseServerUrl: URL, state: AppState) {
2017-02-28 12:42:34 +03:00
self.appState = state
self.stateSource = self.stateSubject.asObservable()
2017-03-29 21:10:11 +03:00
let openQuicklyReducer = OpenQuicklyReducer()
let markdownReducer = MarkdownReducer(baseServerUrl: baseServerUrl)
2017-02-28 12:20:25 +03:00
let prefService = PrefService()
2017-02-28 12:20:25 +03:00
let previewService = PreviewService()
2017-04-30 10:25:15 +03:00
let httpService: HttpServerService = HttpServerService(port: baseServerUrl.port!)
2017-02-28 12:20:25 +03:00
2017-02-28 12:42:34 +03:00
// AppState
2017-01-22 16:22:05 +03:00
Observable
.of(
2017-04-22 12:31:42 +03:00
self.actionSourceForAppState()
2017-04-30 10:25:15 +03:00
.reduce(by: AppDelegateReducer(baseServerUrl: baseServerUrl).reduce)
.filterMapPair(),
2017-04-22 12:31:42 +03:00
self.actionSourceForAppState()
2017-04-30 10:25:15 +03:00
.reduce(by: UiRootReducer().reduce)
.reduce(by: openQuicklyReducer.reduceMainWindow)
.filter { $0.modified }
.apply(prefService.applyMainWindow)
.map { $0.state },
2017-04-22 12:31:42 +03:00
self.actionSourceForAppState()
2017-04-30 10:25:15 +03:00
.reduce(by: FileMonitorReducer().reduce)
.filterMapPair(),
2017-04-22 12:31:42 +03:00
self.actionSourceForAppState()
2017-04-30 10:25:15 +03:00
.reduce(by: openQuicklyReducer.reduceOpenQuicklyWindow)
.filterMapPair()
2017-01-22 16:22:05 +03:00
)
.merge()
.subscribe(onNext: self.emitAppState)
.disposed(by: self.disposeBag)
2017-02-28 12:42:34 +03:00
// MainWindow.State
2017-02-12 13:24:15 +03:00
Observable
2017-02-24 02:24:30 +03:00
.of(
2017-04-22 12:31:42 +03:00
self.actionSourceForMainWindow()
2017-04-30 10:25:15 +03:00
.reduce(by: MainWindowReducer().reduce)
.reduce(by: markdownReducer.reduceMainWindow)
.filter { $0.modified }
.apply(previewService.applyMainWindow)
.apply(httpService.applyMainWindow)
.map { $0.state },
2017-04-22 12:31:42 +03:00
self.actionSourceForMainWindow()
2017-04-30 10:25:15 +03:00
.reduce(by: PreviewToolReducer(baseServerUrl: baseServerUrl).reduce)
.filterMapPair(),
2017-04-22 12:31:42 +03:00
self.actionSourceForMainWindow()
2017-04-30 10:25:15 +03:00
.reduce(by: HtmlPreviewToolReducer(baseServerUrl: baseServerUrl).reduce)
.filter { $0.modified }
.apply(httpService.applyHtmlPreview)
.map { $0.state },
2017-04-22 12:31:42 +03:00
self.actionSourceForMainWindow()
2017-04-30 10:25:15 +03:00
.reduce(by: FileBrowserReducer().reduce)
.filterMapPair(),
2017-04-22 12:31:42 +03:00
self.actionSourceForMainWindow()
2017-04-30 10:25:15 +03:00
.reduce(by: OpenedFileListReducer().reduce)
.reduce(by: markdownReducer.reduceOpenedFileList)
.filter { $0.modified }
.apply(previewService.applyOpenedFileList)
.map { $0.state }
2017-02-24 02:24:30 +03:00
)
2017-02-12 13:24:15 +03:00
.merge()
.subscribe(onNext: self.emitAppState)
.disposed(by: self.disposeBag)
2017-02-28 12:42:34 +03:00
// Preferences
2017-02-28 00:45:26 +03:00
Observable
.of(
2017-04-30 10:25:15 +03:00
self.prefStateSource(by: PrefWindowReducer().reduce, prefService: prefService),
self.prefStateSource(by: GeneralPrefReducer().reduce, prefService: prefService),
self.prefStateSource(by: ToolsPrefReducer().reduce, prefService: prefService),
2017-04-30 10:25:15 +03:00
self.prefStateSource(by: AppearancePrefReducer().reduce, prefService: prefService),
self.prefStateSource(by: AdvancedPrefReducer().reduce, prefService: prefService)
2017-04-22 17:03:45 +03:00
)
2017-02-28 00:45:26 +03:00
.merge()
.subscribe(onNext: self.emitAppState)
.disposed(by: self.disposeBag)
2017-02-24 02:24:30 +03:00
2017-02-03 00:39:05 +03:00
#if DEBUG
// self.actionEmitter.observable.debug().subscribe().disposed(by: self.disposeBag)
// stateSource.debug().subscribe().disposed(by: self.disposeBag)
2017-02-03 00:39:05 +03:00
#endif
}
deinit {
self.stateSubject.onCompleted()
}
2017-01-25 00:39:19 +03:00
fileprivate let stateSubject = PublishSubject<AppState>()
2017-01-22 16:22:05 +03:00
fileprivate let scheduler = SerialDispatchQueueScheduler(qos: .userInitiated)
fileprivate let disposeBag = DisposeBag()
2017-02-06 20:57:50 +03:00
fileprivate var appState: AppState
2017-02-28 12:42:34 +03:00
fileprivate func emitAppState(_ mainWindow: UuidState<MainWindow.State>) {
self.appState.mainWindows[mainWindow.uuid] = mainWindow.payload
self.stateSubject.onNext(self.appState)
self.cleanUpAppState()
}
fileprivate func emitAppState(_ appState: AppState) {
self.appState = appState
self.stateSubject.onNext(self.appState)
self.cleanUpAppState()
}
fileprivate func cleanUpAppState() {
self.appState.mainWindows.keys.forEach { uuid in
self.appState.mainWindows[uuid]?.cwdToSet = nil
self.appState.mainWindows[uuid]?.currentBufferToSet = nil
2017-03-31 20:32:01 +03:00
self.appState.mainWindows[uuid]?.viewToBeFocused = nil
self.appState.mainWindows[uuid]?.urlsToOpen.removeAll()
}
}
2017-04-22 17:03:45 +03:00
fileprivate func actionSourceForAppState<ActionType>() -> Observable<StateActionPair<AppState, ActionType>> {
2017-04-22 12:31:42 +03:00
return self.actionEmitter.observable
2017-04-22 17:03:45 +03:00
.mapOmittingNil { $0 as? ActionType }
2017-04-22 12:31:42 +03:00
.map { self.appStateActionPair(for: $0) }
}
2017-04-22 17:03:45 +03:00
fileprivate func actionSourceForMainWindow<ActionType>()
-> Observable<StateActionPair<UuidState<MainWindow.State>, ActionType>> {
2017-04-22 12:31:42 +03:00
return self.actionEmitter.observable
2017-04-22 17:03:45 +03:00
.mapOmittingNil { $0 as? UuidAction<ActionType> }
2017-04-22 12:31:42 +03:00
.mapOmittingNil { self.mainWindowStateActionPair(for: $0) }
}
2017-04-30 10:25:15 +03:00
fileprivate func prefStateSource<ActionType>(
by reduce: @escaping (StateActionPair<AppState, ActionType>) -> StateActionPair<AppState, ActionType>,
prefService: PrefService
) -> Observable<AppState> {
return self.actionSourceForAppState()
.reduce(by: reduce)
.filter { $0.modified }
.apply(prefService.applyPref)
.map { $0.state }
}
2017-02-28 12:42:34 +03:00
fileprivate func appStateActionPair<ActionType>(for action: ActionType) -> StateActionPair<AppState, ActionType> {
return StateActionPair(state: self.appState, action: action, modified: false)
}
fileprivate func mainWindowStateActionPair<ActionType>(for action: UuidAction<ActionType>)
-> StateActionPair<UuidState<MainWindow.State>, ActionType>? {
guard let mainWindowState = self.appState.mainWindows[action.uuid] else {
return nil
}
return StateActionPair(state: UuidState(uuid: action.uuid, state: mainWindowState),
action: action.payload,
modified: false)
}
}