using System; using System.Globalization; using System.Threading.Tasks; using TINK.Model.Bikes.BikeInfoNS.DriveNS.BatteryNS; using TINK.ViewModel; using TINK.ViewModel.WhatsNew.Agb; using Xamarin.Forms; using Xamarin.Forms.Xaml; namespace TINK.View.WhatsNew.Agb { [XamlCompilation(XamlCompilationOptions.Compile)] public partial class AgbPage : ContentPage, IViewService { public AgbPage() { InitializeComponent(); agbViewModel = new AgbViewModel( App.ModelRoot.NextActiveUri.Host, App.ModelRoot.IsSiteCachingOn, (resourceName) => ViewModelResourceHelper.GetSource(resourceName), this); BindingContext = agbViewModel; } /// Displays alert message. /// Title of message. /// Message to display. /// Detailed error description. /// Type of buttons. public async Task DisplayAdvancedAlert( string title, string message, string details, string cancel) => await App.Current.MainPage.DisplayAlert(title, $"{message}\r\nDetails:\r\n{details}", cancel); /// Displays detailed alert message. /// Title of message. /// Message to display. /// Detailed error description. /// Text of accept button. /// Text of cancel button. /// True if user pressed accept. public async Task DisplayAdvancedAlert(string title, string message, string details, string accept, string cancel) => await App.Current.MainPage.DisplayAlert(title, !string.IsNullOrEmpty(details) ? $"{message}\r\nDetails:\r\n{details}" : $"{message}", accept, cancel); /// Invoked when page is shown. protected async override void OnAppearing() => await agbViewModel.OnAppearing(); /// Reference to view model. AgbViewModel agbViewModel; public async Task PopModalAsync() => await Navigation.PopModalAsync(); /// Pushes a page onto the stack. /// Page to display. public Task PushAsync(ViewTypes p_oTypeOfPage) => throw new NotImplementedException(); public Task PushModalAsync(ViewTypes p_oTypeOfPage) => throw new NotImplementedException(); /// Shows a page. /// Route of the page to show. public async Task ShowPage(string route) => await Shell.Current.GoToAsync(route); #if USCSHARP9 public Task DisplayUserFeedbackPopup() => throw new NotSupportedException(); #else public async Task DisplayUserFeedbackPopup(IBatteryMutable battery = null) => throw new NotSupportedException(); #endif } }