feat: started working on thread view
This commit is contained in:
parent
6b919e0b7b
commit
585440d10f
5 changed files with 12 additions and 6 deletions
|
@ -31,7 +31,7 @@ public class PostData
|
|||
[Required]
|
||||
public string Content { get; set; }
|
||||
|
||||
public string Interactions { get; set; }
|
||||
public int Interactions { get; set; }
|
||||
|
||||
[Required]
|
||||
public long CreatedAt { get; set; }
|
||||
|
|
|
@ -16,6 +16,7 @@ public static class PostsRepository
|
|||
return await db.Posts
|
||||
.Where(post => post.Board.Equals(board))
|
||||
.Include(post => post.Image)
|
||||
.Include(post => post.Comments)
|
||||
.ToListAsync();
|
||||
}
|
||||
|
||||
|
|
8
ImageBoardServerApp/Pages/Thread.razor
Normal file
8
ImageBoardServerApp/Pages/Thread.razor
Normal file
|
@ -0,0 +1,8 @@
|
|||
@page "/{board}/thread/{threadId}"
|
||||
<h3>Thread #xx on /x/</h3>
|
||||
|
||||
@RouteData.Values["title"]
|
||||
|
||||
@code {
|
||||
|
||||
}
|
|
@ -37,7 +37,7 @@
|
|||
<a class="report" href="/report/@post.Board/@post.PostID" target="_blank">Report</a>
|
||||
<span>]</span>
|
||||
<span>[</span>
|
||||
<a class="openThread" href="/@post.Board/@post.PostID" target="_blank">(@post.Interactions) Open Thread</a>
|
||||
<a class="openThread" href="/@post.Board/thread/@post.PostID" target="_blank">(@post.Comments.Count) Open Thread</a>
|
||||
<span>]</span>
|
||||
</div>
|
||||
}
|
||||
|
@ -45,9 +45,6 @@
|
|||
|
||||
|
||||
@code {
|
||||
|
||||
|
||||
|
||||
private static DateTime getTimeFromUnix(double javaTimeStamp)
|
||||
{
|
||||
var dateTime = new DateTime(1970, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc);
|
||||
|
|
|
@ -118,7 +118,7 @@
|
|||
Username = postUsername,
|
||||
Title = postTitle,
|
||||
Content = postContent,
|
||||
Interactions = "",
|
||||
Interactions = 0,
|
||||
CreatedAt = DateTimeOffset.Now.ToUnixTimeMilliseconds(),
|
||||
Board = board.Tag
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue