* replace media items tables with card grids * style cleanup * add basic paging * sort and page in the db * optimize sql for movies * support movie posters * resize movie posters and store in cache with channel logos * fix bug preventing folders with more than 50 chars as local media sources * support tv posters
25 lines
774 B
Plaintext
25 lines
774 B
Plaintext
@using System.IO
|
|
@using System.Net.Http
|
|
@using System.Net.Http.Json
|
|
@using System.Threading.Channels
|
|
@using Microsoft.AspNetCore.Authorization
|
|
@using Microsoft.AspNetCore.Components.Authorization
|
|
@using Microsoft.AspNetCore.Components.Forms
|
|
@using Microsoft.AspNetCore.Components.Routing
|
|
@using Microsoft.AspNetCore.Components.Web
|
|
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
|
@using Microsoft.Data.Sqlite
|
|
@using Microsoft.EntityFrameworkCore
|
|
@using Microsoft.Extensions.Logging
|
|
@using Microsoft.JSInterop
|
|
@using LanguageExt
|
|
@using MediatR
|
|
@using MudBlazor
|
|
@using MudBlazor.Dialog
|
|
@using ErsatzTV
|
|
@using ErsatzTV.Application
|
|
@using ErsatzTV.Core
|
|
@using ErsatzTV.Core.Domain
|
|
@using ErsatzTV.Infrastructure.Data
|
|
@using ErsatzTV.Shared
|
|
@using ErsatzTV.ViewModels |