@page "/{boardName}/thread/{threadId}" @using System.ComponentModel.DataAnnotations @using ImageBoardServerApp.Data.Repository @inject NavigationManager NavigationManager #@threadId on /@boardName/ - BulletBoard

Thread #@threadId on /@boardName/


@foreach (var comment in post.Comments) {
}
@code { [Parameter] [Required] public string boardName { get; set; } [Parameter] [Required] public string threadId { get; set; } private PostData post; protected override async Task OnInitializedAsync() { try { post = await PostsRepository.getPostByGETAsync(boardName, int.Parse(threadId)); } catch (FormatException fe) { NavigationManager.NavigateTo("/notfound"); return; } if(post.Board != boardName) NavigationManager.NavigateTo("/notfound"); if(post == null) NavigationManager.NavigateTo("/notfound"); } }