using System; using System.Threading.Tasks; #if USEFLYOUT using TINK.View.MasterDetail; #endif using TINK.ViewModel; using TINK.ViewModel.Info.BikeInfo; using Xamarin.Forms; using Xamarin.Forms.Xaml; namespace TINK.View.Info.BikeInfo { [XamlCompilation(XamlCompilationOptions.Compile)] #if USEFLYOUT public partial class BikeInfoCarouselPage : CarouselPage, IViewService, IDetailPage #else public partial class BikeInfoCarouselPage : CarouselPage, IViewService #endif { public BikeInfoCarouselPage () { InitializeComponent (); ItemsSource = new BikeInfoViewModel( resourceName => ImageSource.FromResource($"{ViewModelResourceHelper.RessourcePrefix}Images.{resourceName}"), this).CarouselItems; } /// /// Displays alert message. /// /// Title of message. /// Message to display. /// Type of buttons. public new async Task DisplayAlert(string p_strTitle, string p_strMessage, string p_strCancel) => await App.Current.MainPage.DisplayAlert(p_strTitle, p_strMessage, p_strCancel); /// 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, $"{message}\r\nDetails:\r\n{details}", accept, cancel); /// /// Displays alert message. /// /// Title of message. /// Message to display. /// Text of accept button. /// Text of button. /// True if user pressed accept. public new async Task DisplayAlert(string p_strTitle, string p_strMessage, string p_strAccept, string p_strCancel) { return await App.Current.MainPage.DisplayAlert(p_strTitle, p_strMessage, p_strAccept, p_strCancel); } #if USEFLYOUT /// /// Creates and a page an shows it. /// /// Type of page to show. public void ShowPage(ViewTypes p_oType, string p_strTitle = null) => m_oNavigation.ShowPage(p_oType.GetViewType(), p_strTitle); #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 Task PushAsync(ViewTypes p_oTypeOfPage) { throw new NotImplementedException(); } #if USEFLYOUT /// /// Delegate to perform navigation. /// private INavigationMasterDetail m_oNavigation; /// /// Delegate to perform navigation. /// public INavigationMasterDetail NavigationMasterDetail { set { m_oNavigation = value; } } #endif #if USCSHARP9 public Task DisplayUserFeedbackPopup() => throw new NotSupportedException(); #else public Task DisplayUserFeedbackPopup() => throw new NotSupportedException(); #endif } }