Improved profile

This commit is contained in:
2017-07-03 17:21:00 +02:00
parent e6d18f2e1d
commit dd974ed99a
14 changed files with 180 additions and 92 deletions

View File

@ -1,30 +1,35 @@
component AnimeLists(animeLists map[string]*arn.AnimeList, viewUser *arn.User, user *arn.User)
h2.anime-list-owner= viewUser.Nick + "'s collection"
ProfileHeader(viewUser, user)
if len(animeLists[arn.AnimeListStatusWatching].Items) > 0
.anime-list-container
h3.status-name Watching
AnimeList(animeLists[arn.AnimeListStatusWatching], viewUser, user)
h2.page-title.anime-list-owner= viewUser.Nick + "'s collection"
if len(animeLists[arn.AnimeListStatusCompleted].Items) > 0
.anime-list-container
h3.status-name Completed
AnimeList(animeLists[arn.AnimeListStatusCompleted], viewUser, user)
if len(animeLists[arn.AnimeListStatusWatching].Items) == 0 && len(animeLists[arn.AnimeListStatusCompleted].Items) == 0 && len(animeLists[arn.AnimeListStatusPlanned].Items) == 0 && len(animeLists[arn.AnimeListStatusHold].Items) == 0 && len(animeLists[arn.AnimeListStatusDropped].Items) == 0
p.no-data No anime in the collection.
else
if len(animeLists[arn.AnimeListStatusWatching].Items) > 0
.anime-list-container
h3.status-name Watching
AnimeList(animeLists[arn.AnimeListStatusWatching], viewUser, user)
if len(animeLists[arn.AnimeListStatusPlanned].Items) > 0
.anime-list-container
h3.status-name Planned
AnimeList(animeLists[arn.AnimeListStatusPlanned], viewUser, user)
if len(animeLists[arn.AnimeListStatusCompleted].Items) > 0
.anime-list-container
h3.status-name Completed
AnimeList(animeLists[arn.AnimeListStatusCompleted], viewUser, user)
if len(animeLists[arn.AnimeListStatusHold].Items) > 0
.anime-list-container
h3.status-name On hold
AnimeList(animeLists[arn.AnimeListStatusHold], viewUser, user)
if len(animeLists[arn.AnimeListStatusPlanned].Items) > 0
.anime-list-container
h3.status-name Planned
AnimeList(animeLists[arn.AnimeListStatusPlanned], viewUser, user)
if len(animeLists[arn.AnimeListStatusDropped].Items) > 0
.anime-list-container
h3.status-name Dropped
AnimeList(animeLists[arn.AnimeListStatusDropped], viewUser, user)
if len(animeLists[arn.AnimeListStatusHold].Items) > 0
.anime-list-container
h3.status-name On hold
AnimeList(animeLists[arn.AnimeListStatusHold], viewUser, user)
if len(animeLists[arn.AnimeListStatusDropped].Items) > 0
.anime-list-container
h3.status-name Dropped
AnimeList(animeLists[arn.AnimeListStatusDropped], viewUser, user)
//- for status, animeList := range animeLists
//- h3= status

View File

@ -16,7 +16,7 @@ component Forum(tag string, threads []*arn.Thread, threadsPerPage int)
component ThreadList(threads []*arn.Thread)
if len(threads) == 0
p No threads found.
p.no-data No threads found.
else
each thread in threads
ThreadLink(thread)

View File

@ -6,6 +6,7 @@ import (
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/utils"
)
const postLimit = 10
@ -13,13 +14,13 @@ 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)
viewUser, err := arn.GetUserByNick(nick)
if err != nil {
return ctx.Error(http.StatusNotFound, "User not found", err)
}
posts := user.Posts()
posts := viewUser.Posts()
arn.SortPostsLatestFirst(posts)
var postables []arn.Postable
@ -34,6 +35,6 @@ func GetPostsByUser(ctx *aero.Context) string {
postables[i] = arn.ToPostable(post)
}
return ctx.HTML(components.LatestPosts(postables, user))
return ctx.HTML(components.LatestPosts(postables, viewUser, utils.GetUser(ctx)))
}

View File

@ -1,6 +1,8 @@
component LatestPosts(postables []arn.Postable, viewUser *arn.User)
component LatestPosts(postables []arn.Postable, viewUser *arn.User, user *arn.User)
ProfileHeader(viewUser, user)
if len(postables) > 0
h2.thread-title= len(postables), " latest posts by ", postables[0].Author().Nick
h2.page-title= len(postables), " latest posts by ", postables[0].Author().Nick
PostableList(postables)
else
p= viewUser.Nick + " hasn't written any posts yet."

View File

@ -2,10 +2,10 @@ component ProfileHeader(viewUser *arn.User, user *arn.User)
.profile
img.profile-cover(src=viewUser.CoverImageURL(), alt="Cover image")
.image-container.mountable
.image-container.mountable.never-unmount
ProfileImage(viewUser)
.intro-container.mountable
.intro-container.mountable.never-unmount
h2#nick= viewUser.Nick
if viewUser.Tagline != ""
@ -43,58 +43,78 @@ component ProfileHeader(viewUser *arn.User, user *arn.User)
p.profile-field.role
Icon("rocket")
span= arn.Capitalize(viewUser.Role)
ProfileNavigation(viewUser)
component ProfileNavigation(viewUser *arn.User)
.buttons.tabs
a.button.tab.action(href="/+" + viewUser.Nick, data-action="diff", data-trigger="click")
Icon("th")
span.tab-text Anime
a.button.tab.action(href="/+" + viewUser.Nick + "/animelist", data-action="diff", data-trigger="click")
Icon("list")
span.tab-text List
a.button.tab.action(href="/+" + viewUser.Nick + "/threads", data-action="diff", data-trigger="click")
Icon("comment")
span.tab-text Threads
a.button.tab.action(href="/+" + viewUser.Nick + "/posts", data-action="diff", data-trigger="click")
Icon("comments")
span.tab-text Posts
a.button.tab.action(href="/+" + viewUser.Nick + "/tracks", data-action="diff", data-trigger="click")
Icon("music")
span.tab-text Tracks
component Profile(viewUser *arn.User, user *arn.User, animeList *arn.AnimeList, threads []*arn.Thread, posts []*arn.Post, tracks []*arn.SoundTrack)
ProfileHeader(viewUser, user)
.profile-category.mountable
h3
a.ajax(href="/+" + viewUser.Nick + "/animelist", title="View all anime") Anime
.profile-watching-list
if len(animeList.Items) == 0
p No anime in the collection.
else
each item in animeList.Items
a.profile-watching-list-item.ajax(href=item.Anime().Link(), title=item.Anime().Title.Canonical + " (" + toString(item.Episodes) + " / " + arn.EpisodesToString(item.Anime().EpisodeCount) + ")")
img.anime-cover-image.profile-watching-list-item-image.lazy(data-src=item.Anime().Image.Tiny, alt=item.Anime().Title.Canonical)
.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.
.profile-watching-list.mountable
if len(animeList.Items) == 0
p.no-data No anime in the collection.
else
each thread in threads
ThreadLink(thread)
each item in animeList.Items
a.profile-watching-list-item.ajax(href=item.Anime().Link(), title=item.Anime().Title.Canonical + " (" + toString(item.Episodes) + " / " + arn.EpisodesToString(item.Anime().EpisodeCount) + ")")
img.anime-cover-image.profile-watching-list-item-image.lazy(data-src=item.Anime().Image.Tiny, alt=item.Anime().Title.Canonical)
.profile-category.mountable
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
div!= post.HTML()
.post-toolbar.active
.spacer
.post-likes= len(post.Likes)
.profile-category.mountable
h3
a.ajax(href="/+" + viewUser.Nick + "/tracks", title="View all tracks") Tracks
//- .profile-category.mountable
//- h3
//- a.ajax(href="/+" + viewUser.Nick + "/threads", title="View all threads") Threads
if len(tracks) == 0
p No soundtracks posted yet.
else
.sound-tracks
each track in tracks
SoundTrack(track)
//- if len(threads) == 0
//- p No threads on the forum.
//- else
//- each thread in threads
//- ThreadLink(thread)
//- .profile-category.mountable
//- 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
//- div!= post.HTML()
//- .post-toolbar.active
//- .spacer
//- .post-likes= len(post.Likes)
//- .profile-category.mountable
//- h3
//- a.ajax(href="/+" + viewUser.Nick + "/tracks", title="View all tracks") Tracks
//- if len(tracks) == 0
//- p No soundtracks posted yet.
//- else
//- .sound-tracks
//- each track in tracks
//- SoundTrack(track)
//- if user != nil && user.Role == "admin"
//- .footer

View File

@ -88,5 +88,5 @@ profile-boot-duration = 2s
// Categories
.profile-category
margin-bottom content-padding
// .profile-category
// margin-bottom content-padding

View File

@ -6,19 +6,20 @@ import (
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/utils"
)
// GetThreadsByUser shows all forum threads of a particular user.
func GetThreadsByUser(ctx *aero.Context) string {
nick := ctx.Get("nick")
user, err := arn.GetUserByNick(nick)
viewUser, err := arn.GetUserByNick(nick)
if err != nil {
return ctx.Error(http.StatusNotFound, "User not found", err)
}
threads := user.Threads()
threads := viewUser.Threads()
arn.SortThreadsLatestFirst(threads)
return ctx.HTML(components.ThreadList(threads))
return ctx.HTML(components.ProfileThreads(threads, viewUser, utils.GetUser(ctx)))
}

View File

@ -0,0 +1,5 @@
component ProfileThreads(threads []*arn.Thread, viewUser *arn.User, user *arn.User)
ProfileHeader(viewUser, user)
.forum
ThreadList(threads)

View File

@ -1,6 +1,12 @@
component TrackList(tracks []*arn.SoundTrack, viewUser *arn.User, user *arn.User)
h2= "Tracks added by " + viewUser.Nick
.sound-tracks
each track in tracks
SoundTrack(track)
ProfileHeader(viewUser, user)
h2.page-title= "Tracks added by " + viewUser.Nick
if len(tracks) == 0
p.no-data No tracks added.
else
.sound-tracks
each track in tracks
SoundTrack(track)

View File

@ -1,5 +1,6 @@
.profile-watching-list
horizontal-wrap
justify-content center
.profile-watching-list-item
margin 0.25rem
@ -8,6 +9,6 @@
width 55px !important
border-radius 2px
< 380px
.profile-watching-list
justify-content center
// < 380px
// .profile-watching-list
// justify-content center

View File

@ -4,7 +4,7 @@ component SearchResults(users []*arn.User, animeResults []*arn.Anime)
h3 Users
.user-avatars.user-search
if len(users) == 0
p No users found.
p.no-data No users found.
else
each user in users
.mountable(data-mountable-type="user")
@ -15,7 +15,7 @@ component SearchResults(users []*arn.User, animeResults []*arn.Anime)
h3 Anime
.profile-watching-list.anime-search
if len(animeResults) == 0
p No anime found.
p.no-data No anime found.
else
each anime in animeResults
a.profile-watching-list-item.mountable.ajax(href=anime.Link(), title=anime.Title.Canonical, data-mountable-type="anime")