mirror of
https://github.com/shuto-cn/cordova-plugin-inappbrowser.git
synced 2025-04-06 23:20:48 +08:00
CB-3420 WP feature hidden=yes implemented
This commit is contained in:
parent
e5101ba8e1
commit
9768ec2ef0
@ -36,12 +36,45 @@ namespace WPCordovaClassLib.Cordova.Commands
|
|||||||
private static ApplicationBarIconButton backButton;
|
private static ApplicationBarIconButton backButton;
|
||||||
private static ApplicationBarIconButton fwdButton;
|
private static ApplicationBarIconButton fwdButton;
|
||||||
|
|
||||||
|
protected ApplicationBar AppBar;
|
||||||
|
|
||||||
|
protected bool ShowLocation {get;set;}
|
||||||
|
protected bool StartHidden {get;set;}
|
||||||
|
|
||||||
public void open(string options)
|
public void open(string options)
|
||||||
{
|
{
|
||||||
|
// reset defaults on ShowLocation + StartHidden features
|
||||||
|
ShowLocation = true;
|
||||||
|
StartHidden = false;
|
||||||
|
|
||||||
string[] args = JSON.JsonHelper.Deserialize<string[]>(options);
|
string[] args = JSON.JsonHelper.Deserialize<string[]>(options);
|
||||||
//BrowserOptions opts = JSON.JsonHelper.Deserialize<BrowserOptions>(options);
|
//BrowserOptions opts = JSON.JsonHelper.Deserialize<BrowserOptions>(options);
|
||||||
string urlLoc = args[0];
|
string urlLoc = args[0];
|
||||||
string target = args[1];
|
string target = args[1];
|
||||||
|
string featString = args[2];
|
||||||
|
|
||||||
|
string[] features = featString.Split(',');
|
||||||
|
foreach (string str in features)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
string[] split = str.Split('=');
|
||||||
|
switch (split[0])
|
||||||
|
{
|
||||||
|
case "location":
|
||||||
|
ShowLocation = split[1].ToLower().StartsWith("yes");
|
||||||
|
break;
|
||||||
|
case "hidden":
|
||||||
|
StartHidden = split[1].ToLower().StartsWith("yes");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(Exception)
|
||||||
|
{
|
||||||
|
// some sort of invalid param was passed, moving on ...
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
_self - opens in the Cordova WebView if url is in the white-list, else it opens in the InAppBrowser
|
_self - opens in the Cordova WebView if url is in the white-list, else it opens in the InAppBrowser
|
||||||
_blank - always open in the InAppBrowser
|
_blank - always open in the InAppBrowser
|
||||||
@ -59,10 +92,99 @@ namespace WPCordovaClassLib.Cordova.Commands
|
|||||||
ShowSystemBrowser(urlLoc);
|
ShowSystemBrowser(urlLoc);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void show(string options)
|
||||||
|
{
|
||||||
|
string[] args = JSON.JsonHelper.Deserialize<string[]>(options);
|
||||||
|
|
||||||
|
|
||||||
|
if (browser != null)
|
||||||
|
{
|
||||||
|
Deployment.Current.Dispatcher.BeginInvoke(() =>
|
||||||
|
{
|
||||||
|
browser.Visibility = Visibility.Visible;
|
||||||
|
AppBar.IsVisible = true;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void injectScriptCode(string options)
|
||||||
|
{
|
||||||
|
string[] args = JSON.JsonHelper.Deserialize<string[]>(options);
|
||||||
|
|
||||||
|
bool bCallback = false;
|
||||||
|
if (bool.TryParse(args[1], out bCallback)) { };
|
||||||
|
|
||||||
|
string callbackId = args[2];
|
||||||
|
|
||||||
|
if (browser != null)
|
||||||
|
{
|
||||||
|
Deployment.Current.Dispatcher.BeginInvoke(() =>
|
||||||
|
{
|
||||||
|
var res = browser.InvokeScript("eval", new string[] { args[0] });
|
||||||
|
|
||||||
|
if (bCallback)
|
||||||
|
{
|
||||||
|
PluginResult result = new PluginResult(PluginResult.Status.OK, res.ToString());
|
||||||
|
result.KeepCallback = false;
|
||||||
|
this.DispatchCommandResult(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void injectScriptFile(string options)
|
||||||
|
{
|
||||||
|
Debug.WriteLine("Error : Windows Phone org.apache.cordova.inappbrowser does not currently support executeScript");
|
||||||
|
string[] args = JSON.JsonHelper.Deserialize<string[]>(options);
|
||||||
|
// throw new NotImplementedException("Windows Phone does not currently support 'executeScript'");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void injectStyleCode(string options)
|
||||||
|
{
|
||||||
|
Debug.WriteLine("Error : Windows Phone org.apache.cordova.inappbrowser does not currently support insertCSS");
|
||||||
|
return;
|
||||||
|
|
||||||
|
//string[] args = JSON.JsonHelper.Deserialize<string[]>(options);
|
||||||
|
//bool bCallback = false;
|
||||||
|
//if (bool.TryParse(args[1], out bCallback)) { };
|
||||||
|
|
||||||
|
//string callbackId = args[2];
|
||||||
|
|
||||||
|
//if (browser != null)
|
||||||
|
//{
|
||||||
|
//Deployment.Current.Dispatcher.BeginInvoke(() =>
|
||||||
|
//{
|
||||||
|
// if (bCallback)
|
||||||
|
// {
|
||||||
|
// string cssInsertString = "try{(function(doc){var c = '<style>body{background-color:#ffff00;}</style>'; doc.head.innerHTML += c;})(document);}catch(ex){alert('oops : ' + ex.message);}";
|
||||||
|
// //cssInsertString = cssInsertString.Replace("_VALUE_", args[0]);
|
||||||
|
// Debug.WriteLine("cssInsertString = " + cssInsertString);
|
||||||
|
// var res = browser.InvokeScript("eval", new string[] { cssInsertString });
|
||||||
|
// if (bCallback)
|
||||||
|
// {
|
||||||
|
// PluginResult result = new PluginResult(PluginResult.Status.OK, res.ToString());
|
||||||
|
// result.KeepCallback = false;
|
||||||
|
// this.DispatchCommandResult(result);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
//});
|
||||||
|
//}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void injectStyleFile(string options)
|
||||||
|
{
|
||||||
|
Debug.WriteLine("Error : Windows Phone org.apache.cordova.inappbrowser does not currently support insertCSS");
|
||||||
|
return;
|
||||||
|
|
||||||
|
//string[] args = JSON.JsonHelper.Deserialize<string[]>(options);
|
||||||
|
//throw new NotImplementedException("Windows Phone does not currently support 'insertCSS'");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
private void ShowCordovaBrowser(string url)
|
private void ShowCordovaBrowser(string url)
|
||||||
{
|
{
|
||||||
Uri loc = new Uri(url, UriKind.RelativeOrAbsolute);
|
Uri loc = new Uri(url, UriKind.RelativeOrAbsolute);
|
||||||
@ -127,6 +249,12 @@ namespace WPCordovaClassLib.Cordova.Commands
|
|||||||
browser.NavigationFailed += new System.Windows.Navigation.NavigationFailedEventHandler(browser_NavigationFailed);
|
browser.NavigationFailed += new System.Windows.Navigation.NavigationFailedEventHandler(browser_NavigationFailed);
|
||||||
browser.Navigated += new EventHandler<System.Windows.Navigation.NavigationEventArgs>(browser_Navigated);
|
browser.Navigated += new EventHandler<System.Windows.Navigation.NavigationEventArgs>(browser_Navigated);
|
||||||
browser.Navigate(loc);
|
browser.Navigate(loc);
|
||||||
|
|
||||||
|
if (StartHidden)
|
||||||
|
{
|
||||||
|
browser.Visibility = Visibility.Collapsed;
|
||||||
|
}
|
||||||
|
|
||||||
//browser.IsGeolocationEnabled = opts.isGeolocationEnabled;
|
//browser.IsGeolocationEnabled = opts.isGeolocationEnabled;
|
||||||
grid.Children.Add(browser);
|
grid.Children.Add(browser);
|
||||||
}
|
}
|
||||||
@ -156,6 +284,9 @@ namespace WPCordovaClassLib.Cordova.Commands
|
|||||||
bar.Buttons.Add(closeBtn);
|
bar.Buttons.Add(closeBtn);
|
||||||
|
|
||||||
page.ApplicationBar = bar;
|
page.ApplicationBar = bar;
|
||||||
|
bar.IsVisible = !StartHidden;
|
||||||
|
AppBar = bar;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user