mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
247 lines
6.7 KiB
Swift
247 lines
6.7 KiB
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Cocoa
|
|
import RxSwift
|
|
import PureLayout
|
|
import Sparkle
|
|
|
|
/// Keep the rawValues in sync with Action in the `vimr` Python script.
|
|
private enum VimRUrlAction: String {
|
|
case activate = "activate"
|
|
case open = "open"
|
|
case newWindow = "open-in-new-window"
|
|
case separateWindows = "open-in-separate-windows"
|
|
}
|
|
|
|
fileprivate let filePrefix = "file="
|
|
fileprivate let cwdPrefix = "cwd="
|
|
|
|
@NSApplicationMain
|
|
class AppDelegate: NSObject, NSApplicationDelegate {
|
|
|
|
enum Action {
|
|
|
|
case newMainWindow(urls: [URL], cwd: URL)
|
|
case openInKeyWindow(urls: [URL], cwd: URL)
|
|
|
|
case quitWithoutSaving
|
|
case quit
|
|
}
|
|
|
|
@IBOutlet var debugMenu: NSMenuItem?
|
|
@IBOutlet var updater: SUUpdater?
|
|
|
|
override init() {
|
|
let initialAppState = AppState.default
|
|
self.stateContext = StateContext(initialAppState)
|
|
|
|
let source = self.stateContext.stateSource
|
|
self.uiRoot = UiRoot(source: source,
|
|
emitter: self.stateContext.actionEmitter,
|
|
state: initialAppState) // FIXME
|
|
|
|
super.init()
|
|
|
|
source
|
|
.subscribe(onNext: { appState in
|
|
self.hasMainWindows = !appState.mainWindows.isEmpty
|
|
self.hasDirtyWindows = appState.mainWindows.values.reduce(false) { $1.isDirty ? true : $0 }
|
|
NSLog("has dirty: \(self.hasDirtyWindows)")
|
|
})
|
|
.addDisposableTo(self.disposeBag)
|
|
|
|
// FIXME
|
|
// self.setSparkleUrl()
|
|
}
|
|
|
|
// fileprivate func setSparkleUrl() {
|
|
// DispatchUtils.gui {
|
|
// if self.prefStore.data.advanced.useSnapshotUpdateChannel {
|
|
// self.updater?.feedURL = URL(
|
|
// string: "https://raw.githubusercontent.com/qvacua/vimr/develop/appcast_snapshot.xml"
|
|
// )
|
|
// } else {
|
|
// self.updater?.feedURL = URL(
|
|
// string: "https://raw.githubusercontent.com/qvacua/vimr/master/appcast.xml"
|
|
// )
|
|
// }
|
|
// }
|
|
// }
|
|
|
|
fileprivate let stateContext: StateContext
|
|
|
|
fileprivate let uiRoot: UiRoot
|
|
|
|
fileprivate var hasDirtyWindows = false
|
|
fileprivate var hasMainWindows = false
|
|
|
|
fileprivate let disposeBag = DisposeBag()
|
|
|
|
fileprivate var quitWhenAllWindowsAreClosed = false
|
|
fileprivate var launching = true
|
|
}
|
|
|
|
// MARK: - NSApplicationDelegate
|
|
extension AppDelegate {
|
|
|
|
func applicationWillFinishLaunching(_: Notification) {
|
|
self.launching = true
|
|
|
|
let appleEventManager = NSAppleEventManager.shared()
|
|
appleEventManager.setEventHandler(self,
|
|
andSelector: #selector(AppDelegate.handle(getUrlEvent:replyEvent:)),
|
|
forEventClass: UInt32(kInternetEventClass),
|
|
andEventID: UInt32(kAEGetURL))
|
|
}
|
|
|
|
func applicationDidFinishLaunching(_: Notification) {
|
|
self.launching = false
|
|
|
|
#if DEBUG
|
|
self.debugMenu?.isHidden = false
|
|
#endif
|
|
}
|
|
|
|
func applicationOpenUntitledFile(_ sender: NSApplication) -> Bool {
|
|
// if self.launching {
|
|
// if self.prefStore.data.general.openNewWindowWhenLaunching {
|
|
// self.newDocument(self)
|
|
// return true
|
|
// }
|
|
// } else {
|
|
// if self.prefStore.data.general.openNewWindowOnReactivation {
|
|
// self.newDocument(self)
|
|
// return true
|
|
// }
|
|
// }
|
|
//
|
|
// return false
|
|
|
|
// FIXME
|
|
self.newDocument(self)
|
|
return true
|
|
}
|
|
|
|
func applicationShouldTerminate(_ sender: NSApplication) -> NSApplicationTerminateReply {
|
|
if self.hasDirtyWindows {
|
|
let alert = NSAlert()
|
|
alert.addButton(withTitle: "Cancel")
|
|
alert.addButton(withTitle: "Discard and Quit")
|
|
alert.messageText = "There are windows with unsaved buffers!"
|
|
alert.alertStyle = .warning
|
|
|
|
if alert.runModal() == NSAlertSecondButtonReturn {
|
|
self.quitWhenAllWindowsAreClosed = true
|
|
self.stateContext.actionEmitter.emit(AppDelegate.Action.quitWithoutSaving)
|
|
}
|
|
|
|
return .terminateCancel
|
|
}
|
|
|
|
if self.hasMainWindows {
|
|
self.quitWhenAllWindowsAreClosed = true
|
|
self.stateContext.actionEmitter.emit(AppDelegate.Action.quit)
|
|
|
|
return .terminateCancel
|
|
}
|
|
|
|
// There are no open main window, then just quit.
|
|
return .terminateNow
|
|
}
|
|
|
|
// For drag & dropping files on the App icon.
|
|
func application(_ sender: NSApplication, openFiles filenames: [String]) {
|
|
let urls = filenames.map { URL(fileURLWithPath: $0) }
|
|
self.stateContext.actionEmitter.emit(Action.newMainWindow(urls: urls, cwd: FileUtils.userHomeUrl))
|
|
|
|
sender.reply(toOpenOrPrint: .success)
|
|
}
|
|
}
|
|
|
|
// MARK: - AppleScript
|
|
extension AppDelegate {
|
|
|
|
func handle(getUrlEvent event: NSAppleEventDescriptor, replyEvent: NSAppleEventDescriptor) {
|
|
guard let urlString = event.paramDescriptor(forKeyword: UInt32(keyDirectObject))?.stringValue else {
|
|
return
|
|
}
|
|
|
|
guard let url = URL(string: urlString) else {
|
|
return
|
|
}
|
|
|
|
guard url.scheme == "vimr" else {
|
|
return
|
|
}
|
|
|
|
guard let rawAction = url.host else {
|
|
return
|
|
}
|
|
|
|
guard let action = VimRUrlAction(rawValue: rawAction) else {
|
|
return
|
|
}
|
|
|
|
let queryParams = url.query?.components(separatedBy: "&")
|
|
let urls = queryParams?
|
|
.filter { $0.hasPrefix(filePrefix) }
|
|
.flatMap { $0.without(prefix: filePrefix).removingPercentEncoding }
|
|
.map { URL(fileURLWithPath: $0) } ?? []
|
|
let cwd = queryParams?
|
|
.filter { $0.hasPrefix(cwdPrefix) }
|
|
.flatMap { $0.without(prefix: cwdPrefix).removingPercentEncoding }
|
|
.map { URL(fileURLWithPath: $0) }
|
|
.first ?? FileUtils.userHomeUrl
|
|
|
|
switch action {
|
|
|
|
case .activate, .newWindow:
|
|
self.stateContext.actionEmitter.emit(Action.newMainWindow(urls: urls, cwd: cwd))
|
|
|
|
case .open:
|
|
self.stateContext.actionEmitter.emit(Action.openInKeyWindow(urls: urls, cwd: cwd))
|
|
|
|
case .separateWindows:
|
|
urls.forEach { self.stateContext.actionEmitter.emit(Action.newMainWindow(urls: [$0], cwd: cwd)) }
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: - IBActions
|
|
extension AppDelegate {
|
|
|
|
@IBAction func newDocument(_ sender: Any?) {
|
|
self.stateContext.actionEmitter.emit(Action.newMainWindow(urls: [], cwd: FileUtils.userHomeUrl))
|
|
}
|
|
|
|
@IBAction func openInNewWindow(_ sender: Any?) {
|
|
self.openDocument(sender)
|
|
}
|
|
|
|
@IBAction func showPrefWindow(_ sender: Any?) {
|
|
// FIXME
|
|
// self.prefWindowComponent.show()
|
|
}
|
|
|
|
// Invoked when no main window is open.
|
|
@IBAction func openDocument(_: Any?) {
|
|
let panel = NSOpenPanel()
|
|
panel.canChooseDirectories = true
|
|
panel.allowsMultipleSelection = true
|
|
panel.begin { result in
|
|
guard result == NSFileHandlingPanelOKButton else {
|
|
return
|
|
}
|
|
|
|
let urls = panel.urls
|
|
let commonParentUrl = FileUtils.commonParent(of: urls)
|
|
|
|
self.stateContext.actionEmitter.emit(Action.newMainWindow(urls: urls, cwd: commonParentUrl))
|
|
}
|
|
}
|
|
}
|