using ShareeBike.ViewModel;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
using System.Threading.Tasks;
using System;
using ShareeBike.Model.Device;
using Xamarin.CommunityToolkit.Extensions;
using ShareeBike.Model.Bikes.BikeInfoNS.DriveNS.BatteryNS;
namespace ShareeBike.View.Settings
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class SettingsPage : ContentPage, IViewService
{
/// Refernce to view model.
SettingsPageViewModel m_oViewModel = null;
/// Constructs a settings page.
public SettingsPage()
{
InitializeComponent();
var l_oModel = App.ModelRoot;
m_oViewModel = new SettingsPageViewModel(
l_oModel,
App.LocationServicesContainer,
this);
BindingContext = m_oViewModel;
Filters.ItemsSource = m_oViewModel.GroupFilter;
}
/// 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, !string.IsNullOrEmpty(details) ? $"{message}\r\nDetails:\r\n{details}" : $"{message}", 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);
///
/// Displays an action sheet.
///
/// Title of message.
/// Message to display.
/// Text of button.
///
/// Buttons holding options to select.
/// Text selected
public new async Task DisplayActionSheet(String p_strTitle, String p_strCancel, String destruction, params String[] p_oButtons)
=> await base.DisplayActionSheet(p_strTitle, p_strCancel, destruction, p_oButtons);
/// Shows a page.
/// Route of the page to show.
public async Task ShowPage(string route) => await Shell.Current.GoToAsync(route);
/// Pushes a page onto the modal stack.
/// Page to display.
public Task PushModalAsync(ViewTypes p_oTypeOfPage)
=> throw new NotImplementedException();
/// Pops a page from the modal stack.
public Task PopModalAsync()
=> throw new NotSupportedException();
///
/// Invoked when pages is closed/ hidden.
/// Stops update process.
///
protected async override void OnDisappearing()
{
if (m_oViewModel == null)
{
// View model might be null.
return;
}
await m_oViewModel?.OnDisappearing();
}
/// Pushes a page onto the stack.
/// Page to display.
public async Task PushAsync(ViewTypes p_oTypeOfPage)
=> await Navigation.PushAsync((Page)Activator.CreateInstance(p_oTypeOfPage.GetViewType()));
#if USCSHARP9
public async Task DisplayUserFeedbackPopup() => await Navigation.ShowPopupAsync(new FeedbackPopup());
#else
/// Displays user feedback popup.
/// Co2 saving information.
/// User feedback.
public async Task DisplayUserFeedbackPopup(IBatteryMutable battery = null) => await Navigation.ShowPopupAsync(new FeedbackPopup(battery));
#endif
#if USERFEEDBACKDLG_TRYOUT
public async void OnFeedbackClickedAsync(object sender, EventArgs ev)
{
var result = await DisplayUserFeedbackPopup();
DisplayAlert(
"Title",
$"Bike broken: {result.IsBikeBroken}. Message: {result.Message}.",
"OK");
}
#endif
}
}