Skip to content

Commit a8a5c87

Browse files
authoredNov 19, 2024
refactor(ui/webview): Appkit webview refactor2 (#41)
Signed-off-by: Tony Gorez <[email protected]>
1 parent 43e6f43 commit a8a5c87

File tree

1 file changed

+30
-20
lines changed

1 file changed

+30
-20
lines changed
 

‎src/ui/webview/appkit/webview_appkit.mm

+30-20
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,16 @@
1919
~Internal() { [webView_ release]; }
2020

2121
auto load_url(const std::string &url) -> void {
22-
NSString *urlString = [NSString stringWithUTF8String:url.c_str()];
23-
NSURL *nsUrl = [NSURL URLWithString:urlString];
24-
if (nsUrl) {
25-
NSURLRequest *request = [NSURLRequest requestWithURL:nsUrl];
26-
[webView_ loadRequest:request];
27-
} else {
28-
NSLog(@"Invalid URL string: %@", urlString);
22+
NSString *url_ns_str = [NSString stringWithUTF8String:url.c_str()];
23+
NSURL *url_ns = [NSURL URLWithString:url_ns_str];
24+
25+
if (!url_ns) {
26+
NSLog(@"Invalid URL string: %@", url_ns_str);
27+
return;
2928
}
29+
30+
NSURLRequest *request = [NSURLRequest requestWithURL:url_ns];
31+
[webView_ loadRequest:request];
3032
}
3133

3234
auto load_html(const std::string &html_path) -> void {
@@ -37,11 +39,21 @@ auto load_html(const std::string &html_path) -> void {
3739
NSURL *html_url = [bundle URLForResource:html_filename_without_extension
3840
withExtension:@"html"];
3941

40-
[this->get_webview() loadFileURL:html_url
41-
allowingReadAccessToURL:[html_url URLByDeletingLastPathComponent]];
42+
if (!html_url) {
43+
NSLog(@"Failed to load HTML file: %@", html_filename);
44+
return;
45+
}
46+
47+
[this->webView_ loadFileURL:html_url
48+
allowingReadAccessToURL:[html_url URLByDeletingLastPathComponent]];
4249
}
4350

44-
auto get_webview() -> WKWebView * { return webView_; }
51+
auto attach_to(NSWindow *window) -> void {
52+
NSView *contentView = [window contentView];
53+
[webView_ setFrame:contentView.bounds];
54+
[webView_ setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
55+
[contentView addSubview:webView_];
56+
}
4557

4658
private:
4759
WKWebView *webView_;
@@ -51,25 +63,23 @@ auto load_html(const std::string &html_path) -> void {
5163

5264
WebView::~WebView() { delete internal_; }
5365

54-
auto WebView::resize() -> void {
55-
// Implement resize if needed
56-
}
57-
5866
auto WebView::attach_to(sourcemeta::native::Window &window) -> void {
5967
NSWindow *native_window = static_cast<NSWindow *>(window.handle());
60-
WKWebView *webview = internal_->get_webview();
61-
62-
NSView *contentView = [native_window contentView];
63-
[webview setFrame:contentView.bounds];
64-
[webview setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
65-
[contentView addSubview:webview];
68+
assert(native_window);
69+
internal_->attach_to(native_window);
6670
}
6771

6872
auto WebView::load_url(const std::string &url) -> void {
73+
if (url.empty()) {
74+
return;
75+
}
6976
internal_->load_url(url);
7077
}
7178

7279
auto WebView::load_html(const std::string &html_path) -> void {
80+
if (html_path.empty() || !html_path.ends_with(".html")) {
81+
return;
82+
}
7383
internal_->load_html(html_path);
7484
}
7585
} // namespace sourcemeta::native

0 commit comments

Comments
 (0)