9ac2c9182a
- Redesigned audio player bar to be mobile-friendly - Added unloading for track switching (needs to be fixed) - Added IsLoading status so loading spinner isn't hanging around when it shouldn't be - Normalized styles with scoped files (will further reduce) - Layout Cleanup - EF fixes (migrations now function for deployment) - deploy script updates (new dedicated host)
16 lines
538 B
C#
16 lines
538 B
C#
using Microsoft.AspNetCore.Components;
|
|
using MudBlazor;
|
|
|
|
namespace DeepDrftWeb.Client.Controls.AudioPlayerBar;
|
|
|
|
public partial class VolumeControls : ComponentBase
|
|
{
|
|
[Parameter] public required double Volume { get; set; }
|
|
[Parameter] public required EventCallback<double> VolumeChanged { get; set; }
|
|
private string GetVolumeIcon()
|
|
{
|
|
if (Volume == 0) return Icons.Material.Filled.VolumeOff;
|
|
if (Volume < 0.5) return Icons.Material.Filled.VolumeDown;
|
|
return Icons.Material.Filled.VolumeUp;
|
|
}
|
|
} |