Started adding archive ui
This commit is contained in:
parent
406f7cad65
commit
923a3c18b8
3 changed files with 5 additions and 2 deletions
|
@ -57,6 +57,7 @@ public class FileManagerFeature : MoonlightFeature
|
||||||
await pluginService.RegisterImplementation<IFileManagerContextAction>(new DeleteContextAction());
|
await pluginService.RegisterImplementation<IFileManagerContextAction>(new DeleteContextAction());
|
||||||
|
|
||||||
await pluginService.RegisterImplementation<IFileManagerSelectionAction>(new MoveSelectionAction());
|
await pluginService.RegisterImplementation<IFileManagerSelectionAction>(new MoveSelectionAction());
|
||||||
|
await pluginService.RegisterImplementation<IFileManagerSelectionAction>(new ArchiveSelectionAction());
|
||||||
await pluginService.RegisterImplementation<IFileManagerSelectionAction>(new DeleteSelectionAction());
|
await pluginService.RegisterImplementation<IFileManagerSelectionAction>(new DeleteSelectionAction());
|
||||||
|
|
||||||
await pluginService.RegisterImplementation<IFileManagerCreateAction>(new CreateFileAction());
|
await pluginService.RegisterImplementation<IFileManagerCreateAction>(new CreateFileAction());
|
||||||
|
|
|
@ -95,7 +95,8 @@ else
|
||||||
OnEntryClicked="OnEntryClicked"
|
OnEntryClicked="OnEntryClicked"
|
||||||
OnNavigateUpClicked="OnNavigateUpClicked"
|
OnNavigateUpClicked="OnNavigateUpClicked"
|
||||||
OnSelectionChanged="OnSelectionChanged"
|
OnSelectionChanged="OnSelectionChanged"
|
||||||
EnableContextMenu="true">
|
EnableContextMenu="true"
|
||||||
|
ShowUploadPrompt="true">
|
||||||
<ContextMenuTemplate>
|
<ContextMenuTemplate>
|
||||||
@foreach (var action in ContextActions)
|
@foreach (var action in ContextActions)
|
||||||
{
|
{
|
||||||
|
|
|
@ -210,7 +210,7 @@
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
@if (Entries.Length == 0)
|
@if (Entries.Length == 0 && ShowUploadPrompt)
|
||||||
{
|
{
|
||||||
<div class="py-4">
|
<div class="py-4">
|
||||||
<IconAlert Color="primary" Title="No files and folders found" Icon="bx-cloud-upload">
|
<IconAlert Color="primary" Title="No files and folders found" Icon="bx-cloud-upload">
|
||||||
|
@ -240,6 +240,7 @@
|
||||||
[Parameter] public bool ShowDate { get; set; } = true;
|
[Parameter] public bool ShowDate { get; set; } = true;
|
||||||
[Parameter] public bool ShowSelect { get; set; } = true;
|
[Parameter] public bool ShowSelect { get; set; } = true;
|
||||||
[Parameter] public bool ShowNavigateUp { get; set; } = true;
|
[Parameter] public bool ShowNavigateUp { get; set; } = true;
|
||||||
|
[Parameter] public bool ShowUploadPrompt { get; set; } = false;
|
||||||
|
|
||||||
[Parameter] public RenderFragment<FileEntry>? ContextMenuTemplate { get; set; }
|
[Parameter] public RenderFragment<FileEntry>? ContextMenuTemplate { get; set; }
|
||||||
[Parameter] public bool EnableContextMenu { get; set; } = false;
|
[Parameter] public bool EnableContextMenu { get; set; } = false;
|
||||||
|
|
Loading…
Reference in a new issue