46 lines
1.4 KiB
Plaintext
46 lines
1.4 KiB
Plaintext
@page "/Channels"
|
|
@using Manager.App.Models.Settings
|
|
@using Manager.App.Services.System
|
|
@using Microsoft.Extensions.Options
|
|
|
|
@inject ILibraryService LibraryService
|
|
@inject IDialogService DialogService
|
|
@inject IOptions<LibrarySettings> LibraryOptions
|
|
@inject ClientService ClientService
|
|
@inject ISnackbar Snackbar
|
|
|
|
<PageTitle>Channels</PageTitle>
|
|
|
|
|
|
<MudStack Spacing="2">
|
|
<MudPaper Elevation="0" Outlined>
|
|
<MudStack Row Class="ma-2">
|
|
<MudButton IconSize="Size.Small" StartIcon="@Icons.Material.Filled.Add" Variant="Variant.Outlined" OnClick="OnAddAccountDialogAsync">Add account</MudButton>
|
|
</MudStack>
|
|
</MudPaper>
|
|
|
|
<MudTable ServerData="ServerReload">
|
|
<ToolBarContent>
|
|
<MudText Typo="Typo.h6">Channels</MudText>
|
|
</ToolBarContent>
|
|
<HeaderContent>
|
|
<MudTh>Name</MudTh>
|
|
<MudTh>Channel id</MudTh>
|
|
<MudTh>Has login</MudTh>
|
|
</HeaderContent>
|
|
<RowTemplate>
|
|
<MudTd>@context.Name</MudTd>
|
|
<MudTd>@context.Id</MudTd>
|
|
<MudTd>@(context.ClientAccount != null)</MudTd>
|
|
</RowTemplate>
|
|
<NoRecordsContent>
|
|
<MudText>No channels found</MudText>
|
|
</NoRecordsContent>
|
|
<LoadingContent>
|
|
<MudText>Loading...</MudText>
|
|
</LoadingContent>
|
|
<PagerContent>
|
|
<MudTablePager/>
|
|
</PagerContent>
|
|
</MudTable>
|
|
</MudStack> |