mirror of
https://github.com/lil-org/tokenary.git
synced 2024-12-13 08:12:19 +03:00
Delay initial input link processing until app did finish launching
This commit is contained in:
parent
adedb53c0c
commit
7598581185
@ -10,6 +10,9 @@ class AppDelegate: NSObject, NSApplicationDelegate {
|
|||||||
private let priceService = PriceService.shared
|
private let priceService = PriceService.shared
|
||||||
private let networkMonitor = NetworkMonitor.shared
|
private let networkMonitor = NetworkMonitor.shared
|
||||||
|
|
||||||
|
private var didFinishLaunching = false
|
||||||
|
private var initialInputLink: String?
|
||||||
|
|
||||||
override init() {
|
override init() {
|
||||||
super.init()
|
super.init()
|
||||||
let manager = NSAppleEventManager.shared()
|
let manager = NSAppleEventManager.shared()
|
||||||
@ -31,6 +34,12 @@ class AppDelegate: NSObject, NSApplicationDelegate {
|
|||||||
gasService.start()
|
gasService.start()
|
||||||
priceService.start()
|
priceService.start()
|
||||||
networkMonitor.start()
|
networkMonitor.start()
|
||||||
|
|
||||||
|
didFinishLaunching = true
|
||||||
|
if let link = initialInputLink {
|
||||||
|
initialInputLink = nil
|
||||||
|
agent.processInputLink(link)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func applicationShouldHandleReopen(_ sender: NSApplication, hasVisibleWindows flag: Bool) -> Bool {
|
func applicationShouldHandleReopen(_ sender: NSApplication, hasVisibleWindows flag: Bool) -> Bool {
|
||||||
@ -46,7 +55,11 @@ class AppDelegate: NSObject, NSApplicationDelegate {
|
|||||||
private func processInput(url: String?, prefix: String) {
|
private func processInput(url: String?, prefix: String) {
|
||||||
if let url = url, url.hasPrefix(prefix),
|
if let url = url, url.hasPrefix(prefix),
|
||||||
let link = url.dropFirst(prefix.count).removingPercentEncoding {
|
let link = url.dropFirst(prefix.count).removingPercentEncoding {
|
||||||
agent.processInputLink(link)
|
if didFinishLaunching {
|
||||||
|
agent.processInputLink(link)
|
||||||
|
} else {
|
||||||
|
initialInputLink = link
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user