mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
155 lines
No EOL
6.3 KiB
C#
155 lines
No EOL
6.3 KiB
C#
using TINK.ViewModel;
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Xaml;
|
|
using System.Threading.Tasks;
|
|
#if USEFLYOUT
|
|
using TINK.View.MasterDetail;
|
|
#endif
|
|
using System;
|
|
using TINK.Model.Device;
|
|
using TINK.ViewModel.Account;
|
|
|
|
namespace TINK.View.Account
|
|
{
|
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|
#if USEFLYOUT
|
|
public partial class AccountPage : ContentPage, IViewService, IDetailPage
|
|
#else
|
|
public partial class AccountPage : ContentPage, IViewService
|
|
#endif
|
|
{
|
|
/// <summary> Refernce to view model. </summary>
|
|
AccountPageViewModel m_oViewModel = null;
|
|
|
|
/// <summary> Constructs a account page. </summary>
|
|
public AccountPage()
|
|
{
|
|
InitializeComponent();
|
|
|
|
var l_oModel = App.ModelRoot;
|
|
|
|
m_oViewModel = new AccountPageViewModel(
|
|
l_oModel,
|
|
(url) => DependencyService.Get<IExternalBrowserService>().OpenUrl(url),
|
|
this);
|
|
|
|
BindingContext = m_oViewModel;
|
|
}
|
|
|
|
/// <summary> Displays alert message. </summary>
|
|
/// <param name="title">Title of message.</param>
|
|
/// <param name="message">Message to display.</param>
|
|
/// <param name="cancel">Type of buttons.</param>
|
|
public new async Task DisplayAlert(string title, string message, string cancel)
|
|
=> await App.Current.MainPage.DisplayAlert(title, message, cancel);
|
|
|
|
/// <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);
|
|
|
|
/// <summary> Displays alert message.</summary>
|
|
/// <param name="title">Title of message.</param>
|
|
/// <param name="message">Message to display.</param>
|
|
/// <param name="accept">Text of accept button.</param>
|
|
/// <param name="cancel">Text of button.</param>
|
|
/// <returns>True if user pressed accept.</returns>
|
|
public new async Task<bool> DisplayAlert(string title, string message, string accept, string cancel)
|
|
=> await App.Current.MainPage.DisplayAlert(title, message, accept, cancel);
|
|
|
|
/// <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);
|
|
|
|
/// <summary>
|
|
/// Displays an action sheet.
|
|
/// </summary>
|
|
/// <param name="title">Title of message.</param>
|
|
/// <param name="message">Message to display.</param>
|
|
/// <param name="cancel">Text of button.</param>
|
|
/// <param name="destruction"></param>
|
|
/// <param name="p_oButtons">Buttons holding options to select.</param>
|
|
/// <returns>Text selected</returns>
|
|
public new async Task<string> DisplayActionSheet(String title, String cancel, String destruction, params String[] p_oButtons)
|
|
=> await base.DisplayActionSheet(title, cancel, destruction, p_oButtons);
|
|
|
|
#if USEFLYOUT
|
|
/// <summary>
|
|
/// Creates and a page an shows it.
|
|
/// </summary>
|
|
/// <param name="p_oTypeOfPage">Type of page to show.</param>
|
|
public void ShowPage(ViewTypes p_oType, string title = null)
|
|
=> m_oNavigation.ShowPage(p_oType.GetViewType(), title);
|
|
#else
|
|
/// <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);
|
|
#endif
|
|
|
|
/// <summary> Pushes a page onto the modal stack. </summary>
|
|
/// <param name="p_oTypeOfPage">Page to display.</param>
|
|
public Task PushModalAsync(ViewTypes typeOfPage)
|
|
=> Navigation.PushModalAsync((Page)Activator.CreateInstance(typeOfPage.GetViewType()));
|
|
|
|
/// <summary> Pops a page from the modal stack. </summary>
|
|
public Task PopModalAsync()
|
|
=> throw new NotSupportedException();
|
|
|
|
#if USEFLYOUT
|
|
|
|
/// <summary>Delegate to perform navigation.</summary>
|
|
private INavigationMasterDetail m_oNavigation;
|
|
|
|
/// <summary>
|
|
/// Delegate to perform navigation.
|
|
/// </summary>
|
|
public INavigationMasterDetail NavigationMasterDetail
|
|
{
|
|
set { m_oNavigation = value; }
|
|
}
|
|
|
|
#endif
|
|
/// <summary>
|
|
/// Invoked when page is shown.
|
|
/// Starts update process.
|
|
/// </summary>
|
|
protected async override void OnAppearing()
|
|
=> await m_oViewModel.OnAppearing();
|
|
/// <summary>
|
|
/// Invoked when pages is closed/ hidden.
|
|
/// Stops update process.
|
|
/// </summary>
|
|
protected async override void OnDisappearing()
|
|
{
|
|
if (m_oViewModel == null)
|
|
{
|
|
// View model might be null.
|
|
return;
|
|
}
|
|
await m_oViewModel.OnDisappearing();
|
|
}
|
|
|
|
/// <summary> Pushes a page onto the stack. </summary>
|
|
/// <param name="p_oTypeOfPage">Page to display.</param>
|
|
public async Task PushAsync(ViewTypes p_oTypeOfPage)
|
|
=> await Navigation.PushAsync((Page)Activator.CreateInstance(p_oTypeOfPage.GetViewType()));
|
|
#if USCSHARP9
|
|
public Task<IViewService.IUserFeedback> DisplayUserFeedbackPopup() => throw new NotSupportedException();
|
|
#else
|
|
public Task<IUserFeedback> DisplayUserFeedbackPopup(string co2Saving = null) => throw new NotSupportedException();
|
|
#endif
|
|
}
|
|
} |