Files
daniel-c-harvey e3fe401abf Consolidate play/pause icon logic into PlaybackIcons mapper and PlayStateIcon component
Add Disabled parameter to PlayStateIcon; forward to MudIconButton;
pass Disabled="!IsLoaded" from PlayerControls to match Stop button parity.
2026-06-06 10:46:32 -04:00

15 lines
510 B
C#

using MudBlazor;
namespace DeepDrftPublic.Client.Helpers;
/// <summary>
/// Single source of truth for mapping playback state to a transport glyph across
/// DeepDrftPublic.Client. Surfaces that render a play/pause icon call <see cref="Resolve"/>
/// instead of inlining their own ternary.
/// </summary>
public static class PlaybackIcons
{
public static string Resolve(bool isPlaying, bool isPaused)
=> (isPlaying && !isPaused) ? Icons.Material.Filled.Pause : Icons.Material.Filled.PlayArrow;
}