Skip to content

Commit

Permalink
Merge branch 'develop' into feature/400-number_input_color
Browse files Browse the repository at this point in the history
  • Loading branch information
BAL4-R authored Oct 15, 2024
2 parents fece60e + 5aa81bd commit d7b3235
Show file tree
Hide file tree
Showing 21 changed files with 530 additions and 182 deletions.
4 changes: 4 additions & 0 deletions DemoApp/DemoApp/ViewModels/DropDownSampleViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ public partial class DropDownSampleViewModel : ObservableObject
private int selectedIndexOfEquipment;
[ObservableProperty]
private string selectedItemOfColor;

[ObservableProperty]
private string equipmentType = "Equipment Type:";

[ObservableProperty]
private List<string> equipmentSource;
[ObservableProperty]
Expand Down
8 changes: 8 additions & 0 deletions DemoApp/DemoApp/ViewModels/SwitchViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ public partial class SwitchSamplePageViewModel : ObservableObject

[ObservableProperty] private bool isEnabled = true;
[ObservableProperty] private SwitchSize switchSize;
[ObservableProperty] private TitlePosition switchLabelPosition;
[ObservableProperty] private string switchLabel = "Off at first";
public SwitchSamplePageViewModel()
{

Expand All @@ -27,6 +29,12 @@ public void SizeSelectionChanged(TMRadioButtonEventArgs e)
SwitchSize = e.RadioButtonIndex == 0 ? SwitchSize.Medium : SwitchSize.Large;
}

[RelayCommand]
public void PositionSelectionChanged(TMRadioButtonEventArgs e)
{
SwitchLabelPosition = e.RadioButtonIndex == 0 ? TitlePosition.Right : TitlePosition.Left;
}

[RelayCommand]
private void Switch(object e)
{
Expand Down
17 changes: 7 additions & 10 deletions DemoApp/DemoApp/Views/DropDownSamplePage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,16 @@
xmlns:modus="http://modus.trimble.com/components"
x:Class="DemoApp.Views.DropDownSamplePage"
Title="DropDownSamplePage">
<StackLayout HorizontalOptions="Start"
Padding="10"
Spacing="20">

<Label Text="Equipment Type:" />
<modus:TMDropDown WidthRequest="250" />
<VerticalStackLayout Padding="10"
Spacing="20">
<modus:TMDropDown TitleText="{Binding EquipmentType}" />
<modus:TMDropDown ItemsSource="{Binding EquipmentSource}"
SelectedIndex="{Binding SelectedIndexOfEquipment}"
SelectionChangedCommand="{Binding ItemSelectedCommand}"
WidthRequest="250" />
<Label Text="Color" />
SelectionChangedCommand="{Binding ItemSelectedCommand}" />
<modus:TMDropDown ItemsSource="{Binding ColorSource}"
TitleText="Color"
IsRequired="True"
SelectedItem="{Binding SelectedItemOfColor}"
SelectionChangedCommand="{Binding ItemSelectedCommand}" />
</StackLayout>
</VerticalStackLayout>
</ContentPage>
32 changes: 29 additions & 3 deletions DemoApp/DemoApp/Views/SwitchSamplePage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<VerticalStackLayout Padding="10"
Spacing="10"
HorizontalOptions="Start"
VerticalOptions="Start">
VerticalOptions="Start">
<Label Text="IsEnabled" />
<modus:TMRadioButtonGroup x:Name="IsEnabledRadioGroup"
Orientation="Horizontal"
Expand All @@ -24,17 +24,43 @@
SelectedRadioButtonChangedCommand="{Binding SizeSelectionChangedCommand}">
<modus:TMRadioButton Text="Medium" />
<modus:TMRadioButton Text="Large" />
</modus:TMRadioButtonGroup>

<Label Text="Position" />
<modus:TMRadioButtonGroup x:Name="PositionRadioGroup"
Orientation="Horizontal"
SelectedIndex="0"
SelectedRadioButtonChangedCommand="{Binding PositionSelectionChangedCommand}">
<modus:TMRadioButton Text="Right" />
<modus:TMRadioButton Text="Left" />
</modus:TMRadioButtonGroup>
<Label Text="Medium Switches" />
<modus:TMSwitch Text="Off at first"

<modus:TMSwitch Text="{Binding SwitchLabel}"
Toggled="TMSwitch_Toggled"
IsToggled="false"
IsEnabled="{Binding IsEnabled}"
SwitchSize="{Binding SwitchSize}"
SwitchLabelPosition="{Binding SwitchLabelPosition}"
ToggledCommand="{Binding SwitchCommand}" />
<modus:TMSwitch Text="On at first"
Toggled="TMSwitch_Toggled"
IsToggled="True"
SwitchLabelPosition="{Binding SwitchLabelPosition}"
IsEnabled="{Binding IsEnabled}"
SwitchSize="{Binding SwitchSize}"
ToggledCommand="{Binding SwitchCommand}" />

<modus:TMSwitch Text="Left Side Label"
Toggled="TMSwitch_Toggled"
IsToggled="True"
SwitchLabelPosition="Left"
IsEnabled="{Binding IsEnabled}"
SwitchSize="{Binding SwitchSize}"
ToggledCommand="{Binding SwitchCommand}" />
<modus:TMSwitch Text="Right Side Label"
Toggled="TMSwitch_Toggled"
IsToggled="True"
SwitchLabelPosition="Right"
IsEnabled="{Binding IsEnabled}"
SwitchSize="{Binding SwitchSize}"
ToggledCommand="{Binding SwitchCommand}" />
Expand Down
72 changes: 37 additions & 35 deletions Trimble.Modus.Components/Controls/DropDown/TMDropDown.xaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
HorizontalOptions="Start"
VerticalOptions="Start"
x:Name="dropDown"
xmlns:local="clr-namespace:Trimble.Modus.Components"
xmlns:constants="clr-namespace:Trimble.Modus.Components.Constant"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
Expand All @@ -14,39 +13,42 @@
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</ContentView.Resources>
<Border x:Name="innerBorder"
MinimumWidthRequest="150"
HorizontalOptions="Start"
StrokeThickness="2"
VerticalOptions="Center"
Padding="0">
<Border.StrokeShape>
<RoundRectangle CornerRadius="4" />
</Border.StrokeShape>
<Border.GestureRecognizers>
<TapGestureRecognizer Tapped="TapGestureRecognizer_Tapped" />
</Border.GestureRecognizers>
<Grid x:Name="ContentLayout"
ColumnDefinitions="*,auto"
HeightRequest="48"
Padding="12,0"
HorizontalOptions="Fill"
VerticalOptions="Center">
<Label x:Name="label"
FontSize="16"
Grid.Column="0"
HorizontalTextAlignment="Start"
FontFamily="OpenSansSemibold"
VerticalOptions="Center" />
<VerticalStackLayout BindingContext="{x:Reference dropDown}">
<local:ControlLabel TitleText="{Binding TitleText}"
IsRequired="{Binding IsRequired}" />
<Border x:Name="innerBorder"
HorizontalOptions="Fill"
StrokeThickness="2"
VerticalOptions="Center"
Padding="0">
<Border.StrokeShape>
<RoundRectangle CornerRadius="4" />
</Border.StrokeShape>
<Border.GestureRecognizers>
<TapGestureRecognizer Tapped="TapGestureRecognizer_Tapped" />
</Border.GestureRecognizers>
<Grid x:Name="ContentLayout"
ColumnDefinitions="*,auto"
HeightRequest="48"
Padding="12,0"
HorizontalOptions="Fill"
VerticalOptions="Center">
<Label x:Name="label"
FontSize="16"
Grid.Column="0"
HorizontalTextAlignment="Start"
FontFamily="OpenSansSemibold"
VerticalOptions="Center" />

<Image x:Name="indicatorButton"
Source="{Static constants:ImageConstants.ChevronDownIconWhite}"
HorizontalOptions="EndAndExpand"
VerticalOptions="Center"
Grid.Column="1"
HeightRequest="32"
WidthRequest="32" />
<Image x:Name="indicatorButton"
Source="{Static constants:ImageConstants.ChevronDownIconWhite}"
HorizontalOptions="EndAndExpand"
VerticalOptions="Center"
Grid.Column="1"
HeightRequest="32"
WidthRequest="32" />

</Grid>
</Border>
</Grid>
</Border>
</VerticalStackLayout>
</ContentView>
89 changes: 61 additions & 28 deletions Trimble.Modus.Components/Controls/DropDown/TMDropDown.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,24 @@ public IEnumerable ItemsSource
set { SetValue(ItemsSourceProperty, value); }
}

/// <summary>
/// Gets or sets the title text
/// </summary>
public string TitleText
{
get => (string)GetValue(TitleTextProperty);
set => SetValue(TitleTextProperty, value);
}

/// <summary>
/// Gets or sets the required property
/// </summary>
public bool IsRequired
{
get => (bool)GetValue(IsRequiredProperty);
set => SetValue(IsRequiredProperty, value);
}

public object SelectedItem
{
get => GetValue(SelectedItemProperty);
Expand Down Expand Up @@ -81,6 +99,18 @@ public ICommand SelectionChangedCommand
public static readonly BindableProperty ItemsSourceProperty =
BindableProperty.Create(nameof(ItemsSource), typeof(IEnumerable), typeof(TMDropDown), null, propertyChanged: OnItemsSourceChanged);

/// <summary>
/// Gets or sets the text for the title label in the control
/// </summary>
public static readonly BindableProperty TitleTextProperty =
BindableProperty.Create(nameof(TitleText), typeof(string), typeof(TMDropDown), null);

/// <summary>
/// Gets or sets the required boolean for the label in the control
/// </summary>
public static readonly BindableProperty IsRequiredProperty =
BindableProperty.Create(nameof(IsRequired), typeof(bool), typeof(TMDropDown), false);

public static readonly BindableProperty SelectedItemProperty =
BindableProperty.Create(nameof(SelectedItem), typeof(object), typeof(TMDropDown), null, propertyChanged: OnSelectedItemChanged);

Expand Down Expand Up @@ -184,14 +214,6 @@ private void OnSelected(object sender, SelectedItemChangedEventArgs e)
}
}

private void OnTapped(object sender, EventArgs e)
{
if (ItemsSource.Cast<object>().Count() > 0)
{
Open();
}
}

private async void Close()
{
await Task.WhenAll(
Expand All @@ -202,29 +224,36 @@ await Task.WhenAll(


DropDownContents dropDownContents;
private bool _isLoading;

private async void Open()
{
var locationFetcher = new LocationFetcher();
var loc = locationFetcher.GetCoordinates(this);
var height = Application.Current.MainPage.Window.Height;
dropDownContents = new DropDownContents(innerBorder, Enums.ModalPosition.Bottom)
if (!_isLoading)
{
ItemSource = this.ItemsSource,
SelectedIndex = this.SelectedIndex,
SelectedItem = this.SelectedItem,
Margin = margin,
DesiredHeight = desiredHeight,
WidthRequest = innerBorder.Width,
SelectedEventHandler = OnSelected,
YPosition = loc.Y,
Height = height
};
dropDownContents.Build();
await Task.WhenAll(
indicatorButton.RotateTo(-180, AnimationDuration)
);

await PopupService.Instance?.PresentAsync(dropDownContents, true);
_isLoading = true;
var locationFetcher = new LocationFetcher();
var loc = locationFetcher.GetCoordinates(this);
var height = Application.Current.MainPage.Window.Height;
dropDownContents = new DropDownContents(innerBorder, Enums.ModalPosition.Bottom)
{
ItemSource = this.ItemsSource,
SelectedIndex = this.SelectedIndex,
SelectedItem = this.SelectedItem,
Margin = margin,
DesiredHeight = desiredHeight,
WidthRequest = innerBorder.Width,
SelectedEventHandler = OnSelected,
YPosition = loc.Y,
Height = height
};
dropDownContents.Build();
await Task.WhenAll(
indicatorButton.RotateTo(-180, AnimationDuration)
);

await PopupService.Instance?.PresentAsync(dropDownContents, true);
_isLoading = false;
}
}

private void OnPopupRemoved(object sender, EventArgs e)
Expand Down Expand Up @@ -274,6 +303,10 @@ private void UpdateSelectedItemText(TMDropDown dropDown)
{
label.Text = items.Cast<object>().ElementAt(dropDown.SelectedIndex).ToString();
}
else
{
label.Text = string.Empty;
}
}

private void UpdateSelectedItemValue(TMDropDown dropDown)
Expand Down
35 changes: 35 additions & 0 deletions Trimble.Modus.Components/Controls/Label/ControlLabel.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
xmlns:local="clr-namespace:Trimble.Modus.Components;assembly=Trimble.Modus.Components"
x:Class="Trimble.Modus.Components.ControlLabel"
x:Name="controlLabelView">
<ContentView.Resources>
<ResourceDictionary>
<toolkit:IsStringNotNullOrEmptyConverter x:Key="IsStringNotNullOrEmptyConverter" />
<ResourceDictionary.MergedDictionaries>
<local:ControlLabelStyles />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</ContentView.Resources>
<Grid x:Name="view"
BindingContext="{x:Reference controlLabelView}"
ColumnSpacing="4"
ColumnDefinitions="*,auto"
IsVisible="{Binding TitleText,Converter={StaticResource IsStringNotNullOrEmptyConverter}}">
<Label x:Name="inputLabel"
Padding="0,0,0,5"
Grid.Column="0"
FontFamily="OpenSansSemibold"
Text="{Binding TitleText}"
VerticalOptions="Center"
LineBreakMode="WordWrap"
HorizontalOptions="Start" />
<Label Text="*"
Grid.Column="1"
IsVisible="{Binding IsRequired}"
FontFamily="OpenSansSemibold"
TextColor="{DynamicResource Danger}" />
</Grid>
</ContentView>
Loading

0 comments on commit d7b3235

Please sign in to comment.