|
|
|
@ -102,24 +102,26 @@ |
|
|
|
<MudText Typo="Typo.h4" Class="mb-6">@episode.Episode. @episode.Title</MudText> |
|
|
|
<MudText Typo="Typo.h4" Class="mb-6">@episode.Episode. @episode.Title</MudText> |
|
|
|
<MudText Class="d-none d-md-flex" Style="flex-grow: 1">@episode.Plot</MudText> |
|
|
|
<MudText Class="d-none d-md-flex" Style="flex-grow: 1">@episode.Plot</MudText> |
|
|
|
<MudStack Row="true" Breakpoint="Breakpoint.SmAndDown"> |
|
|
|
<MudStack Row="true" Breakpoint="Breakpoint.SmAndDown"> |
|
|
|
<MudButton Variant="Variant.Filled" |
|
|
|
<MudMenu Variant="Variant.Filled" Color="Color.Primary" StartIcon="@Icons.Material.Filled.Add" Label="Add To ..."> |
|
|
|
Color="Color.Primary" |
|
|
|
<MudMenuItem OnClick="@(_ => AddEpisodeToCollection(episode))" Icon="@Icons.Material.Filled.Add"> |
|
|
|
StartIcon="@Icons.Material.Filled.Add" |
|
|
|
Add To Collection |
|
|
|
OnClick="@(_ => AddEpisodeToCollection(episode))"> |
|
|
|
</MudMenuItem> |
|
|
|
Add To Collection |
|
|
|
<MudMenuItem OnClick="@(_ => AddEpisodeToPlaylist(episode))" Icon="@Icons.Material.Filled.PlaylistAdd"> |
|
|
|
</MudButton> |
|
|
|
Add To Playlist |
|
|
|
<MudButton Variant="Variant.Filled" |
|
|
|
</MudMenuItem> |
|
|
|
Color="Color.Primary" |
|
|
|
</MudMenu> |
|
|
|
StartIcon="@Icons.Material.Filled.PlaylistAdd" |
|
|
|
|
|
|
|
OnClick="@(_ => AddEpisodeToPlaylist(episode))"> |
|
|
|
|
|
|
|
Add To Playlist |
|
|
|
|
|
|
|
</MudButton> |
|
|
|
|
|
|
|
<MudButton Variant="Variant.Filled" |
|
|
|
<MudButton Variant="Variant.Filled" |
|
|
|
Color="Color.Secondary" |
|
|
|
Color="Color.Secondary" |
|
|
|
StartIcon="@Icons.Material.Filled.Info" |
|
|
|
StartIcon="@Icons.Material.Filled.Info" |
|
|
|
OnClick="@(_ => ShowInfo(episode))"> |
|
|
|
OnClick="@(_ => ShowInfo(episode))"> |
|
|
|
Show Media Info |
|
|
|
Show Media Info |
|
|
|
</MudButton> |
|
|
|
</MudButton> |
|
|
|
|
|
|
|
<MudButton Variant="Variant.Filled" |
|
|
|
|
|
|
|
Color="Color.Secondary" |
|
|
|
|
|
|
|
StartIcon="@Icons.Material.Filled.Troubleshoot" |
|
|
|
|
|
|
|
Href="@($"system/troubleshooting/playback?mediaItem={episode.EpisodeId}")"> |
|
|
|
|
|
|
|
Troubleshoot Playback |
|
|
|
|
|
|
|
</MudButton> |
|
|
|
</MudStack> |
|
|
|
</MudStack> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</MudCardContent> |
|
|
|
</MudCardContent> |
|
|
|
|