mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 15:41:37 +00:00
Some checks are pending
Build and Release / Read metadata (push) Waiting to run
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage deb updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage deb updater) (push) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
86 lines
3.9 KiB
Plaintext
86 lines
3.9 KiB
Plaintext
@inherits MSGComponentBase
|
|
|
|
<MudDialog>
|
|
<DialogContent>
|
|
<MudJustifiedText Typo="Typo.body1" Class="mb-3">
|
|
@T("See how we load your file. Review the content before we process it further.")
|
|
</MudJustifiedText>
|
|
|
|
@if (this.Document is null)
|
|
{
|
|
<ReadFileContent Text="@T("Load file")" @bind-FileContent="@this.FileContent"/>
|
|
}
|
|
else
|
|
{
|
|
<MudTextField
|
|
T="string"
|
|
Text="@this.Document.FilePath"
|
|
AdornmentIcon="@Icons.Material.Filled.FileOpen"
|
|
Adornment="Adornment.Start"
|
|
Immediate="@true"
|
|
Label="@T("File Path")"
|
|
Variant="Variant.Outlined"
|
|
Lines="1"
|
|
MaxLines="3"
|
|
Class="mt-10"
|
|
ReadOnly="true"
|
|
/>
|
|
}
|
|
|
|
@if (!this.Document?.Exists ?? false)
|
|
{
|
|
<MudAlert Severity="Severity.Error" Variant="Variant.Filled" Class="my-2">
|
|
@T("The specified file could not be found. The file have been moved, deleted, renamed, or is otherwise inaccessible.")
|
|
</MudAlert>
|
|
}
|
|
else
|
|
{
|
|
<MudTabs Elevation="0" Rounded="true" ApplyEffectsToContainer="true" Outlined="true" PanelClass="pa-2" Class="mb-2">
|
|
@if (this.Document?.IsImage ?? false)
|
|
{
|
|
<MudTabPanel Text="@T("Image View")" Icon="@Icons.Material.Filled.Image">
|
|
<MudImage ObjectFit="ObjectFit.ScaleDown" Style="width: 100%;" Src="@this.Document.FilePathAsUrl"/>
|
|
</MudTabPanel>
|
|
}
|
|
else
|
|
{
|
|
<MudTabPanel Text="@T("Markdown View")" Icon="@Icons.Material.Filled.TextSnippet">
|
|
<MudField
|
|
Variant="Variant.Outlined"
|
|
AdornmentIcon="@Icons.Material.Filled.Article"
|
|
Adornment="Adornment.Start"
|
|
Label="@T("Loaded Content")"
|
|
FullWidth="true"
|
|
Class="ma-2 pe-4"
|
|
HelperText="@T("This is the content we loaded from your file — including headings, lists, and formatting. Use this to verify your file loads as expected.")">
|
|
<div style="max-height: 40vh; overflow-y: auto;">
|
|
<MudMarkdown Value="@this.FileContent" Props="Markdown.DefaultConfig" Styling="@this.MarkdownStyling"/>
|
|
</div>
|
|
</MudField>
|
|
</MudTabPanel>
|
|
<MudTabPanel Text="@T("Simple View")" Icon="@Icons.Material.Filled.Terminal">
|
|
<MudTextField
|
|
T="string"
|
|
@bind-Text="@this.FileContent"
|
|
AdornmentIcon="@Icons.Material.Filled.Article"
|
|
Adornment="Adornment.Start"
|
|
Immediate="@true"
|
|
Label="@T("Loaded Content")"
|
|
Variant="Variant.Outlined"
|
|
Lines="6"
|
|
AutoGrow="@true"
|
|
MaxLines="25"
|
|
ReadOnly="true"
|
|
Class="ma-2"
|
|
HelperText="@T("This is the content we loaded from your file — including headings, lists, and formatting. Use this to verify your file loads as expected.")"/>
|
|
</MudTabPanel>
|
|
}
|
|
</MudTabs>
|
|
}
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="@this.Close" Variant="Variant.Filled" Color="Color.Primary">
|
|
@T("Close")
|
|
</MudButton>
|
|
</DialogActions>
|
|
</MudDialog> |