mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-28 02:54:31 +03:00
76 lines
2.2 KiB
Swift
76 lines
2.2 KiB
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Foundation
|
|
|
|
class AppDelegateReducer {
|
|
|
|
typealias Pair = StateActionPair<AppState, AppDelegate.Action>
|
|
|
|
init(baseServerUrl: URL) {
|
|
self.baseServerUrl = baseServerUrl
|
|
}
|
|
|
|
func reduce(_ pair: Pair) -> Pair {
|
|
var state = pair.state
|
|
|
|
switch pair.action {
|
|
|
|
case let .newMainWindow(urls, cwd, nvimArgs, cliPipePath):
|
|
let mainWindow: MainWindow.State
|
|
if let args = nvimArgs {
|
|
mainWindow = self.newMainWindow(with: state, urls: [], cwd: cwd, nvimArgs: args, cliPipePath: cliPipePath)
|
|
} else {
|
|
mainWindow = self.newMainWindow(with: state, urls: urls, cwd: cwd, cliPipePath: cliPipePath)
|
|
}
|
|
|
|
state.mainWindows[mainWindow.uuid] = mainWindow
|
|
|
|
case let .openInKeyWindow(urls, cwd):
|
|
guard let uuid = state.currentMainWindowUuid, state.mainWindows[uuid] != nil else {
|
|
let mainWindow = self.newMainWindow(with: state, urls: urls, cwd: cwd)
|
|
state.mainWindows[mainWindow.uuid] = mainWindow
|
|
break
|
|
}
|
|
|
|
state.mainWindows[uuid]?.urlsToOpen = urls.toDict { url in MainWindow.OpenMode.default }
|
|
state.mainWindows[uuid]?.cwd = cwd
|
|
|
|
case .preferences:
|
|
state.preferencesOpen = Marked(true)
|
|
|
|
}
|
|
|
|
return StateActionPair(state: state, action: pair.action)
|
|
}
|
|
|
|
fileprivate let baseServerUrl: URL
|
|
|
|
fileprivate func newMainWindow(with state: AppState,
|
|
urls: [URL],
|
|
cwd: URL,
|
|
nvimArgs: [String]? = nil,
|
|
cliPipePath: String? = nil) -> MainWindow.State {
|
|
|
|
var mainWindow = state.mainWindowTemplate
|
|
mainWindow.uuid = UUID().uuidString
|
|
mainWindow.isDirty = false
|
|
mainWindow.htmlPreview = HtmlPreviewState(
|
|
htmlFile: nil,
|
|
server: Marked(self.baseServerUrl.appendingPathComponent(HtmlPreviewToolReducer.selectFirstPath))
|
|
)
|
|
mainWindow.nvimArgs = nvimArgs
|
|
mainWindow.cliPipePath = cliPipePath
|
|
|
|
mainWindow.urlsToOpen = urls.toDict { url in MainWindow.OpenMode.default }
|
|
|
|
mainWindow.cwd = cwd
|
|
|
|
mainWindow.preview.server = self.baseServerUrl.appendingPathComponent(MarkdownReducer.nonePath)
|
|
|
|
return mainWindow
|
|
}
|
|
}
|