Added basic search implementation with display components

This commit is contained in:
Vincent Allen
2025-10-16 09:24:52 -04:00
852 changed files with 6519 additions and 29467 deletions

View File

@@ -8,7 +8,9 @@
Class="mud-width-full auto-height-carousel"
TData="object"
AutoCycle=false
@bind-SelectedIndex="SelectedIndex">
@bind-SelectedIndex="SelectedIndex"
ShowArrows="(FilePathListings.Count > 1)"
ShowBullets="(FilePathListings.Count > 1)">
@foreach (var file in FilePathListings.Select((value, i) => new { i, value }))
{
@if (!ShowUnsupportedFiles && FileViewerFactory.GetViewerComponent(file.value.OriginalName) == typeof(UnsupportedFileViewer))