242 lines
8.4 KiB
Plaintext
242 lines
8.4 KiB
Plaintext
component Anime(anime *arn.Anime, tracks []*arn.SoundTrack, episodes []*arn.AnimeEpisode, friends []*arn.User, listItems map[*arn.User]*arn.AnimeListItem, user *arn.User)
|
|
.anime
|
|
.anime-main-column
|
|
AnimeMainColumn(anime, tracks, episodes, user)
|
|
.anime-side-column
|
|
AnimeSideColumn(anime, friends, listItems, user)
|
|
|
|
component AnimeMainColumn(anime *arn.Anime, tracks []*arn.SoundTrack, episodes []*arn.AnimeEpisode, user *arn.User)
|
|
.anime-header(data-id=anime.ID)
|
|
.anime-image-container.mountable
|
|
img.anime-cover-image.lazy(data-src=anime.Image("large"), data-webp="true", alt=anime.Title.ByUser(user))
|
|
|
|
.space
|
|
|
|
.anime-info
|
|
h1.anime-title.mountable(title=anime.Type)= anime.Title.ByUser(user)
|
|
|
|
h2.anime-alternative-title.mountable
|
|
Japanese(anime.Title.Japanese)
|
|
|
|
p.anime-summary.mountable= anime.Summary
|
|
|
|
.anime-summary-footer-container
|
|
.anime-summary-footer
|
|
AnimeGenres(anime)
|
|
AnimeActions(anime, user)
|
|
|
|
AnimeCharacters(anime)
|
|
AnimeRelations(anime, user)
|
|
AnimeTracks(anime, tracks)
|
|
AnimeEpisodes(episodes)
|
|
|
|
component AnimeSideColumn(anime *arn.Anime, friends []*arn.User, listItems map[*arn.User]*arn.AnimeListItem, user *arn.User)
|
|
AnimeTrailer(anime)
|
|
AnimeInformation(anime)
|
|
AnimeRatings(anime, user)
|
|
AnimePopularity(anime)
|
|
AnimeFriends(friends, listItems)
|
|
AnimeLinks(anime)
|
|
|
|
component AnimeActions(anime *arn.Anime, user *arn.User)
|
|
if user != nil
|
|
.buttons.anime-actions
|
|
if user.Role == "editor" || user.Role == "admin"
|
|
a.button.mountable.ajax(href=anime.Link() + "/edit", data-mountable-type="footer")
|
|
Icon("pencil-square-o")
|
|
span Edit anime
|
|
|
|
if user.AnimeList().Contains(anime.ID)
|
|
a.button.mountable.ajax(href="/+" + user.Nick + "/animelist/anime/" + anime.ID, data-mountable-type="footer")
|
|
Icon("pencil")
|
|
span Edit in collection
|
|
else
|
|
button.mountable.action(data-api="/api/animelist/" + user.ID, data-action="addAnimeToCollection", data-trigger="click", data-anime-id=anime.ID, data-mountable-type="footer")
|
|
Icon("plus")
|
|
span Add to collection
|
|
|
|
component AnimeRatings(anime *arn.Anime, user *arn.User)
|
|
section.anime-section.mountable
|
|
h3.anime-section-name Ratings
|
|
|
|
table.anime-info-table
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key
|
|
if anime.Status == "upcoming"
|
|
span Hype:
|
|
else
|
|
span Overall:
|
|
td.anime-info-value
|
|
Rating(anime.Rating.Overall, user)
|
|
|
|
if anime.Rating.Story > 0
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key Story:
|
|
td.anime-info-value
|
|
Rating(anime.Rating.Story, user)
|
|
|
|
if anime.Rating.Visuals > 0
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key Visuals:
|
|
td.anime-info-value
|
|
Rating(anime.Rating.Visuals, user)
|
|
|
|
if anime.Rating.Soundtrack > 0
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key Soundtrack:
|
|
td.anime-info-value
|
|
Rating(anime.Rating.Soundtrack, user)
|
|
|
|
component AnimePopularity(anime *arn.Anime)
|
|
if anime.Popularity.Total() > 0
|
|
section.anime-section.mountable
|
|
h3.anime-section-name Popularity
|
|
|
|
table.anime-info-table
|
|
if anime.Popularity.Watching > 0
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key Watching:
|
|
td.anime-info-value= anime.Popularity.Watching
|
|
|
|
if anime.Popularity.Completed > 0
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key Completed:
|
|
td.anime-info-value= anime.Popularity.Completed
|
|
|
|
if anime.Popularity.Planned > 0
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key Planned:
|
|
td.anime-info-value= anime.Popularity.Planned
|
|
|
|
if anime.Popularity.Hold > 0
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key On hold:
|
|
td.anime-info-value= anime.Popularity.Hold
|
|
|
|
if anime.Popularity.Dropped > 0
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key Dropped:
|
|
td.anime-info-value= anime.Popularity.Dropped
|
|
|
|
component AnimeLinks(anime *arn.Anime)
|
|
section.anime-section.mountable
|
|
h3.anime-section-name Links
|
|
.light-button-group
|
|
a.light-button(href="https://kitsu.io/anime/" + anime.ID, target="_blank", rel="noopener")
|
|
Icon("external-link")
|
|
span Kitsu
|
|
|
|
each mapping in anime.Mappings
|
|
a.light-button(href=mapping.Link(), target="_blank", rel="noopener")
|
|
Icon("external-link")
|
|
span= mapping.Name()
|
|
|
|
component AnimeGenres(anime *arn.Anime)
|
|
.anime-genres
|
|
each genre in anime.Genres
|
|
a.anime-genre.mountable.ajax(href="/genre/" + strings.ToLower(genre), data-mountable-type="footer")
|
|
span= genre
|
|
|
|
component AnimeRelations(anime *arn.Anime, user *arn.User)
|
|
if anime.Relations() != nil && len(anime.Relations().Items) > 0
|
|
section.anime-section.mountable
|
|
h3.anime-section-name Relations
|
|
.anime-relations
|
|
each relation in anime.Relations().Items
|
|
a.anime-relation.mountable.ajax(href=relation.Anime().Link(), title=relation.Anime().Title.ByUser(user), data-mountable-type="relation")
|
|
img.anime-relation-image.lazy(data-src=relation.Anime().Image("small"), data-webp="true", alt=relation.Anime().Title.ByUser(user))
|
|
.anime-relation-type= relation.HumanReadableType()
|
|
.anime-relation-year
|
|
if relation.Anime().StartDate != ""
|
|
span= relation.Anime().StartDate[:4]
|
|
|
|
component AnimeTrailer(anime *arn.Anime)
|
|
if len(anime.Trailers) > 0 && anime.Trailers[0].Service == "Youtube" && anime.Trailers[0].ServiceID != ""
|
|
section.anime-section.mountable
|
|
h3.anime-section-name Trailer
|
|
.anime-trailer.video-container
|
|
iframe.video(src="https://www.youtube.com/embed/" + anime.Trailers[0].ServiceID + "?showinfo=0", allowfullscreen="allowfullscreen")
|
|
|
|
component AnimeFriends(friends []*arn.User, listItems map[*arn.User]*arn.AnimeListItem)
|
|
if len(friends) > 0
|
|
section.anime-section.mountable
|
|
h3.anime-section-name Friends
|
|
|
|
.anime-friends
|
|
.user-avatars
|
|
each friend in friends
|
|
if friend.Nick != ""
|
|
.mountable(data-mountable-type="friend")
|
|
if friend.IsActive()
|
|
FriendEntry(friend, listItems)
|
|
else
|
|
.inactive-user
|
|
FriendEntry(friend, listItems)
|
|
|
|
component AnimeInformation(anime *arn.Anime)
|
|
section.anime-section.mountable
|
|
h3.anime-section-name Information
|
|
table.anime-info-table
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key Type:
|
|
td.anime-info-value= anime.TypeHumanReadable()
|
|
|
|
if anime.EpisodeCount != 0
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key Episodes:
|
|
td.anime-info-value= anime.EpisodeCount
|
|
|
|
if anime.EpisodeLength != 0
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key Episode length:
|
|
td.anime-info-value= strconv.Itoa(anime.EpisodeLength) + " min."
|
|
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key Status:
|
|
td.anime-info-value= anime.StatusHumanReadable()
|
|
|
|
if anime.StartDate == anime.EndDate && anime.StartDate != "" && anime.EndDate != ""
|
|
if anime.StartDate != ""
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key Airing date:
|
|
td.anime-info-value= anime.StartDate
|
|
else
|
|
if anime.StartDate != ""
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key Start date:
|
|
td.anime-info-value= anime.StartDate
|
|
|
|
if anime.EndDate != ""
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key End date:
|
|
td.anime-info-value= anime.EndDate
|
|
|
|
if anime.FirstChannel != ""
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key Channel:
|
|
td.anime-info-value= anime.FirstChannel
|
|
|
|
each company in anime.Studios()
|
|
tr.mountable(data-mountable-type="info")
|
|
td.anime-info-key Studio:
|
|
td.anime-info-value
|
|
a.ajax(href=company.Link())= company.Name.English
|
|
|
|
//- section.anime-section.mountable
|
|
//- h3.anime-section-name Companies
|
|
//- table.anime-info-table
|
|
//- each company in anime.Producers()
|
|
//- tr.mountable(data-mountable-type="info")
|
|
//- td.anime-info-key Producer:
|
|
//- td.anime-info-value
|
|
//- a.ajax(href=company.Link())= company.Name.English
|
|
|
|
//- each company in anime.Licensors()
|
|
//- tr.mountable(data-mountable-type="info")
|
|
//- td.anime-info-key Licensor:
|
|
//- td.anime-info-value
|
|
//- a.ajax(href=company.Link())= company.Name.English
|
|
|
|
component FriendEntry(friend *arn.User, listItems map[*arn.User]*arn.AnimeListItem)
|
|
CustomAvatar(friend, listItems[friend].Link(friend.Nick), friend.Nick + " => " + listItems[friend].Status + " | " + toString(listItems[friend].Episodes) + " eps | " + fmt.Sprintf("%.1f", listItems[friend].Rating.Overall) + " rating")
|