2017-01-22 16:22:05 +03:00
|
|
|
/**
|
|
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
|
|
* See LICENSE
|
|
|
|
*/
|
2017-01-17 21:47:59 +03:00
|
|
|
|
|
|
|
import Cocoa
|
|
|
|
import RxSwift
|
|
|
|
import SwiftNeoVim
|
|
|
|
import PureLayout
|
|
|
|
|
|
|
|
protocol UiComponent {
|
|
|
|
|
|
|
|
associatedtype StateType
|
|
|
|
|
2017-01-25 00:39:19 +03:00
|
|
|
init(source: Observable<StateType>, emitter: ActionEmitter, state: StateType)
|
2017-01-22 16:22:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
class Debouncer<T> {
|
|
|
|
|
|
|
|
let observable: Observable<T>
|
|
|
|
|
|
|
|
init(interval: RxTimeInterval) {
|
|
|
|
self.observable = self.subject.throttle(interval, latest: true, scheduler: self.scheduler)
|
|
|
|
}
|
|
|
|
|
|
|
|
deinit {
|
|
|
|
self.subject.onCompleted()
|
|
|
|
}
|
|
|
|
|
|
|
|
func call(_ element: T) {
|
|
|
|
self.subject.onNext(element)
|
|
|
|
}
|
|
|
|
|
|
|
|
fileprivate let subject = PublishSubject<T>()
|
|
|
|
fileprivate let scheduler = SerialDispatchQueueScheduler(qos: .userInteractive)
|
|
|
|
fileprivate let disposeBag = DisposeBag()
|
2017-01-17 21:47:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
class MainWindow: NSObject,
|
|
|
|
UiComponent,
|
|
|
|
NeoVimViewDelegate,
|
|
|
|
NSWindowDelegate {
|
|
|
|
|
|
|
|
typealias StateType = State
|
|
|
|
|
|
|
|
enum Action {
|
|
|
|
|
|
|
|
case cd(to: URL)
|
|
|
|
case setBufferList([NeoVimBuffer])
|
|
|
|
|
2017-01-22 16:22:05 +03:00
|
|
|
case setCurrentBuffer(NeoVimBuffer)
|
|
|
|
|
2017-01-17 21:47:59 +03:00
|
|
|
case becomeKey
|
|
|
|
|
2017-01-22 16:22:05 +03:00
|
|
|
case scroll(to: Position)
|
|
|
|
case setCursor(to: Position)
|
|
|
|
|
2017-01-17 21:47:59 +03:00
|
|
|
case close
|
|
|
|
}
|
|
|
|
|
|
|
|
enum OpenMode {
|
|
|
|
|
|
|
|
case `default`
|
|
|
|
case currentTab
|
|
|
|
case newTab
|
|
|
|
case horizontalSplit
|
|
|
|
case verticalSplit
|
|
|
|
}
|
|
|
|
|
2017-01-25 00:39:19 +03:00
|
|
|
required init(source: Observable<StateType>, emitter: ActionEmitter, state: StateType) {
|
2017-01-17 21:47:59 +03:00
|
|
|
self.uuid = state.uuid
|
|
|
|
self.emitter = emitter
|
|
|
|
|
|
|
|
self.neoVimView = NeoVimView(frame: CGRect.zero,
|
|
|
|
config: NeoVimView.Config(useInteractiveZsh: state.isUseInteractiveZsh))
|
|
|
|
self.neoVimView.configureForAutoLayout()
|
|
|
|
|
|
|
|
self.workspace = Workspace(mainView: self.neoVimView)
|
|
|
|
|
|
|
|
self.windowController = NSWindowController(windowNibName: "MainWindow")
|
|
|
|
|
|
|
|
super.init()
|
2017-01-22 16:22:05 +03:00
|
|
|
|
|
|
|
self.scrollDebouncer.observable
|
|
|
|
.subscribe(onNext: { [unowned self] action in
|
|
|
|
self.emitter.emit(self.uuidAction(for: action))
|
|
|
|
})
|
|
|
|
.addDisposableTo(self.disposeBag)
|
|
|
|
|
|
|
|
self.cursorDebouncer.observable
|
|
|
|
.subscribe(onNext: { [unowned self] action in
|
|
|
|
self.emitter.emit(self.uuidAction(for: action))
|
|
|
|
})
|
|
|
|
.addDisposableTo(self.disposeBag)
|
|
|
|
|
2017-01-17 21:47:59 +03:00
|
|
|
self.addViews()
|
|
|
|
|
|
|
|
self.windowController.window?.delegate = self
|
|
|
|
|
|
|
|
source
|
2017-01-22 16:22:05 +03:00
|
|
|
.debug()
|
2017-01-17 21:47:59 +03:00
|
|
|
.observeOn(MainScheduler.instance)
|
|
|
|
.subscribe(onNext: { [unowned self] state in
|
|
|
|
})
|
|
|
|
.addDisposableTo(self.disposeBag)
|
|
|
|
|
|
|
|
let neoVimView = self.neoVimView
|
|
|
|
neoVimView.delegate = self
|
|
|
|
neoVimView.font = state.font
|
|
|
|
neoVimView.linespacing = state.linespacing
|
|
|
|
neoVimView.usesLigatures = state.isUseLigatures
|
|
|
|
if neoVimView.cwd != state.cwd {
|
|
|
|
self.neoVimView.cwd = state.cwd
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we don't call the following in the next tick, only half of the existing swap file warning is displayed.
|
|
|
|
// Dunno why...
|
|
|
|
DispatchUtils.gui {
|
|
|
|
state.urlsToOpen.forEach { (url: URL, openMode: OpenMode) in
|
|
|
|
switch openMode {
|
|
|
|
|
|
|
|
case .default:
|
|
|
|
self.neoVimView.open(urls: [url])
|
|
|
|
|
|
|
|
case .currentTab:
|
|
|
|
self.neoVimView.openInCurrentTab(url: url)
|
|
|
|
|
|
|
|
case .newTab:
|
|
|
|
self.neoVimView.openInNewTab(urls: [url])
|
|
|
|
|
|
|
|
case .horizontalSplit:
|
|
|
|
self.neoVimView.openInHorizontalSplit(urls: [url])
|
|
|
|
|
|
|
|
case .verticalSplit:
|
|
|
|
self.neoVimView.openInVerticalSplit(urls: [url])
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.window.makeFirstResponder(neoVimView)
|
|
|
|
}
|
|
|
|
|
|
|
|
func show() {
|
|
|
|
self.windowController.showWindow(self)
|
|
|
|
}
|
|
|
|
|
2017-02-04 17:34:13 +03:00
|
|
|
func closeAllNeoVimWindowsWithoutSaving() {
|
|
|
|
self.neoVimView.closeAllWindowsWithoutSaving()
|
|
|
|
}
|
|
|
|
|
2017-01-17 21:47:59 +03:00
|
|
|
fileprivate func addViews() {
|
|
|
|
let contentView = self.window.contentView!
|
|
|
|
|
|
|
|
contentView.addSubview(self.workspace)
|
|
|
|
|
|
|
|
self.workspace.autoPinEdgesToSuperviewEdges()
|
|
|
|
}
|
|
|
|
|
|
|
|
fileprivate let emitter: ActionEmitter
|
|
|
|
fileprivate let disposeBag = DisposeBag()
|
|
|
|
|
|
|
|
fileprivate let uuid: String
|
|
|
|
|
|
|
|
fileprivate let windowController: NSWindowController
|
|
|
|
fileprivate var window: NSWindow { return self.windowController.window! }
|
|
|
|
|
|
|
|
fileprivate let workspace: Workspace
|
|
|
|
fileprivate let neoVimView: NeoVimView
|
2017-01-22 16:22:05 +03:00
|
|
|
|
|
|
|
fileprivate let scrollDebouncer = Debouncer<Action>(interval: 0.75)
|
|
|
|
fileprivate let cursorDebouncer = Debouncer<Action>(interval: 0.75)
|
|
|
|
|
|
|
|
fileprivate func uuidAction(for action: Action) -> UuidAction<Action> {
|
|
|
|
return UuidAction(uuid: self.uuid, action: action)
|
|
|
|
}
|
2017-01-17 21:47:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: - NeoVimViewDelegate
|
|
|
|
extension MainWindow {
|
|
|
|
|
|
|
|
func neoVimStopped() {
|
|
|
|
self.windowController.close()
|
|
|
|
}
|
|
|
|
|
|
|
|
func set(title: String) {
|
|
|
|
self.window.title = title
|
|
|
|
}
|
|
|
|
|
|
|
|
func set(dirtyStatus: Bool) {
|
|
|
|
self.windowController.setDocumentEdited(dirtyStatus)
|
|
|
|
}
|
|
|
|
|
|
|
|
func cwdChanged() {
|
2017-01-22 16:22:05 +03:00
|
|
|
self.emitter.emit(self.uuidAction(for: .cd(to: self.neoVimView.cwd)))
|
2017-01-17 21:47:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func bufferListChanged() {
|
|
|
|
let buffers = self.neoVimView.allBuffers()
|
2017-01-22 16:22:05 +03:00
|
|
|
self.emitter.emit(self.uuidAction(for: .setBufferList(buffers)))
|
2017-01-17 21:47:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func currentBufferChanged(_ currentBuffer: NeoVimBuffer) {
|
2017-01-22 16:22:05 +03:00
|
|
|
self.emitter.emit(self.uuidAction(for: .setCurrentBuffer(currentBuffer)))
|
2017-01-17 21:47:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func tabChanged() {
|
2017-01-22 16:22:05 +03:00
|
|
|
guard let currentBuffer = self.neoVimView.currentBuffer() else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
self.currentBufferChanged(currentBuffer)
|
2017-01-17 21:47:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func ipcBecameInvalid(reason: String) {
|
|
|
|
let alert = NSAlert()
|
|
|
|
alert.addButton(withTitle: "Close")
|
|
|
|
alert.messageText = "Sorry, an error occurred."
|
|
|
|
alert.informativeText = "VimR encountered an error from which it cannot recover. This window will now close.\n"
|
|
|
|
+ reason
|
|
|
|
alert.alertStyle = .critical
|
|
|
|
alert.beginSheetModal(for: self.window) { response in
|
|
|
|
self.windowController.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func scroll() {
|
2017-01-22 16:22:05 +03:00
|
|
|
self.scrollDebouncer.call(.scroll(to: self.neoVimView.currentPosition))
|
2017-01-17 21:47:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func cursor(to position: Position) {
|
2017-01-22 16:22:05 +03:00
|
|
|
self.cursorDebouncer.call(.setCursor(to: position))
|
2017-01-17 21:47:59 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: - NSWindowDelegate
|
|
|
|
extension MainWindow {
|
|
|
|
|
|
|
|
func windowDidBecomeKey(_: Notification) {
|
2017-01-22 16:22:05 +03:00
|
|
|
self.emitter.emit(self.uuidAction(for: .becomeKey))
|
2017-01-17 21:47:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func windowWillClose(_: Notification) {
|
2017-01-22 16:22:05 +03:00
|
|
|
self.emitter.emit(self.uuidAction(for: .close))
|
2017-01-17 21:47:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func windowShouldClose(_: Any) -> Bool {
|
|
|
|
guard self.neoVimView.isCurrentBufferDirty() else {
|
|
|
|
self.neoVimView.closeCurrentTab()
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
let alert = NSAlert()
|
|
|
|
alert.addButton(withTitle: "Cancel")
|
|
|
|
alert.addButton(withTitle: "Discard and Close")
|
|
|
|
alert.messageText = "The current buffer has unsaved changes!"
|
|
|
|
alert.alertStyle = .warning
|
|
|
|
alert.beginSheetModal(for: self.window, completionHandler: { response in
|
|
|
|
if response == NSAlertSecondButtonReturn {
|
|
|
|
self.neoVimView.closeCurrentTabWithoutSaving()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|