sharee.bike-App/ShareeBike/ShareeBike/View/SelectBike/SelectBikePage.xaml

219 lines
6.4 KiB
Plaintext
Raw Normal View History

2022-09-16 11:19:46 +02:00
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
2023-08-31 12:20:06 +02:00
xmlns:xct="http://xamarin.com/schemas/2020/toolkit"
2024-04-09 12:53:23 +02:00
x:Class="ShareeBike.View.SelectBike.SelectBikePage"
xmlns:conv="clr-namespace:ShareeBike.View;assembly=SharedBusinessLogic"
xmlns:resources="clr-namespace:ShareeBike.MultilingualResources;assembly=SharedBusinessLogic"
xmlns:rental_process="clr-namespace:ShareeBike.ViewModel.Bikes;assembly=SharedBusinessLogic"
xmlns:bikeRentalProcess="clr-namespace:SharedGui.View.Bike.RentalProcess"
xmlns:local_bike="clr-namespace:ShareeBike.View.Bike"
xmlns:sharedGui="clr-namespace:SharedGui.View"
2023-08-31 12:20:06 +02:00
BackgroundColor="{DynamicResource background-color}"
Shell.NavBarIsVisible="{Binding IsIdle}">
2022-09-16 11:19:46 +02:00
<Shell.TitleView>
<Grid ColumnDefinitions="Auto, 1*">
<Label Style="{StaticResource Label-Navbar}"
2023-11-21 15:26:57 +01:00
Text="{x:Static resources:AppResources.MarkingSelectBike}"/>
2022-09-16 11:19:46 +02:00
</Grid>
</Shell.TitleView>
<ContentPage.Resources>
<ResourceDictionary>
<local_bike:BikeViewCellTemplateSelector x:Key="bikeTemplateSelector"/>
2023-06-06 12:00:24 +02:00
<conv:StringNotNullOrEmptyToVisibleConverter x:Key="Label_Converter"/>
2023-08-31 12:20:06 +02:00
<xct:MultiConverter x:Key="RentalProcessToVisibleConverter">
<xct:EnumToBoolConverter>
<xct:EnumToBoolConverter.TrueValues>
<rental_process:CurrentRentalProcess>CloseLock</rental_process:CurrentRentalProcess>
<rental_process:CurrentRentalProcess>EndRental</rental_process:CurrentRentalProcess>
</xct:EnumToBoolConverter.TrueValues>
</xct:EnumToBoolConverter>
<xct:InvertedBoolConverter />
</xct:MultiConverter>
2022-09-16 11:19:46 +02:00
</ResourceDictionary>
</ContentPage.Resources>
2022-12-07 16:54:52 +01:00
<ContentPage.Content>
2022-09-16 11:19:46 +02:00
2022-12-07 16:54:52 +01:00
<!--Grid for Bike(s) view and Running process in same row-->
2023-02-22 14:03:35 +01:00
<Grid>
2022-09-16 11:19:46 +02:00
2023-06-06 12:00:24 +02:00
<!-- Grid for Content -->
2023-02-22 14:03:35 +01:00
<Grid
2023-08-31 12:20:06 +02:00
IsVisible="{Binding RentalProcess.State, Converter={StaticResource RentalProcessToVisibleConverter}}"
Grid.Row="0"
2023-03-08 13:18:54 +01:00
RowSpacing="0"
2023-08-31 12:20:06 +02:00
RowDefinitions="1*,Auto">
2022-12-07 16:54:52 +01:00
2023-02-22 14:03:35 +01:00
<StackLayout
2023-06-06 12:00:24 +02:00
Grid.Row="0"
Spacing="0"
Orientation="Vertical">
<StackLayout
BackgroundColor="White"
Padding="20,0,20,0">
<Grid
RowDefinitions="Auto,Auto"
ColumnDefinitions="*,Auto">
<!--Search bike-->
<Label
Grid.Column="0"
Grid.ColumnSpan="2"
Grid.Row="0"
2023-11-21 15:26:57 +01:00
Text="{x:Static resources:AppResources.MarkingSelectBikeLabel}"
2023-06-06 12:00:24 +02:00
Margin="0,5,0,-5">
2023-05-11 17:39:28 +02:00
</Label>
<Entry
2023-06-06 12:00:24 +02:00
Grid.Column="0"
Grid.Row="1"
2023-11-21 15:26:57 +01:00
x:Name="SelectBikeEntry"
Placeholder="{x:Static resources:AppResources.PlaceholderSelectBike}"
2023-05-11 17:39:28 +02:00
MaxLength="10"
CursorPosition="0"
2023-06-06 12:00:24 +02:00
Text="{Binding BikeIdUserInput, Mode=TwoWay}"/>
2023-05-11 17:39:28 +02:00
<Button
2023-06-06 12:00:24 +02:00
Grid.Column="1"
Grid.Row="1"
WidthRequest="100"
2023-11-21 15:26:57 +01:00
Text="{x:Static resources:AppResources.MarkingSelectBikeButton}"
2023-09-22 11:38:42 +02:00
Command="{Binding OnSelectBikeRequest}">
<Button.Triggers>
<DataTrigger TargetType="Button" Binding="{Binding IsSelectBikeEnabled}" Value="False">
<Setter Property="BorderColor" Value="DimGray" />
<Setter Property="BackgroundColor" Value="DimGray" />
<Setter Property="TextColor" Value="LightGray" />
</DataTrigger>
</Button.Triggers>
</Button>
2022-09-16 11:19:46 +02:00
2023-06-06 12:00:24 +02:00
</Grid>
2022-09-16 11:19:46 +02:00
2023-06-06 12:00:24 +02:00
<!--Line-->
<BoxView
HeightRequest="1"
WidthRequest="400"
HorizontalOptions="Center"
Color="{DynamicResource primary-back-title-color}"/>
</StackLayout>
2023-07-04 11:06:38 +02:00
<!--Bike data-->
<Grid
2024-04-16 11:29:40 +02:00
RowDefinitions="1*"
2023-07-04 11:06:38 +02:00
RowSpacing="0">
2022-09-16 11:19:46 +02:00
2023-07-04 11:06:38 +02:00
<!--Bike-->
<ListView
2023-11-21 15:26:57 +01:00
x:Name="SelectBikeListView"
2023-09-22 11:38:42 +02:00
BackgroundColor="{DynamicResource background-color}"
2023-06-06 12:00:24 +02:00
SelectionMode="None"
SelectedItem="{Binding SelectedBike}"
IsEnabled="{Binding IsIdle}"
HasUnevenRows="True"
SeparatorVisibility="None"
ItemTemplate="{StaticResource bikeTemplateSelector}"
IsPullToRefreshEnabled="True"
RefreshCommand="{Binding RefreshCommand}"
IsRefreshing="{Binding IsRefreshing}"/>
2023-07-04 11:06:38 +02:00
</Grid>
2023-06-06 12:00:24 +02:00
2023-02-22 14:03:35 +01:00
</StackLayout>
2024-04-09 12:53:23 +02:00
<!--Info at End of Page-->
<StackLayout
Grid.Row="1"
Orientation="Vertical"
Spacing="0"
Padding="20,0,20,0">
<!--Info text-->
<Label
Text="{Binding StatusInfoText}"
IsVisible="{Binding Path=IsProcessWithRunningProcessView, Converter={StaticResource InvertedBoolConverter}}"
FontSize="Small"
TextColor="DimGray"
Padding="5"
HorizontalOptions="CenterAndExpand">
<Label.Triggers>
<DataTrigger
TargetType="Label"
Binding="{Binding Path=StatusInfoText.Length}" Value="0">
<Setter Property="HeightRequest" Value="0" />
</DataTrigger>
<DataTrigger
TargetType="Label"
Binding="{Binding Path=StatusInfoText}" Value="Offline.">
<Setter Property="HeightRequest" Value="0" />
</DataTrigger>
</Label.Triggers>
</Label>
<!--Login-->
<StackLayout Spacing="0">
<StackLayout.Triggers>
<DataTrigger TargetType="StackLayout"
Binding="{Binding IsLoginRequiredHintVisible}"
Value="false">
<Setter Property="HeightRequest" Value="0" />
</DataTrigger>
</StackLayout.Triggers>
<!--Line-->
<BoxView
HeightRequest="1"
WidthRequest="400"
HorizontalOptions="Center"
IsVisible="{Binding IsLoginRequiredHintVisible}"
Color="DimGray" />
<!--Login required-->
<Label
IsVisible="{Binding IsLoginRequiredHintVisible}"
TextType="Html"
2023-03-08 13:18:54 +01:00
TextColor="DimGray"
2024-04-09 12:53:23 +02:00
Text="{Binding LoginRequiredHintText}">
<Label.GestureRecognizers>
<TapGestureRecognizer Command="{Binding LoginRequiredHintClickedCommand}"/>
</Label.GestureRecognizers>
</Label>
</StackLayout>
</StackLayout>
2022-12-07 16:54:52 +01:00
2023-02-22 14:03:35 +01:00
</Grid>
2022-09-16 11:19:46 +02:00
<!--While process is running-->
<sharedGui:RunningProcessView
Grid.Row="0"
2023-01-18 14:22:51 +01:00
IsVisible="{Binding IsProcessWithRunningProcessView}"/>
2022-09-16 11:19:46 +02:00
2024-04-09 12:53:23 +02:00
<!--RequestBike View-->
<bikeRentalProcess:RentalProcessStartReservationOrRental
Grid.Row="0"/>
<!--OpenLock View-->
<bikeRentalProcess:RentalProcessBookedClosedOpenLock
Grid.Row="0"/>
2023-08-31 12:20:06 +02:00
<!--CloseLock View-->
<bikeRentalProcess:RentalProcessBookedOpenCloseLock
Grid.Row="0"/>
<!--EndRental View-->
<bikeRentalProcess:RentalProcessBookedClosedEndRental
Grid.Row="0"/>
</Grid>
2022-09-16 11:19:46 +02:00
</ContentPage.Content>
2022-12-07 16:54:52 +01:00
2022-09-16 11:19:46 +02:00
</ContentPage>