mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-16 07:06:33 +01:00
128 lines
5.2 KiB
C#
128 lines
5.2 KiB
C#
|
using TINK.ViewModel;
|
|||
|
using Xamarin.Forms;
|
|||
|
using Xamarin.Forms.Xaml;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using TINK.View.MasterDetail;
|
|||
|
using System;
|
|||
|
using TINK.Model.Device;
|
|||
|
using TINK.ViewModel.Account;
|
|||
|
|
|||
|
namespace TINK.View.Account
|
|||
|
{
|
|||
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|||
|
public partial class AccountPage : ContentPage, IViewService, IDetailPage
|
|||
|
{
|
|||
|
/// <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 altert 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);
|
|||
|
|
|||
|
/// <summary> Displays altert 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 new 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="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);
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Displays an action sheet.
|
|||
|
/// </summary>
|
|||
|
/// <param name="p_strTitle">Title of message.</param>
|
|||
|
/// <param name="p_strMessage">Message to display.</param>
|
|||
|
/// <param name="p_strCancel">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 p_strTitle, String p_strCancel, String destruction, params String[] p_oButtons)
|
|||
|
=> await base.DisplayActionSheet(p_strTitle, p_strCancel, destruction, p_oButtons);
|
|||
|
|
|||
|
/// <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 p_strTitle = null)
|
|||
|
=> m_oNavigation.ShowPage(p_oType.GetViewType(), p_strTitle);
|
|||
|
|
|||
|
/// <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 NotImplementedException();
|
|||
|
|
|||
|
/// <summary> Pops a page from the modal stack. </summary>
|
|||
|
public Task PopModalAsync()
|
|||
|
=> throw new NotSupportedException();
|
|||
|
|
|||
|
|
|||
|
/// <summary>Delegate to perform navigation.</summary>
|
|||
|
private INavigationMasterDetail m_oNavigation;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Delegate to perform navigation.
|
|||
|
/// </summary>
|
|||
|
public INavigationMasterDetail NavigationMasterDetail
|
|||
|
{
|
|||
|
set { m_oNavigation = value; }
|
|||
|
}
|
|||
|
|
|||
|
/// <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()));
|
|||
|
|
|||
|
public Task<IViewService.IUserFeedback> DisplayUserFeedbackPopup() => throw new NotSupportedException();
|
|||
|
}
|
|||
|
}
|