Files
NebulaLauncher/Nebula.Launcher/Views/MainView.axaml

213 lines
10 KiB
Plaintext
Raw Normal View History

2024-12-21 13:11:30 +03:00
<UserControl
d:DesignHeight="450"
d:DesignWidth="800"
mc:Ignorable="d"
x:Class="Nebula.Launcher.Views.MainView"
x:DataType="viewModels:MainViewModel"
xmlns="https://github.com/avaloniaui"
xmlns:converters="clr-namespace:Nebula.Launcher.Converters"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:viewModels="clr-namespace:Nebula.Launcher.ViewModels"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
2025-07-05 20:39:36 +03:00
xmlns:models1="clr-namespace:Nebula.Launcher.Models"
xmlns:services="clr-namespace:Nebula.Launcher.Services">
2024-12-21 15:15:04 +03:00
<Design.DataContext>
<viewModels:MainViewModel />
</Design.DataContext>
2025-02-02 10:57:29 +03:00
<UserControl.Background>
<LinearGradientBrush EndPoint="100%,50%" StartPoint="0%,50%">
<GradientStop Color="#121212" Offset="0.0" />
<GradientStop Color="#181212" Offset="1.0" />
</LinearGradientBrush>
</UserControl.Background>
2024-12-26 18:54:37 +03:00
<Panel>
<Grid
ColumnDefinitions="65,*"
IsEnabled="{Binding IsEnabled}"
Margin="0"
2024-12-27 19:15:33 +03:00
RowDefinitions="*,30">
2024-12-26 18:54:37 +03:00
<TransitioningContentControl
Content="{Binding CurrentPage}"
Grid.Column="1"
Grid.Row="0" />
<SplitView
2025-02-02 10:57:29 +03:00
CompactPaneLength="70"
2024-12-26 18:54:37 +03:00
DisplayMode="CompactInline"
Grid.Column="0"
Grid.ColumnSpan="2"
Grid.Row="0"
IsPaneOpen="{Binding IsPaneOpen}"
2025-01-23 20:43:52 +03:00
PaneBackground="Transparent">
2024-12-26 18:54:37 +03:00
<SplitView.Pane>
<Border
2025-01-28 19:59:35 +03:00
BoxShadow="0 0 15 -2 #121212"
2025-02-02 10:57:29 +03:00
CornerRadius="0,0,0,0"
2024-12-26 18:54:37 +03:00
Grid.Column="0"
Grid.Row="0"
Margin="0,0,5,0"
2025-01-23 20:43:52 +03:00
Padding="0,0,-4,0">
2025-02-02 10:57:29 +03:00
<Border.Background>
<LinearGradientBrush EndPoint="100%,50%" StartPoint="0%,50%">
2025-02-20 22:13:31 +03:00
<GradientStop Color="#221f1f" Offset="0.0" />
<GradientStop Color="#282222" Offset="0.2" />
<GradientStop Color="#232222" Offset="1.0" />
2025-02-02 10:57:29 +03:00
</LinearGradientBrush>
</Border.Background>
2024-12-26 18:54:37 +03:00
<Grid ColumnDefinitions="*" RowDefinitions="*,40">
<ListBox
2025-01-23 20:43:52 +03:00
Background="Transparent"
2024-12-26 18:54:37 +03:00
ItemsSource="{Binding Items}"
Padding="0"
SelectedItem="{Binding SelectedListItem}">
<ListBox.ItemTemplate>
<DataTemplate DataType="{x:Type models1:ListItemTemplate}">
2025-02-02 10:57:29 +03:00
<StackPanel Orientation="Horizontal" Spacing="19">
2025-01-20 16:35:48 +03:00
<Svg
Height="40"
Path="{Binding IconKey, Converter={x:Static converters:TypeConverters.IconConverter}}"
Width="40" />
2024-12-26 18:54:37 +03:00
<TextBlock Text="{Binding Label}" VerticalAlignment="Center" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<Button
Classes="ViewSelectButton"
Command="{Binding TriggerPaneCommand}"
Grid.Row="1"
2025-01-15 19:47:27 +03:00
HorizontalAlignment="Stretch"
Padding="5,0,5,0"
2024-12-26 18:54:37 +03:00
VerticalAlignment="Stretch">
<Label HorizontalAlignment="Center" VerticalAlignment="Center">|||</Label>
</Button>
</Grid>
</Border>
</SplitView.Pane>
</SplitView>
<Border
2025-02-02 10:57:29 +03:00
Background="{StaticResource DefaultGrad}"
BorderThickness="0,2,0,0"
2024-12-26 18:54:37 +03:00
CornerRadius="0,0,0,0"
Grid.Column="0"
Grid.ColumnSpan="2"
Grid.Row="1"
Margin="0,0,0,0"
Padding="5">
2025-02-02 10:57:29 +03:00
<Border.BorderBrush>
<LinearGradientBrush EndPoint="100%,50%" StartPoint="0%,50%">
<GradientStop Color="#222222" Offset="0.0" />
<GradientStop Color="#442222" Offset="1.0" />
</LinearGradientBrush>
</Border.BorderBrush>
2024-12-27 19:15:33 +03:00
<Label FontSize="10" Foreground="#777777">
<Panel>
2025-01-20 16:35:48 +03:00
<Button
Background="#00000000"
Command="{Binding OpenLink}"
CornerRadius="0"
HorizontalAlignment="Left"
Margin="0"
Padding="0"
VerticalAlignment="Center">
2025-01-23 20:43:52 +03:00
<TextBlock
Foreground="#777777"
HorizontalAlignment="Left"
VerticalAlignment="Center">
2025-05-07 14:55:00 +03:00
https://durenko.tatar/nebula/
2025-01-23 20:43:52 +03:00
</TextBlock>
2024-12-28 08:29:01 +03:00
</Button>
2025-07-05 20:39:36 +03:00
<StackPanel Spacing="5" HorizontalAlignment="Right" VerticalAlignment="Center" Orientation="Horizontal">
<Button
Margin="0"
Padding="0"
CornerRadius="0"
Command="{Binding OpenAuthPage}">
2025-07-10 15:22:15 +03:00
<StackPanel Spacing="5" Orientation="Horizontal">
<Svg
Height="40"
Path="/Assets/svg/user.svg"
Width="10" />
<Panel>
<TextBlock Foreground="#777777" IsVisible="{Binding IsLoggedIn}" Text="{Binding LoginText}"/>
<TextBlock Foreground="#777777" IsVisible="{Binding !IsLoggedIn}" Text="{services:LocaledText auth-current-login-no-name}"/>
</Panel>
</StackPanel>
</Button>
<TextBlock>|</TextBlock>
<Button
Margin="0"
Padding="0"
CornerRadius="0"
Command="{Binding OpenRootPath}">
<StackPanel Orientation="Horizontal" Spacing="5">
<Svg
Height="40"
Path="/Assets/svg/folder.svg"
Width="10" />
<TextBlock Foreground="#777777" Text="{services:LocaledText goto-path-home}"/>
</StackPanel>
2025-07-05 20:39:36 +03:00
</Button>
<TextBlock>|</TextBlock>
<TextBlock Text="{Binding VersionInfo}"/>
</StackPanel>
2024-12-27 19:15:33 +03:00
</Panel>
</Label>
2024-12-26 18:54:37 +03:00
</Border>
</Grid>
<Panel IsVisible="{Binding Popup}">
<Border Background="#111" Opacity="50" />
2025-01-23 20:43:52 +03:00
<Border
Background="{StaticResource DefaultBackground}"
CornerRadius="10"
Margin="40">
2024-12-27 08:22:17 +03:00
<Grid RowDefinitions="35,*,20">
<Border
2025-01-23 20:43:52 +03:00
BorderBrush="{StaticResource DefaultForeground}"
2025-01-28 19:59:35 +03:00
BoxShadow="0 2 15 -2 #121212"
2024-12-27 08:22:17 +03:00
CornerRadius="10,10,0,0"
Grid.Row="0">
<Panel Margin="12,0,0,0" VerticalAlignment="Center">
<StackPanel HorizontalAlignment="Left" VerticalAlignment="Center">
2024-12-27 19:15:33 +03:00
<Label Content="{Binding CurrentTitle}" VerticalAlignment="Center" />
2024-12-27 08:22:17 +03:00
</StackPanel>
<Button
2024-12-27 19:15:33 +03:00
Command="{Binding ClosePopupCommand}"
2024-12-27 08:22:17 +03:00
Content="X"
CornerRadius="0,10,0,0"
HorizontalAlignment="Right"
2025-01-20 16:35:48 +03:00
IsVisible="{Binding IsPopupClosable}"
2024-12-27 19:15:33 +03:00
Margin="0"
2024-12-27 08:22:17 +03:00
Padding="10,8,10,8"
2024-12-27 19:15:33 +03:00
VerticalAlignment="Stretch" />
2024-12-27 08:22:17 +03:00
</Panel>
</Border>
<TransitioningContentControl Content="{Binding CurrentPopup}" Grid.Row="1" />
<Border
2025-01-23 20:43:52 +03:00
BorderBrush="{StaticResource DefaultForeground}"
2025-01-28 19:59:35 +03:00
BoxShadow="0 -2 15 -2 #121212"
2024-12-27 08:22:17 +03:00
CornerRadius="0,0,10,10"
Grid.Row="2">
<Panel Margin="12,0,12,0" VerticalAlignment="Center">
<StackPanel HorizontalAlignment="Left" VerticalAlignment="Center">
<Label
FontSize="8"
Foreground="#666666"
VerticalAlignment="Center">
Дальше бога нет...
</Label>
</StackPanel>
</Panel>
</Border>
</Grid>
2024-12-26 18:54:37 +03:00
</Border>
</Panel>
</Panel>
2025-01-14 22:10:16 +03:00
</UserControl>