diff --git a/main.go b/main.go index 60dd7a12..4e277623 100644 --- a/main.go +++ b/main.go @@ -61,6 +61,7 @@ func configure(app *aero.Application) *aero.Application { app.Ajax("/user", user.Get) app.Ajax("/user/:nick", profile.Get) app.Ajax("/user/:nick/threads", profile.GetThreadsByUser) + app.Ajax("/user/:nick/posts", profile.GetPostsByUser) app.Ajax("/user/:nick/animelist", animelist.Get) app.Ajax("/user/:nick/animelist/:id", animelistitem.Get) app.Ajax("/settings", settings.Get) diff --git a/mixins/PostableList.pixy b/mixins/PostableList.pixy index d7f6af2e..ce6f4c10 100644 --- a/mixins/PostableList.pixy +++ b/mixins/PostableList.pixy @@ -1,3 +1,16 @@ component PostableList(postables []arn.Postable) - each post in postables - a.ajax(href=post.Link())= post.Title() \ No newline at end of file + h2.thread-title= len(postables), " latest posts by ", postables[0].Author().Nick + .thread + .posts + each post in postables + .post + .post-author + Avatar(post.Author()) + .post-content + p!= aero.Markdown(post.Text()) + .post-toolbar + .spacer + .post-likes= len(post.Likes()) + a.post-tool.post-permalink.ajax(href=post.Link(), title="Permalink") + Icon("link") + a.post-link.side-note.ajax(href=post.Link())= post.Title() diff --git a/pages/profile/posts.go b/pages/profile/posts.go new file mode 100644 index 00000000..ea60c93e --- /dev/null +++ b/pages/profile/posts.go @@ -0,0 +1,41 @@ +package profile + +import ( + "net/http" + + "github.com/aerogo/aero" + "github.com/animenotifier/arn" + "github.com/animenotifier/notify.moe/components" +) + +const postLimit = 10 + +// GetPostsbyUser shows all forum posts of a particular user. +func GetPostsByUser(ctx *aero.Context) string { + nick := ctx.Get("nick") + user, err := arn.GetUserByNick(nick) + + if err != nil { + return ctx.Error(http.StatusNotFound, "User not found", err) + } + + posts := user.Posts() + arn.SortPostsLatestLast(posts) + + var postables []arn.Postable + + if len(posts) >= postLimit { + posts = posts[:postLimit] + } + + postables = make([]arn.Postable, len(posts), len(posts)) + + for i, post := range posts { + + postables[i] = arn.ToPostable(post) + + } + + return ctx.HTML(components.PostableList(postables)) + +} diff --git a/pages/profile/profile.go b/pages/profile/profile.go index 8cfbeba9..185d41a7 100644 --- a/pages/profile/profile.go +++ b/pages/profile/profile.go @@ -26,6 +26,7 @@ func Profile(ctx *aero.Context, viewUser *arn.User) string { var user *arn.User var threads []*arn.Thread var animeList *arn.AnimeList + var posts []*arn.Post aero.Parallel(func() { user = utils.GetUser(ctx) @@ -39,7 +40,13 @@ func Profile(ctx *aero.Context, viewUser *arn.User) string { if len(threads) > maxPosts { threads = threads[:maxPosts] } + }, func() { + posts = viewUser.Posts() + + if len(posts) > maxPosts { + posts = posts[:maxPosts] + } }) - return ctx.HTML(components.Profile(viewUser, user, animeList, threads)) + return ctx.HTML(components.Profile(viewUser, user, animeList, threads, posts)) } diff --git a/pages/profile/profile.pixy b/pages/profile/profile.pixy index 352cbf32..5e5369ba 100644 --- a/pages/profile/profile.pixy +++ b/pages/profile/profile.pixy @@ -4,7 +4,7 @@ component ProfileHeader(viewUser *arn.User, user *arn.User) .image-container.mountable ProfileImage(viewUser) - + .intro-container.mountable h2#nick= viewUser.Nick @@ -16,37 +16,37 @@ component ProfileHeader(viewUser *arn.User, user *arn.User) p.profile-field.tagline Icon("comment") span.tagline-text No tagline yet. - + if viewUser.Website != "" p.profile-field.website Icon("home") a(href=viewUser.WebsiteURL(), target="_blank", rel="nofollow")= viewUser.Website - + if viewUser.Accounts.Osu.Nick != "" && viewUser.Accounts.Osu.PP >= 1000 p.profile-field.osu(title="osu! performance points") Icon("trophy") span= toString(int(viewUser.Accounts.Osu.PP)) + " pp" - + //- if viewUser.dataEditCount //- p.profile-field.editor-contribution(title="Anime data modifications") //- Icon("edit") //- span= viewUser.dataEditCount - + if viewUser.Registered != "" p.profile-field.registration-date(title="Member since") Icon("calendar") //- span= time.Parse(time.RFC3339, viewUser.Registered) span= viewUser.RegisteredTime().Format("Jan 2006") //- span= monthNames[joined.getMonth()] + ' ' + joined.getFullYear() - + if viewUser.Role != "" p.profile-field.role Icon("rocket") span= arn.Capitalize(viewUser.Role) -component Profile(viewUser *arn.User, user *arn.User, animeList *arn.AnimeList, threads []*arn.Thread) +component Profile(viewUser *arn.User, user *arn.User, animeList *arn.AnimeList, threads []*arn.Thread, posts []*arn.Post) ProfileHeader(viewUser, user) - + .profile-category.mountable h3 a.ajax(href="/+" + viewUser.Nick + "/animelist", title="View all anime") Anime @@ -62,10 +62,23 @@ component Profile(viewUser *arn.User, user *arn.User, animeList *arn.AnimeList, .profile-category.mountable h3 a.ajax(href="/+" + viewUser.Nick + "/threads", title="View all threads") Threads - + if len(threads) == 0 p No threads on the forum. else each thread in threads ThreadLink(thread) - \ No newline at end of file + h3 + a.ajax(href="/+" + viewUser.Nick + "/posts", title="View all posts") Posts + if len(posts) == 0 + p No posts on the forum. + else + each post in posts + .post + .post-author + Avatar(post.Author()) + .post-content + p!= aero.Markdown(post.Text) + .post-toolbar.active + .spacer + .post-likes= len(post.Likes)