1
0
mirror of synced 2025-02-25 14:34:49 +01:00

Simplify song column for performance

This commit is contained in:
shiibe 2022-09-13 10:24:02 -04:00
parent 3782d999f8
commit 003dc31e44

View File

@ -32,28 +32,20 @@
<MudDataGrid Items="@songBestDataMap[difficulty]" <MudDataGrid Items="@songBestDataMap[difficulty]"
ColumnResizeMode="ResizeMode.Container" RowsPerPage="25" Elevation="0"> ColumnResizeMode="ResizeMode.Container" RowsPerPage="25" Elevation="0">
<Columns> <Columns>
<Column T="SongBestData" Field="@nameof(SongBestData.SongId)" Title="Song" StickyLeft="true" Class="clm-row-large"> <Column T="SongBestData" Field="@nameof(SongBestData.SongId)" Title="Song" StickyLeft="true" CellStyle="width:20%;min-width:400px;">
<CellTemplate> <CellTemplate>
<MudGrid Justify="Justify.Center"> <MudStack Row="true" Justify="Justify.SpaceBetween">
<MudItem xs="10"> <div>
<MudStack Spacing="0">
<MudText Typo="Typo.body2" Style="font-weight:bold">@context.Item.MusicName</MudText> <MudText Typo="Typo.body2" Style="font-weight:bold">@context.Item.MusicName</MudText>
<MudText Typo="Typo.caption">@context.Item.MusicArtist</MudText> <MudText Typo="Typo.caption">@context.Item.MusicArtist</MudText>
</MudStack> </div>
</MudItem>
<MudItem xs="2">
<MudStack Justify="Justify.Center" AlignItems="AlignItems.End" Style="height:100%">
<MudTooltip Text="@(context.Item.IsFavorite ? "Remove from favorites" : "Add to favorites")" Arrow="true" Placement="Placement.Top">
<MudToggleIconButton Toggled="@context.Item.IsFavorite" <MudToggleIconButton Toggled="@context.Item.IsFavorite"
ToggledChanged="@(async () => await OnFavoriteToggled(context.Item))" ToggledChanged="@(async () => await OnFavoriteToggled(context.Item))"
Icon="@Icons.Material.Filled.FavoriteBorder" Color="@Color.Secondary" Icon="@Icons.Material.Filled.FavoriteBorder" Color="@Color.Secondary"
ToggledIcon="@Icons.Material.Filled.Favorite" ToggledColor="@Color.Secondary" ToggledIcon="@Icons.Material.Filled.Favorite" ToggledColor="@Color.Secondary"
Size="Size.Small" Size="Size.Small"
ToggledSize="Size.Small" /> ToggledSize="Size.Small" />
</MudTooltip>
</MudStack> </MudStack>
</MudItem>
</MudGrid>
</CellTemplate> </CellTemplate>
</Column> </Column>
<Column T="SongBestData" Field="@nameof(SongBestData.SongId)" Title="Level" Sortable="false"> <Column T="SongBestData" Field="@nameof(SongBestData.SongId)" Title="Level" Sortable="false">