2021-11-07 19:42:59 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
#if USEFLYOUT
|
|
|
|
|
using TINK.View.MasterDetail;
|
|
|
|
|
#endif
|
|
|
|
|
using Xamarin.Forms;
|
|
|
|
|
using Xamarin.Forms.Xaml;
|
|
|
|
|
|
|
|
|
|
namespace TINK.View.Map
|
|
|
|
|
{
|
|
|
|
|
using Serilog;
|
|
|
|
|
using TINK.ViewModel.Map;
|
|
|
|
|
|
|
|
|
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|
|
|
|
#if USEFLYOUT
|
|
|
|
|
public partial class MapPage : ContentPage, IViewService, IDetailPage
|
|
|
|
|
#else
|
|
|
|
|
public partial class MapPage : ContentPage, IViewService
|
|
|
|
|
#endif
|
|
|
|
|
{
|
|
|
|
|
/// <summary> View model to notify about whether page appears or hides. </summary>
|
|
|
|
|
private MapPageViewModel MapPageViewModel { get; set; }
|
|
|
|
|
|
2022-01-04 18:54:03 +01:00
|
|
|
|
/// <summary> Initialization status to ensure initialization logic is not called multiple times. </summary>
|
|
|
|
|
private bool isInitializationStarted = false;
|
|
|
|
|
|
2021-11-07 19:42:59 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Constructs map page instance.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public MapPage()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <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 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)
|
2022-04-10 17:38:34 +02:00
|
|
|
|
=> 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
|
|
|
|
|
|
|
|
|
/// <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);
|
|
|
|
|
|
|
|
|
|
#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 type, string title = null)
|
|
|
|
|
=> NavigationMasterDetail.ShowPage(type.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="typeOfPage">Type of page to display.</param>
|
|
|
|
|
public async Task PushModalAsync(ViewTypes typeOfPage)
|
|
|
|
|
=> await Navigation.PushModalAsync((Page)Activator.CreateInstance(typeOfPage.GetViewType()));
|
|
|
|
|
|
|
|
|
|
/// <summary> Pops a page from the modal stack. </summary>
|
|
|
|
|
public async Task PopModalAsync()
|
|
|
|
|
=> await Navigation.PopModalAsync();
|
|
|
|
|
|
|
|
|
|
/// <summary> Pushes a page onto the stack. </summary>
|
|
|
|
|
/// <param name="typeOfPage">Page to display.</param>
|
|
|
|
|
public async Task PushAsync(ViewTypes typeOfPage)
|
|
|
|
|
{
|
|
|
|
|
#if USEFLYOUT
|
|
|
|
|
var page = Activator.CreateInstance(typeOfPage.GetViewType()) as IDetailPage;
|
|
|
|
|
#else
|
2022-01-22 18:32:22 +01:00
|
|
|
|
var page = Activator.CreateInstance(typeOfPage.GetViewType());
|
2021-11-07 19:42:59 +01:00
|
|
|
|
#endif
|
|
|
|
|
if (page == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if USEFLYOUT
|
|
|
|
|
page.NavigationMasterDetail = NavigationMasterDetail;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
await Navigation.PushAsync((Page)page);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if USCSHARP9
|
|
|
|
|
public Task<IViewService.IUserFeedback> DisplayUserFeedbackPopup() => throw new NotSupportedException();
|
|
|
|
|
#else
|
2022-01-04 18:54:03 +01:00
|
|
|
|
public Task<IUserFeedback> DisplayUserFeedbackPopup(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 { private get; set; }
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Invoked when page is shown.
|
|
|
|
|
/// Starts update process.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected async override void OnAppearing()
|
|
|
|
|
{
|
2022-01-04 18:54:03 +01:00
|
|
|
|
// Don't repeat the initialization if it has been completed already.
|
|
|
|
|
if (isInitializationStarted) return;
|
|
|
|
|
isInitializationStarted = true;
|
|
|
|
|
|
2021-11-07 19:42:59 +01:00
|
|
|
|
// Pass reference to member Navigation to show bikes at station x dialog.
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
Log.ForContext<MapPage>().Verbose("Constructing map page view model.");
|
|
|
|
|
|
|
|
|
|
#if TRYNOTBACKSTYLE
|
|
|
|
|
MapPageViewModel = new MapPageViewModel();
|
|
|
|
|
#else
|
2022-01-04 18:54:03 +01:00
|
|
|
|
MapPageViewModel = CreateMapPageViewModel();
|
2021-11-07 19:42:59 +01:00
|
|
|
|
#endif
|
2022-01-04 18:54:03 +01:00
|
|
|
|
}
|
|
|
|
|
catch (Exception exception)
|
2021-11-07 19:42:59 +01:00
|
|
|
|
{
|
|
|
|
|
Log.ForContext<MapPage>().Error("Constructing map page view model failed. {Exception}", exception);
|
2022-04-25 22:15:15 +02:00
|
|
|
|
isInitializationStarted = false;
|
2021-11-07 19:42:59 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
BindingContext = MapPageViewModel;
|
|
|
|
|
|
|
|
|
|
#if USEFLYOUT
|
|
|
|
|
MapPageViewModel.NavigationMasterDetail = NavigationMasterDetail;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
catch (Exception exception)
|
|
|
|
|
{
|
|
|
|
|
Log.ForContext<MapPage>().Error("Setting binding/ navigaton on map page failed. {Exception}", exception);
|
2022-04-25 22:15:15 +02:00
|
|
|
|
isInitializationStarted = false;
|
2021-11-07 19:42:59 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2022-01-04 18:54:03 +01:00
|
|
|
|
ApplyCustomiOSStyling();
|
2021-11-07 19:42:59 +01:00
|
|
|
|
}
|
|
|
|
|
catch (Exception exception)
|
|
|
|
|
{
|
|
|
|
|
// Continue because styling is not essential.
|
|
|
|
|
Log.ForContext<MapPage>().Error("IOS specific styling of map page failed. {Exception}", exception);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
base.OnAppearing();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception exception)
|
|
|
|
|
{
|
|
|
|
|
// Continue because styling is not essential.
|
|
|
|
|
Log.ForContext<MapPage>().Error("Invoking OnAppearing of base failed. {Exception}", exception);
|
2022-04-25 22:15:15 +02:00
|
|
|
|
isInitializationStarted = false;
|
2021-11-07 19:42:59 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
// Pre move and scanle maps to avoid initial display of map in Rome.
|
2022-01-04 18:54:03 +01:00
|
|
|
|
PremoveAndScaleMap();
|
2021-11-07 19:42:59 +01:00
|
|
|
|
}
|
2022-01-04 18:54:03 +01:00
|
|
|
|
catch (Exception exception)
|
2021-11-07 19:42:59 +01:00
|
|
|
|
{
|
|
|
|
|
// Continue because a map not beeing moved/ scaled is no reason for aborting startup.
|
|
|
|
|
Log.ForContext<MapPage>().Error("Moving and scaling map failed. {Exception}", exception);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
Log.ForContext<MapPage>().Verbose("Invoking OnAppearing on map page view model.");
|
|
|
|
|
await MapPageViewModel.OnAppearing();
|
2022-04-25 22:15:15 +02:00
|
|
|
|
|
|
|
|
|
isInitializationStarted = false;
|
2021-11-07 19:42:59 +01:00
|
|
|
|
}
|
|
|
|
|
catch (Exception exception)
|
|
|
|
|
{
|
|
|
|
|
Log.ForContext<MapPage>().Error("Invoking OnAppearing on map page view model failed. {Exception}", exception);
|
2022-04-25 22:15:15 +02:00
|
|
|
|
isInitializationStarted = false;
|
2021-11-07 19:42:59 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-04 18:54:03 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Premoves the Map to a certain location.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void PremoveAndScaleMap()
|
|
|
|
|
{
|
|
|
|
|
Log.ForContext<MapPage>().Verbose("Moving and scaling map.");
|
|
|
|
|
MapPageViewModel.MoveAndScale(
|
|
|
|
|
(mapSpan) => MyMap.MoveToRegion(mapSpan),
|
|
|
|
|
App.ModelRoot.ActiveMapSpan);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates the Map Page's view model.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private MapPageViewModel CreateMapPageViewModel()
|
|
|
|
|
{
|
|
|
|
|
Log.ForContext<MapPage>().Verbose("Constructing map page view model.");
|
|
|
|
|
return new MapPageViewModel(
|
|
|
|
|
App.ModelRoot,
|
|
|
|
|
App.PermissionsService,
|
|
|
|
|
App.BluetoothService,
|
2022-04-10 17:38:34 +02:00
|
|
|
|
App.LocationServicesContainer.Active,
|
2022-01-04 18:54:03 +01:00
|
|
|
|
(mapspan) => MyMap.MoveToRegion(mapspan),
|
|
|
|
|
this,
|
|
|
|
|
Navigation);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Applies iOS specific styling to branded Buttons.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void ApplyCustomiOSStyling()
|
|
|
|
|
{
|
|
|
|
|
if (Device.RuntimePlatform == Device.iOS)
|
|
|
|
|
{
|
|
|
|
|
TINKButton.BackgroundColor = Color.LightGray;
|
|
|
|
|
TINKButton.BorderColor = Color.Black;
|
|
|
|
|
TINKButton.Margin = new Thickness(10, 10, 10, 10);
|
|
|
|
|
KonradButton.BackgroundColor = Color.LightGray;
|
|
|
|
|
KonradButton.BorderColor = Color.Black;
|
|
|
|
|
KonradButton.Margin = new Thickness(10, 10, 10, 10);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-07 19:42:59 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Invoked when pages is closed/ hidden.
|
|
|
|
|
/// Stops update process.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected override async void OnDisappearing()
|
|
|
|
|
{
|
|
|
|
|
if (MapPageViewModel != null)
|
|
|
|
|
{
|
|
|
|
|
// View model might be null.
|
|
|
|
|
await MapPageViewModel?.OnDisappearing();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
base.OnDisappearing();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|