2021-11-07 19:42:59 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Threading.Tasks;
|
2022-08-30 15:42:25 +02:00
|
|
|
|
using TINK.Model.Bikes.BikeInfoNS.DriveNS.BatteryNS;
|
2021-11-07 19:42:59 +01:00
|
|
|
|
using TINK.ViewModel.MiniSurvey;
|
|
|
|
|
using Xamarin.CommunityToolkit.Extensions;
|
|
|
|
|
using Xamarin.Forms;
|
|
|
|
|
using Xamarin.Forms.Xaml;
|
|
|
|
|
|
|
|
|
|
namespace TINK.View.MiniSurvey
|
|
|
|
|
{
|
2022-09-06 16:08:19 +02:00
|
|
|
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|
|
|
|
public partial class MiniSurveyPage : ContentPage, IViewService
|
|
|
|
|
{
|
|
|
|
|
public MiniSurveyPage()
|
|
|
|
|
{
|
|
|
|
|
var model = App.ModelRoot;
|
2021-11-07 19:42:59 +01:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
var vm = new MiniSurveyViewModel(
|
|
|
|
|
() => model.GetIsConnected(),
|
|
|
|
|
(isConnected) => model.GetConnector(isConnected),
|
|
|
|
|
this);
|
2021-11-07 19:42:59 +01:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
InitializeComponent();
|
2021-11-07 19:42:59 +01:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
BindingContext = vm;
|
|
|
|
|
MiniSurveyListView.ItemsSource = vm;
|
|
|
|
|
}
|
2022-08-30 15:42:25 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Displays alert message.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="p_strTitle">Title of message.</param>
|
|
|
|
|
/// <param name="p_strMessage">Message to display.</param>
|
|
|
|
|
/// <param name="p_strCancel">Type of buttons.</param>
|
|
|
|
|
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);
|
2021-11-07 19:42:59 +01:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Displays alert message.</summary>
|
|
|
|
|
/// <param name="title">Title of message.</param>
|
|
|
|
|
/// <param name="message">Message to display.</param>
|
|
|
|
|
/// <param name="details">Detailed error description.</param>
|
|
|
|
|
/// <param name="cancel">Type of buttons.</param>
|
|
|
|
|
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);
|
2021-11-07 19:42:59 +01:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Displays detailed alert message.</summary>
|
|
|
|
|
/// <param name="title">Title of message.</param>
|
|
|
|
|
/// <param name="message">Message to display.</param>
|
|
|
|
|
/// <param name="details">Detailed error description.</param>
|
|
|
|
|
/// <param name="accept">Text of accept button.</param>
|
|
|
|
|
/// <param name="cancel">Text of cancel button.</param>
|
|
|
|
|
/// <returns>True if user pressed accept.</returns>
|
|
|
|
|
public async Task<bool> 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);
|
2021-11-07 19:42:59 +01:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Displays alert message.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="p_strTitle">Title of message.</param>
|
|
|
|
|
/// <param name="p_strMessage">Message to display.</param>
|
|
|
|
|
/// <param name="p_strAccept">Text of accept button.</param>
|
|
|
|
|
/// <param name="p_strCancel">Text of button.</param>
|
|
|
|
|
/// <returns>True if user pressed accept.</returns>
|
|
|
|
|
public new async Task<bool> 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);
|
2021-11-07 19:42:59 +01:00
|
|
|
|
|
|
|
|
|
#if USEFLYOUT
|
|
|
|
|
public void ShowPage(ViewTypes p_oType, string p_strTitle = null)
|
|
|
|
|
=> throw new NotImplementedException();
|
|
|
|
|
#else
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Shows a page.</summary>
|
|
|
|
|
/// <param name="route">Route of the page to show.</param>
|
|
|
|
|
public async Task ShowPage(string route) => await Shell.Current.GoToAsync(route);
|
2021-11-07 19:42:59 +01:00
|
|
|
|
#endif
|
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Pushes a page onto the modal stack. </summary>
|
|
|
|
|
/// <param name="p_oTypeOfPage">Page to display.</param>
|
|
|
|
|
public Task PushModalAsync(ViewTypes p_oTypeOfPage) => throw new NotSupportedException();
|
2021-11-07 19:42:59 +01:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Pops a page from the modal stack. </summary>
|
|
|
|
|
public Task PopModalAsync() => Navigation.PopModalAsync();
|
2021-11-07 19:42:59 +01:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Pushes a page onto the stack. </summary>
|
|
|
|
|
/// <param name="p_oTypeOfPage">Page to display.</param>
|
|
|
|
|
public Task PushAsync(ViewTypes p_oTypeOfPage) => throw new NotSupportedException();
|
2021-11-07 19:42:59 +01:00
|
|
|
|
|
|
|
|
|
#if USCSHARP9
|
|
|
|
|
public async Task<IViewService.IUserFeedback> DisplayUserFeedbackPopup() => await Navigation.ShowPopupAsync<FeedbackPopup.Result>(new FeedbackPopup());
|
|
|
|
|
#else
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Displays user feedback popup.</summary>
|
|
|
|
|
/// <param name="co2Saving"> Co2 saving information.</param>
|
|
|
|
|
/// <returns>User feedback.</returns>
|
|
|
|
|
public async Task<IUserFeedback> DisplayUserFeedbackPopup(IBattery battery = null, string co2Saving = null) => await Navigation.ShowPopupAsync<FeedbackPopup.Result>(new FeedbackPopup(battery, co2Saving));
|
2021-11-07 19:42:59 +01:00
|
|
|
|
#endif
|
2022-09-06 16:08:19 +02:00
|
|
|
|
}
|
2021-11-07 19:42:59 +01:00
|
|
|
|
}
|