1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-28 02:54:31 +03:00
vimr/VimR/OpenQuicklyReducer.swift
2017-03-29 20:17:45 +02:00

87 lines
2.0 KiB
Swift

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
import Foundation
import RxSwift
class OpenQuicklyReducer {
let forMainWindow = MainWindowReducer()
let forOpenQuicklyWindow = OpenQuicklyWindowReducer()
}
extension OpenQuicklyReducer {
class OpenQuicklyWindowReducer: Reducer {
typealias Pair = StateActionPair<AppState, OpenQuicklyWindow.Action>
func reduce(_ source: Observable<Pair>) -> Observable<Pair> {
return source.map { pair in
var appState = pair.state
appState.openQuickly.open = false
appState.openQuickly.flatFileItems = Observable.empty()
appState.openQuickly.cwd = FileUtils.userHomeUrl
switch pair.action {
case let .open(url):
guard let uuid = appState.currentMainWindowUuid else {
return pair
}
appState.mainWindows[uuid]?.urlsToOpen.append(Marked([url: .newTab]))
case .close:
break
}
return StateActionPair(state: appState, action: pair.action)
}
}
}
class MainWindowReducer: Reducer {
typealias Pair = StateActionPair<AppState, UuidAction<MainWindow.Action>>
func reduce(_ source: Observable<Pair>) -> Observable<Pair> {
return source.map { pair in
switch pair.action.payload {
case .openQuickly:
var appState = pair.state
guard let uuid = appState.currentMainWindowUuid else {
return pair
}
guard let cwd = appState.mainWindows[uuid]?.cwd else {
return pair
}
appState.openQuickly.open = true
appState.openQuickly.cwd = cwd
appState.openQuickly.flatFileItems = FileItemUtils.flatFileItems(
ofUrl: cwd,
ignorePatterns: appState.openQuickly.ignorePatterns,
ignoreToken: appState.openQuickly.ignoreToken,
root: appState.root
)
return StateActionPair(state: appState, action: pair.action)
default:
return pair
}
}
}
}
}