mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 19:32:10 +00:00
61 lines
2.8 KiB
Plaintext
61 lines
2.8 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">
|
|
@if (this.ShowAttachedDocumentState && this.hasLoadedFileContent)
|
|
{
|
|
<MudTooltip Text="@this.FileLoadedTooltip()">
|
|
<MudBadge Icon="@Icons.Material.Filled.Check" Color="Color.Success" Overlap="true">
|
|
<MudButton StartIcon="@Icons.Material.Filled.Description" OnClick="@(async () => await this.SelectFile())" Variant="Variant.Filled" Disabled="@this.IsUnavailable">
|
|
@this.ButtonText
|
|
</MudButton>
|
|
</MudBadge>
|
|
</MudTooltip>
|
|
}
|
|
else
|
|
{
|
|
<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">
|
|
@if (this.ShowAttachedDocumentState && this.hasLoadedFileContent)
|
|
{
|
|
<MudTooltip Text="@this.FileLoadedTooltip()">
|
|
<MudBadge Icon="@Icons.Material.Filled.Check" Color="Color.Success" Overlap="true">
|
|
<MudButton StartIcon="@Icons.Material.Filled.Description" OnClick="@(async () => await this.SelectFile())" Variant="Variant.Filled" Disabled="@this.IsUnavailable">
|
|
@this.ButtonText
|
|
</MudButton>
|
|
</MudBadge>
|
|
</MudTooltip>
|
|
}
|
|
else
|
|
{
|
|
<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>
|
|
} |