using ShareeBike.Model.Bikes.BikeInfoNS.BluetoothLock; using Xamarin.Forms; using Xamarin.Forms.Xaml; namespace ShareeBike.View.BikesAtStation { using System; using System.Linq; using System.Threading; using System.Threading.Tasks; using ShareeBike.Model.Device; using ShareeBike.ViewModel; using ShareeBike.Model; using ShareeBike.Services.BluetoothLock.Tdo; using System.Collections.Generic; using Serilog; using ShareeBike.Services.BluetoothLock; using Plugin.BLE; using ShareeBike.ViewModel.BikesAtStation; using ShareeBike.ViewModel.Bikes; using Xamarin.CommunityToolkit.Extensions; using ShareeBike.Model.Bikes.BikeInfoNS.DriveNS.BatteryNS; using ShareeBike.MultilingualResources; [XamlCompilation(XamlCompilationOptions.Compile)] public partial class BikesAtStationPage : ContentPage, IViewService { private BikesAtStationPageViewModel m_oViewModel; /// Initialization status to ensure initialization logic is not called multiple times. private bool isInitializationStarted = false; public BikesAtStationPage() { } /// /// Invoked when page is shown. /// Starts update process. /// protected async override void OnAppearing() { // Don't repeat the initialization if it has been completed already. if (isInitializationStarted) return; isInitializationStarted = true; if (m_oViewModel != null) { // No need to create view model, set binding context an items source if already done. // If done twice tap events are fired multiple times (when hiding page using home button). await m_oViewModel.OnAppearingOrRefresh(); isInitializationStarted = false; return; } try { var model = App.ModelRoot; m_oViewModel = new BikesAtStationPageViewModel( model.ActiveUser, App.PermissionsService, App.BluetoothService, Device.RuntimePlatform, model.SelectedStation, () => model.GetIsConnected(), (isConnected) => model.GetConnector(isConnected), App.LocationServicesContainer.Active, model.LocksServices.Active, model.Polling, (url) => DependencyService.Get().OpenUrl(url), model.PostAction, model.SmartDevice, this) { IsReportLevelVerbose = model.IsReportLevelVerbose }; } catch (Exception exception) { Log.ForContext().Error("Displaying bikes at station page failed. {Exception}", exception); await DisplayAlert( AppResources.ErrorPageNotLoadedTitle, $"{AppResources.ErrorPageNotLoaded}\r\n{exception.Message}", AppResources.MessageAnswerOk); isInitializationStarted = false; return; } InitializeComponent(); BindingContext = m_oViewModel; BikesAtStationListView.ItemsSource = m_oViewModel; await m_oViewModel.OnAppearingOrRefresh(); isInitializationStarted = false; } /// /// Invoked when pages is closed/ hidden. /// Stops update process. /// protected async override void OnDisappearing() { if (m_oViewModel != null) { // View model might be null. await m_oViewModel?.OnDisappearing(); } } /// /// Handeles pressing of the Android hardware back button. /// /// protected override bool OnBackButtonPressed() => !m_oViewModel.IsIdle; /// Displays alert message. /// Title of message. /// Message to display. /// Type of buttons. public new async Task DisplayAlert(string title, string message, string cancel) => await App.Current.MainPage.DisplayAlert(title, message, cancel); /// 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 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 title, string message, string accept, string cancel) => await App.Current.MainPage.DisplayAlert(title, message, accept, 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); /// 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 async Task PushModalAsync(ViewTypes typeOfPage) => await Navigation.PushModalAsync((Page)Activator.CreateInstance(typeOfPage.GetViewType())); /// Pops a page from the modal stack. public Task PopModalAsync() { throw new NotSupportedException(); } public Task PushAsync(ViewTypes p_oTypeOfPage) { throw new NotImplementedException(); } #if USCSHARP9 public async Task DisplayUserFeedbackPopup() => await Navigation.ShowPopupAsync(new FeedbackPopup()); #else /// Displays user feedback popup. /// User feedback. public async Task DisplayUserFeedbackPopup(IBatteryMutable battery = null) => await Navigation.ShowPopupAsync(new FeedbackPopup(battery)); #endif } }