using Serilog; using System; using System.Threading.Tasks; using TINK.Model.Bikes.BikeInfoNS.DriveNS.BatteryNS; using TINK.Model.Device; #if USEFLYOUT using TINK.View.MasterDetail; #endif using TINK.ViewModel.Info; using Xamarin.Essentials; using Xamarin.Forms; using Xamarin.Forms.Xaml; using TINK.Model; namespace TINK.View.Contact { [XamlCompilation(XamlCompilationOptions.Compile)] #if USEFLYOUT public partial class ContactPage : ContentPage, IViewService, IDetailPage #else public partial class ContactPage : ContentPage, IViewService #endif { /// View model to notify view model if page appears. private ContactPageViewModel ViewModel { get; set; } public ContactPage() { InitializeComponent(); var l_oModel = App.ModelRoot; ViewModel = new ContactPageViewModel( App.ModelRoot.Flavor.GetDisplayName(), l_oModel, () => App.CreateAttachment(), () => DependencyService.Get().OpenUrl(DependencyService.Get().StoreUrl), this); ContactPageView.BindingContext = ViewModel; } /// Invoked when page is shown. protected async override void OnAppearing() { try { Log.ForContext().Verbose("OnAppearing..."); await ViewModel.OnAppearing(App.ModelRoot.SelectedStation); } catch (Exception exception) { Log.ForContext().Error("Invoking OnAppearing on view model failed. {Exception}", exception); return; } } /// 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); #if USEFLYOUT public void ShowPage(ViewTypes p_oType, string title = null) => NavigationMasterDetail.ShowPage(p_oType.GetViewType(), title); #else /// Shows a page. /// Route of the page to show. public async Task ShowPage(string route) => await Shell.Current.GoToAsync(route); #endif /// Pushes a page onto the modal stack. /// Page to display. public Task PushModalAsync(ViewTypes p_oTypeOfPage) { throw new NotSupportedException(); } /// Pops a page from the modal stack. public Task PopModalAsync() { throw new NotSupportedException(); } /// Pushes a page onto the stack. /// Page to display. public async Task PushAsync(ViewTypes typeOfPage) { #if USEFLYOUT var page = Activator.CreateInstance(typeOfPage.GetViewType()) as IDetailPage; #else var page = Activator.CreateInstance(typeOfPage.GetViewType()); #endif if (page == null) { return; } #if USEFLYOUT page.NavigationMasterDetail = NavigationMasterDetail; #endif await Navigation.PushAsync((Page)page); } #if USCSHARP9 public Task DisplayUserFeedbackPopup() => throw new NotSupportedException(); #else public async Task DisplayUserFeedbackPopup(IBatteryMutable battery = null, string co2Saving = null) => throw new NotSupportedException(); #endif #if USEFLYOUT /// /// Delegate to perform navigation. /// public INavigationMasterDetail NavigationMasterDetail { set; private get; } #endif } }