mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
144 lines
4.7 KiB
TypeScript
144 lines
4.7 KiB
TypeScript
import { WebViewBase, knownFolders, traceWrite, traceEnabled, traceCategories } from "./web-view-common";
|
|
|
|
export * from "./web-view-common";
|
|
|
|
class UIWebViewDelegateImpl extends NSObject implements UIWebViewDelegate {
|
|
public static ObjCProtocols = [UIWebViewDelegate];
|
|
|
|
private _owner: WeakRef<WebView>;
|
|
|
|
public static initWithOwner(owner: WeakRef<WebView>): UIWebViewDelegateImpl {
|
|
let delegate = <UIWebViewDelegateImpl>UIWebViewDelegateImpl.new();
|
|
delegate._owner = owner;
|
|
return delegate;
|
|
}
|
|
|
|
public webViewShouldStartLoadWithRequestNavigationType(webView: UIWebView, request: NSURLRequest, navigationType: number) {
|
|
let owner = this._owner.get();
|
|
|
|
if (owner && request.URL) {
|
|
let navTypeIndex = WebViewBase.navigationTypes.indexOf("other");
|
|
|
|
switch (navigationType) {
|
|
case UIWebViewNavigationType.LinkClicked:
|
|
navTypeIndex = WebViewBase.navigationTypes.indexOf("linkClicked");
|
|
break;
|
|
case UIWebViewNavigationType.FormSubmitted:
|
|
navTypeIndex = WebViewBase.navigationTypes.indexOf("formSubmitted");
|
|
break;
|
|
case UIWebViewNavigationType.BackForward:
|
|
navTypeIndex = WebViewBase.navigationTypes.indexOf("backForward");
|
|
break;
|
|
case UIWebViewNavigationType.Reload:
|
|
navTypeIndex = WebViewBase.navigationTypes.indexOf("reload");
|
|
break;
|
|
case UIWebViewNavigationType.FormResubmitted:
|
|
navTypeIndex = WebViewBase.navigationTypes.indexOf("formResubmitted");
|
|
break;
|
|
}
|
|
|
|
if (traceEnabled()) {
|
|
traceWrite("UIWebViewDelegateClass.webViewShouldStartLoadWithRequestNavigationType(" + request.URL.absoluteString + ", " + navigationType + ")", traceCategories.Debug);
|
|
}
|
|
owner._onLoadStarted(request.URL.absoluteString, WebViewBase.navigationTypes[navTypeIndex]);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public webViewDidStartLoad(webView: UIWebView) {
|
|
if (traceEnabled()) {
|
|
traceWrite("UIWebViewDelegateClass.webViewDidStartLoad(" + webView.request.URL + ")", traceCategories.Debug);
|
|
}
|
|
}
|
|
|
|
public webViewDidFinishLoad(webView: UIWebView) {
|
|
if (traceEnabled()) {
|
|
traceWrite("UIWebViewDelegateClass.webViewDidFinishLoad(" + webView.request.URL + ")", traceCategories.Debug);
|
|
}
|
|
let owner = this._owner.get();
|
|
if (owner) {
|
|
owner._onLoadFinished(webView.request.URL.absoluteString);
|
|
}
|
|
}
|
|
|
|
public webViewDidFailLoadWithError(webView: UIWebView, error: NSError) {
|
|
let owner = this._owner.get();
|
|
if (owner) {
|
|
let src = owner.src;
|
|
if (webView.request && webView.request.URL) {
|
|
src = webView.request.URL.absoluteString;
|
|
}
|
|
|
|
if (traceEnabled()) {
|
|
traceWrite("UIWebViewDelegateClass.webViewDidFailLoadWithError(" + error.localizedDescription + ")", traceCategories.Debug);
|
|
}
|
|
if (owner) {
|
|
owner._onLoadFinished(src, error.localizedDescription);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
export class WebView extends WebViewBase {
|
|
private _ios: UIWebView;
|
|
private _delegate: any;
|
|
|
|
constructor() {
|
|
super();
|
|
|
|
this._ios = UIWebView.new();
|
|
this._delegate = UIWebViewDelegateImpl.initWithOwner(new WeakRef(this));
|
|
}
|
|
|
|
public onLoaded() {
|
|
super.onLoaded();
|
|
this._ios.delegate = this._delegate;
|
|
}
|
|
|
|
public onUnloaded() {
|
|
this._ios.delegate = null;
|
|
super.onUnloaded();
|
|
}
|
|
|
|
get ios(): UIWebView {
|
|
return this._ios;
|
|
}
|
|
|
|
public stopLoading() {
|
|
this._ios.stopLoading();
|
|
}
|
|
|
|
public _loadFileOrResource(path: string, content: string) {
|
|
var baseURL = NSURL.fileURLWithPath(NSString.stringWithString(path).stringByDeletingLastPathComponent);
|
|
this._ios.loadHTMLStringBaseURL(content, baseURL);
|
|
}
|
|
|
|
public _loadHttp(src: string) {
|
|
this._ios.loadRequest(NSURLRequest.requestWithURL(NSURL.URLWithString(src)));
|
|
}
|
|
|
|
public _loadData(content: string) {
|
|
this._ios.loadHTMLStringBaseURL(content, NSURL.alloc().initWithString(`file:///${knownFolders.currentApp().path}/`));
|
|
}
|
|
|
|
get canGoBack(): boolean {
|
|
return this._ios.canGoBack;
|
|
}
|
|
|
|
get canGoForward(): boolean {
|
|
return this._ios.canGoForward;
|
|
}
|
|
|
|
public goBack() {
|
|
this._ios.goBack();
|
|
}
|
|
|
|
public goForward() {
|
|
this._ios.goForward();
|
|
}
|
|
|
|
public reload() {
|
|
this._ios.reload();
|
|
}
|
|
}
|