mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 20:12:12 +00:00
33 lines
1.5 KiB
Plaintext
33 lines
1.5 KiB
Plaintext
@inherits MSGComponentBase
|
|
|
|
@if (this.EnableDragDrop)
|
|
{
|
|
<div @onmouseenter="@this.OnMouseEnter" @onmouseleave="@this.OnMouseLeave">
|
|
<MudPaper Outlined="true" Class="@this.dragClass">
|
|
<MudStack Row="true" AlignItems="AlignItems.Center" StretchItems="StretchItems.None" Wrap="Wrap.Wrap">
|
|
<MudButton StartIcon="@Icons.Material.Filled.Description" OnClick="@(async () => await this.SelectFile())" Variant="Variant.Filled" Disabled="@this.IsUnavailable">
|
|
@this.ButtonText
|
|
</MudButton>
|
|
@if (this.IsCurrentTargetBusy)
|
|
{
|
|
<MediaTranscriptionStatus Owner="@this.EffectiveImportOwner" TargetId="@this.EffectiveMediaImportTarget.TargetId" Compact="true"/>
|
|
}
|
|
else
|
|
{
|
|
<MudText Typo="Typo.body2">
|
|
@T("Drop one file here to load its content.")
|
|
</MudText>
|
|
}
|
|
</MudStack>
|
|
</MudPaper>
|
|
</div>
|
|
}
|
|
else
|
|
{
|
|
<MudStack Row="true" AlignItems="AlignItems.Center" StretchItems="StretchItems.None" Wrap="Wrap.Wrap" Class="mb-3">
|
|
<MudButton StartIcon="@Icons.Material.Filled.Description" OnClick="@(async () => await this.SelectFile())" Variant="Variant.Filled" Disabled="@this.IsUnavailable">
|
|
@this.ButtonText
|
|
</MudButton>
|
|
<MediaTranscriptionStatus Owner="@this.EffectiveImportOwner" TargetId="@this.EffectiveMediaImportTarget.TargetId" Compact="true"/>
|
|
</MudStack>
|
|
} |