Files
qbtmud/Lantean.QBTMudBlade/Components/Dialogs/AddTorrentFileDialog.razor.cs
2024-04-22 14:15:07 +01:00

34 lines
986 B
C#

using Lantean.QBTMudBlade.Models;
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Forms;
using Microsoft.AspNetCore.Components.Web;
using MudBlazor;
namespace Lantean.QBTMudBlade.Components.Dialogs
{
public partial class AddTorrentFileDialog
{
[CascadingParameter]
public MudDialogInstance MudDialog { get; set; } = default!;
protected IReadOnlyList<IBrowserFile> Files { get; set; } = [];
protected AddTorrentOptions TorrentOptions { get; set; } = default!;
protected void UploadFiles(IReadOnlyList<IBrowserFile> files)
{
Files = files;
}
protected void Cancel(MouseEventArgs args)
{
MudDialog.Cancel();
}
protected void Submit(MouseEventArgs args)
{
var options = new AddTorrentFileOptions(Files, TorrentOptions.GetTorrentOptions());
MudDialog.Close(DialogResult.Ok(options));
}
}
}