sharee.bike-App/LastenradBayern/TINK/View/CopriWebView/ManageAccountPage.xaml.cs

59 lines
1.6 KiB
C#
Raw Normal View History

2022-08-30 15:42:25 +02:00
using System.Globalization;
using Serilog;
2022-04-10 17:38:34 +02:00
using TINK.Model.Device;
2021-11-07 19:42:59 +01:00
using TINK.ViewModel.Login;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace TINK.View.CopriWebView
{
2022-09-06 16:08:19 +02:00
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class ManageAccountPage : ContentPage
{
public ManageAccountPage()
{
InitializeComponent();
2021-11-07 19:42:59 +01:00
2022-09-06 16:08:19 +02:00
ManageAccount.Navigating += (sender, ev) =>
{
if (!ev.Url.ToUpper().EndsWith(".PDF"))
{
// Stay inside web view except for downloading pdf- files.
this.IsEnabled = false;
ActivityIndicatorLoading.IsVisible = true;
ActivityIndicatorLoading.IsRunning = true;
return;
}
2021-11-07 19:42:59 +01:00
2022-09-06 16:08:19 +02:00
DependencyService.Get<IExternalBrowserService>().OpenUrl(ev.Url);
};
2021-11-07 19:42:59 +01:00
2022-09-06 16:08:19 +02:00
ManageAccount.Navigated += (sender, ev) =>
{
if (ev.Result == WebNavigationResult.Success)
{
this.IsEnabled = true;
ActivityIndicatorLoading.IsVisible = false;
ActivityIndicatorLoading.IsRunning = false;
return;
}
2021-11-07 19:42:59 +01:00
2022-09-06 16:08:19 +02:00
Log.ForContext<ManageAccountPage>().Error("Navigation did not succeed.{@Event}{@Sender}", ev, sender);
ManageAccount.Source = new HtmlWebViewSource
{
Html = "<html><b>Kann persönliche Daten nicht anzeigen/ verwalten!</b><br>Verbindung mit Internet ok?</html>"
};
2022-04-10 17:38:34 +02:00
2022-09-06 16:08:19 +02:00
this.IsEnabled = true;
ActivityIndicatorLoading.IsVisible = false;
ActivityIndicatorLoading.IsRunning = false;
};
2021-11-07 19:42:59 +01:00
2022-09-06 16:08:19 +02:00
ManageAccount.BindingContext = new ManageAccountViewModel(
App.ModelRoot.ActiveUser.SessionCookie,
Model.TinkApp.MerchantId,
CultureInfo.CurrentUICulture.TwoLetterISOLanguageName,
App.ModelRoot.NextActiveUri.Host);
}
}
2021-11-07 19:42:59 +01:00
}