* starting database redesign * set season and episode numbers * use datetimes in db (utc); update movie metadata * get movie cards from new table * copy show/episode metadata * remove old movie metadata type * rename new movie metadata type * code cleanup * start to remove old television classes * remove old television tables from database * fix playout building * fix collection views * fix show/season views * clean up movie metadata table * fix scanner tests * add libraries ui * code cleanup * fix movie scanning/metadata * add library scan button to ui * delete library path from ui * temp disable movie scanning * remove orphan media items and prevent duplicate paths * attach artwork to metadata * fix split show/season display * fix television artwork * store year distinct from release date * fix collections ui * code cleanup * add library paths from ui * fix adding to collections from ui * fix schedule items loading * schedule editing works again * remove some todos * more cleanup * fix unit tests * fix episode sorting * fix deleting show library paths * remove unused class * fix playout list in ui * fix log viewer * start to use version/file instead of statistics * clean up old columns * fix playout display (time zone) * fix playback * fix channel guide time zone * cascade more deletes * fix compiler warnings * fix adding new seasons * use artwork for channel logo * clean cache folder on startup (move channel logos, delete everything else) * log database migration * update homepage docs for libraries * fix adding new channel with logo * fix episode numbers in epg
93 lines
3.7 KiB
Plaintext
93 lines
3.7 KiB
Plaintext
@page "/channels"
|
|
@using ErsatzTV.Application.Channels
|
|
@using ErsatzTV.Application.Channels.Commands
|
|
@using ErsatzTV.Application.Channels.Queries
|
|
@using ErsatzTV.Application.FFmpegProfiles
|
|
@using ErsatzTV.Application.FFmpegProfiles.Queries
|
|
@inject IDialogService Dialog
|
|
@inject IMediator Mediator
|
|
|
|
<MudContainer MaxWidth="MaxWidth.ExtraLarge">
|
|
<MudTable Hover="true" Items="_channels">
|
|
<ToolBarContent>
|
|
<MudText Typo="Typo.h6">Channels</MudText>
|
|
</ToolBarContent>
|
|
<ColGroup>
|
|
<col style="width: 60px;"/>
|
|
<col/>
|
|
<col style="width: 20%"/>
|
|
<col style="width: 20%"/>
|
|
<col style="width: 20%"/>
|
|
<col style="width: 60px;"/>
|
|
</ColGroup>
|
|
<HeaderContent>
|
|
<MudTh>
|
|
<MudTableSortLabel InitialDirection="SortDirection.Ascending" SortBy="new Func<ChannelViewModel, object>(x => x.Number)">Number</MudTableSortLabel>
|
|
</MudTh>
|
|
<MudTh>Logo</MudTh>
|
|
<MudTh>
|
|
<MudTableSortLabel SortBy="new Func<ChannelViewModel, object>(x => x.Name)">Name</MudTableSortLabel>
|
|
</MudTh>
|
|
<MudTh>Streaming Mode</MudTh>
|
|
<MudTh>FFmpeg Profile</MudTh>
|
|
<MudTh/>
|
|
</HeaderContent>
|
|
<RowTemplate>
|
|
<MudTd DataLabel="Number">@context.Number</MudTd>
|
|
<MudTd DataLabel="Logo">
|
|
@if (!string.IsNullOrWhiteSpace(context.Logo))
|
|
{
|
|
<MudElement HtmlTag="img" src="@($"iptv/logos/{context.Logo}")" Style="max-height: 50px"/>
|
|
}
|
|
</MudTd>
|
|
<MudTd DataLabel="Name">@context.Name</MudTd>
|
|
<MudTd DataLabel="Streaming Mode">@context.StreamingMode</MudTd>
|
|
<MudTd DataLabel="FFmpeg Profile">
|
|
@if (context.StreamingMode == StreamingMode.TransportStream)
|
|
{
|
|
@_ffmpegProfiles.Find(p => p.Id == context.FFmpegProfileId)?.Name
|
|
}
|
|
</MudTd>
|
|
<MudTd>
|
|
<MudMenu Icon="@Icons.Material.Filled.MoreVert" Direction="Direction.Left" OffsetX="true">
|
|
<MudMenuItem Icon="@Icons.Material.Filled.Edit" Link="@($"/channels/{context.Id}")">
|
|
Edit
|
|
</MudMenuItem>
|
|
<MudMenuItem Icon="@Icons.Material.Filled.Delete" OnClick="@(_ => DeleteChannelAsync(context))">
|
|
Delete
|
|
</MudMenuItem>
|
|
</MudMenu>
|
|
</MudTd>
|
|
</RowTemplate>
|
|
</MudTable>
|
|
<MudButton Variant="Variant.Filled" Color="Color.Primary" Link="/channels/add" Class="mt-4">
|
|
Add Channel
|
|
</MudButton>
|
|
</MudContainer>
|
|
|
|
@code {
|
|
private List<ChannelViewModel> _channels;
|
|
private List<FFmpegProfileViewModel> _ffmpegProfiles;
|
|
|
|
protected override async Task OnParametersSetAsync()
|
|
{
|
|
_ffmpegProfiles = await Mediator.Send(new GetAllFFmpegProfiles());
|
|
await LoadChannelsAsync();
|
|
}
|
|
|
|
private async Task DeleteChannelAsync(ChannelViewModel channel)
|
|
{
|
|
var parameters = new DialogParameters { { "EntityType", "channel" }, { "EntityName", channel.Name } };
|
|
var options = new DialogOptions { CloseButton = true, MaxWidth = MaxWidth.ExtraSmall };
|
|
|
|
IDialogReference dialog = Dialog.Show<DeleteDialog>("Delete Channel", parameters, options);
|
|
DialogResult result = await dialog.Result;
|
|
if (!result.Cancelled)
|
|
{
|
|
await Mediator.Send(new DeleteChannel(channel.Id));
|
|
await LoadChannelsAsync();
|
|
}
|
|
}
|
|
|
|
private async Task LoadChannelsAsync() => _channels = await Mediator.Send(new GetAllChannels());
|
|
} |