sharee.bike-App/Meinkonrad/TINK/View/Contact/ContactPage.xaml.cs

139 lines
4.3 KiB
C#
Raw Normal View History

2023-08-31 12:31:38 +02:00
using Serilog;
2022-04-10 17:38:34 +02:00
using System;
2021-11-07 19:42:59 +01:00
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.Model.Device;
2022-01-22 18:32:22 +01:00
#if USEFLYOUT
2021-11-07 19:42:59 +01:00
using TINK.View.MasterDetail;
2022-01-22 18:32:22 +01:00
#endif
2021-11-07 19:42:59 +01:00
using TINK.ViewModel.Info;
2022-04-10 17:38:34 +02:00
using Xamarin.Essentials;
2021-11-07 19:42:59 +01:00
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
2022-09-06 16:08:19 +02:00
using TINK.Model;
2021-11-07 19:42:59 +01:00
namespace TINK.View.Contact
{
2022-09-06 16:08:19 +02:00
[XamlCompilation(XamlCompilationOptions.Compile)]
2022-01-22 18:32:22 +01:00
#if USEFLYOUT
public partial class ContactPage : ContentPage, IViewService, IDetailPage
#else
2022-09-06 16:08:19 +02:00
public partial class ContactPage : ContentPage, IViewService
2022-01-22 18:32:22 +01:00
#endif
2021-11-07 19:42:59 +01:00
2022-09-06 16:08:19 +02:00
{
/// <summary> View model to notify view model if page appears. </summary>
private ContactPageViewModel ViewModel { get; set; }
public ContactPage()
{
InitializeComponent();
2023-08-31 12:31:38 +02:00
var l_oModel = App.ModelRoot;
2022-09-06 16:08:19 +02:00
ViewModel = new ContactPageViewModel(
App.ModelRoot.Flavor.GetDisplayName(),
2023-08-31 12:31:38 +02:00
l_oModel,
2022-09-06 16:08:19 +02:00
() => App.CreateAttachment(),
() => DependencyService.Get<IExternalBrowserService>().OpenUrl(DependencyService.Get<IAppInfo>().StoreUrl),
this);
ContactPageView.BindingContext = ViewModel;
}
/// <summary> Invoked when page is shown. </summary>
protected async override void OnAppearing()
{
try
{
Log.ForContext<ContentPage>().Verbose("OnAppearing...");
await ViewModel.OnAppearing(App.ModelRoot.SelectedStation);
}
catch (Exception exception)
{
Log.ForContext<ContentPage>().Error("Invoking OnAppearing on view model failed. {Exception}", exception);
return;
}
}
/// <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 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
#if USEFLYOUT
public void ShowPage(ViewTypes p_oType, string title = null)
=> NavigationMasterDetail.ShowPage(p_oType.GetViewType(), title);
#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();
}
/// <summary> Pops a page from the modal stack. </summary>
public Task PopModalAsync()
{
throw new NotSupportedException();
}
/// <summary> Pushes a page onto the stack. </summary>
/// <param name="typeOfPage">Page to display.</param>
public async Task PushAsync(ViewTypes typeOfPage)
{
2022-01-22 18:32:22 +01:00
#if USEFLYOUT
2022-04-10 17:38:34 +02:00
var page = Activator.CreateInstance(typeOfPage.GetViewType()) as IDetailPage;
#else
2022-09-06 16:08:19 +02:00
var page = Activator.CreateInstance(typeOfPage.GetViewType());
2022-04-10 17:38:34 +02:00
#endif
2022-09-06 16:08:19 +02:00
if (page == null)
{
return;
}
2021-11-07 19:42:59 +01:00
2022-04-10 17:38:34 +02:00
#if USEFLYOUT
page.NavigationMasterDetail = NavigationMasterDetail;
2022-01-22 18:32:22 +01:00
#endif
2022-09-06 16:08:19 +02:00
await Navigation.PushAsync((Page)page);
}
2021-11-07 19:42:59 +01:00
#if USCSHARP9
public Task<IViewService.IUserFeedback> DisplayUserFeedbackPopup() => throw new NotSupportedException();
#else
2023-08-31 12:31:38 +02:00
public async Task<IUserFeedback> DisplayUserFeedbackPopup(IBatteryMutable battery = null, string co2Saving = null) => throw new NotSupportedException();
2021-11-07 19:42:59 +01:00
#endif
#if USEFLYOUT
/// <summary>
/// Delegate to perform navigation.
/// </summary>
public INavigationMasterDetail NavigationMasterDetail { set; private get; }
#endif
2022-09-06 16:08:19 +02:00
}
2023-08-31 12:31:38 +02:00
}