19
19
~Internal () { [webView_ release ]; }
20
20
21
21
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 ;
29
28
}
29
+
30
+ NSURLRequest *request = [NSURLRequest requestWithURL: url_ns];
31
+ [webView_ loadRequest: request];
30
32
}
31
33
32
34
auto load_html (const std::string &html_path) -> void {
@@ -37,11 +39,21 @@ auto load_html(const std::string &html_path) -> void {
37
39
NSURL *html_url = [bundle URLForResource: html_filename_without_extension
38
40
withExtension: @" html" ];
39
41
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 ]];
42
49
}
43
50
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
+ }
45
57
46
58
private:
47
59
WKWebView *webView_;
@@ -51,25 +63,23 @@ auto load_html(const std::string &html_path) -> void {
51
63
52
64
WebView::~WebView () { delete internal_; }
53
65
54
- auto WebView::resize () -> void {
55
- // Implement resize if needed
56
- }
57
-
58
66
auto WebView::attach_to (sourcemeta::native::Window &window) -> void {
59
67
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);
66
70
}
67
71
68
72
auto WebView::load_url (const std::string &url) -> void {
73
+ if (url.empty ()) {
74
+ return ;
75
+ }
69
76
internal_->load_url (url);
70
77
}
71
78
72
79
auto WebView::load_html (const std::string &html_path) -> void {
80
+ if (html_path.empty () || !html_path.ends_with (" .html" )) {
81
+ return ;
82
+ }
73
83
internal_->load_html (html_path);
74
84
}
75
85
} // namespace sourcemeta::native
0 commit comments