1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 19:47:41 +03:00
vimr/VimR/MainWindowTransformer.swift

42 lines
912 B
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
class MainWindowTransformer: Transformer {
typealias Pair = StateActionPair<UuidState<MainWindow.State>, MainWindow.Action>
func transform(_ source: Observable<Pair>) -> Observable<Pair> {
return source.map { pair in
var state = pair.state.payload
switch pair.action {
case let .cd(to: cwd):
if state.cwd != cwd {
state.cwd = cwd
}
case let .setBufferList(buffers):
buffers
.flatMap { $0.url }
.forEach { state.urlsToOpen.removeValue(forKey: $0) }
state.buffers = buffers
2017-01-22 16:22:05 +03:00
case let .setCurrentBuffer(buffer):
state.currentBuffer = buffer
default:
2017-01-22 16:22:05 +03:00
return pair
}
return StateActionPair(state: UuidState(uuid: state.uuid, state: state), action: pair.action)
}
}
}