using System; using System.Threading.Tasks; using TINK.ViewModel.MiniSurvey; using Xamarin.CommunityToolkit.Extensions; using Xamarin.Forms; using Xamarin.Forms.Xaml; namespace TINK.View.MiniSurvey { [XamlCompilation(XamlCompilationOptions.Compile)] public partial class MiniSurveyPage : ContentPage, IViewService { public MiniSurveyPage() { var model = App.ModelRoot; var vm = new MiniSurveyViewModel( () => model.GetIsConnected(), (isConnected) => model.GetConnector(isConnected), this); InitializeComponent(); BindingContext = vm; MiniSurveyListView.ItemsSource = vm; } /// /// 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) => await App.Current.MainPage.DisplayAlert(p_strTitle, p_strMessage, p_strAccept, p_strCancel); #if USEFLYOUT public void ShowPage(ViewTypes p_oType, string p_strTitle = null) => throw new NotImplementedException(); #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() => Navigation.PopModalAsync(); /// Pushes a page onto the stack. /// Page to display. public Task PushAsync(ViewTypes p_oTypeOfPage) => throw new NotSupportedException(); #if USCSHARP9 public async Task DisplayUserFeedbackPopup() => await Navigation.ShowPopupAsync(new FeedbackPopup()); #else public async Task DisplayUserFeedbackPopup() => await Navigation.ShowPopupAsync(new FeedbackPopup()); #endif } }