From e652e6655f6ac37281dc2f506fb4bc41d4bb6250 Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Thu, 22 Jun 2017 18:04:14 +0200 Subject: [PATCH] Improved composability --- mixins/PostableList.pixy | 4 +++- pages/profile/posts.go | 2 +- pages/profile/posts.pixy | 6 ++++++ 3 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 pages/profile/posts.pixy diff --git a/mixins/PostableList.pixy b/mixins/PostableList.pixy index ce6f4c10..93855fcd 100644 --- a/mixins/PostableList.pixy +++ b/mixins/PostableList.pixy @@ -1,16 +1,18 @@ component PostableList(postables []arn.Postable) - 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 index df2e71d9..9f91239a 100644 --- a/pages/profile/posts.go +++ b/pages/profile/posts.go @@ -34,6 +34,6 @@ func GetPostsByUser(ctx *aero.Context) string { postables[i] = arn.ToPostable(post) } - return ctx.HTML(components.PostableList(postables)) + return ctx.HTML(components.LatestPosts(postables, user)) } diff --git a/pages/profile/posts.pixy b/pages/profile/posts.pixy new file mode 100644 index 00000000..5d18a568 --- /dev/null +++ b/pages/profile/posts.pixy @@ -0,0 +1,6 @@ +component LatestPosts(postables []arn.Postable, viewUser *arn.User) + if len(postables) > 0 + h2.thread-title= len(postables), " latest posts by ", postables[0].Author().Nick + PostableList(postables) + else + p= viewUser.Nick + " hasn't written any posts yet." \ No newline at end of file