Wave/Wave/Components/Pages/ArticleView.razor

74 lines
2.4 KiB
Plaintext

@page "/article/{id:guid}"
@using Microsoft.EntityFrameworkCore
@using Wave.Data
@using Humanizer
@using System.Globalization
@inject IDbContextFactory<ApplicationDbContext> ContextFactory;
@inject IStringLocalizer<ArticleView> Localizer
<PageTitle>Wave - @Article.Title</PageTitle>
<h1 class="text-3xl lg:text-5xl font-light">@Article.Title</h1>
<AuthorizeView>
<Authorized>
<a class="btn btn-info my-3" href="article/@Article.Id/edit">Edit</a>
</Authorized>
</AuthorizeView>
<p class="mb-6">
<small class="text-sm text-neutral-content">
<time datetime="@Article.PublishDate.ToString("u")"
title="@Article.PublishDate.ToString("g")">
@Article.PublishDate.Humanize()
</time>
@if (Article.LastModified is not null) {
<time datetime="@Article.LastModified.Value.ToString("u")"
title="@Article.LastModified.Value.ToString("g")">
&ensp;(@Localizer["ModifiedOn"] @Article.LastModified.Humanize())
</time>
}
</small>
</p>
<hr class="my-3" />
<div class="prose prose-neutral max-w-none mb-6">
@Content
</div>
<hr class="my-3" />
<div class="flex gap-2">
<ProfilePill Profile="Article.Author" RoleTag="@Localizer["Author"]" />
@if (Article.Reviewer is not null && Article.Reviewer.Id != Article.Author.Id) {
<ProfilePill Profile="Article.Reviewer" RoleTag="@Localizer["Reviewer"]" />
}
</div>
@code {
[Parameter]
public Guid Id { get; set; }
private Article Article { get; set; } = null!;
private MarkupString Content => new(Article.BodyHtml);
protected override async Task OnInitializedAsync() {
// We need blocking calls here, bc otherwise Blazor will execute Render in parallel,
// running into a null pointer on the Article property and panicking
// ReSharper disable once MethodHasAsyncOverload
await using var context = ContextFactory.CreateDbContext();
// ReSharper disable once MethodHasAsyncOverload
var now = DateTimeOffset.UtcNow;
Article = context.Set<Article>()
.Include(a => a.Author)
.Include(a => a.Reviewer)
.Where(a => a.Status >= ArticleStatus.Published && a.PublishDate <= now)
.First(a => a.Id == Id);
if (Article is null) throw new ApplicationException("Article not found.");
}
}