-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathWebKitDelegate.swift
70 lines (64 loc) · 2.27 KB
/
WebKitDelegate.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//
// WebKitDelegate.swift
// Sky
//
import Foundation
import WebKit
class WebKitDelegate: NSObject, WKNavigationDelegate, WKUIDelegate {
// Handle opening links in a new window
func webView(
_ webView: WKWebView,
decidePolicyFor navigationAction: WKNavigationAction,
decisionHandler: @escaping (WKNavigationActionPolicy) -> Void
) {
if navigationAction.navigationType == WKNavigationType.linkActivated {
decisionHandler(WKNavigationActionPolicy.cancel)
let requestURL = navigationAction.request.url!
let host = requestURL.host!
if host == "staging.bsky.app" || host == "bsky.app" {
var urlString = requestURL.absoluteString
urlString = urlString.replacingOccurrences(
of: "//staging.bsky.app/",
with: "//bsky.app/")
let url = URL(string: urlString)
let urlRequest = URLRequest(url: url!)
webView.load(urlRequest)
} else {
NSWorkspace.shared.open(requestURL)
}
} else {
decisionHandler(WKNavigationActionPolicy.allow)
}
}
func webView(
_ webView: WKWebView,
runOpenPanelWith parameters: WKOpenPanelParameters,
initiatedByFrame frame: WKFrameInfo,
completionHandler: @escaping ([URL]?) -> Void
) {
let openPanel = NSOpenPanel()
openPanel.canChooseFiles = true
openPanel.begin { (result) in
if result == NSApplication.ModalResponse.OK {
if let url = openPanel.url {
completionHandler([url])
}
} else if result == NSApplication.ModalResponse.cancel {
completionHandler(nil)
}
}
}
func webView(
_ webView: WKWebView,
runJavaScriptConfirmPanelWithMessage message: String,
initiatedByFrame frame: WKFrameInfo,
completionHandler: @escaping (Bool) -> Void
) {
let alert = NSAlert()
alert.informativeText = message
alert.addButton(withTitle: "OK")
alert.addButton(withTitle: "Cancel")
let action = alert.runModal()
completionHandler(action == .alertFirstButtonReturn)
}
}