20 lines
No EOL
591 B
Text
20 lines
No EOL
591 B
Text
@using Iceshrimp.Shared.Schemas
|
|
|
|
<div class="attachment-container">
|
|
@foreach (var element in Attachments)
|
|
{
|
|
<div class="wrapper" @onclick="Open">
|
|
<img class="attachment" src="@element.Url" alt="@element.AltText"/>
|
|
</div>
|
|
}
|
|
<AttachmentView @ref="View" Attachments="Attachments"></AttachmentView>
|
|
</div>
|
|
@code {
|
|
[Parameter] [EditorRequired] public IList<NoteAttachment> Attachments { get; set; }
|
|
private AttachmentView View { get; set; }
|
|
|
|
private void Open()
|
|
{
|
|
View.OpenDialog();
|
|
}
|
|
} |