Airing page
This commit is contained in:
parent
5bd00fae0f
commit
da96ad60e7
@ -27,6 +27,7 @@ component Navigation
|
||||
NavigationButton("Anime", "/anime", "television")
|
||||
NavigationButton("Forum", "/forum", "comment")
|
||||
NavigationButton("Genres", "/genres", "tags")
|
||||
NavigationButton("Airing", "/airing", "rss")
|
||||
|
||||
component NavigationButton(name string, target string, icon string)
|
||||
a.navigation-link.navigation-link-left.ajax(href=target)
|
||||
|
2
main.go
2
main.go
@ -6,6 +6,7 @@ import (
|
||||
"github.com/aerogo/aero"
|
||||
"github.com/animenotifier/arn"
|
||||
"github.com/animenotifier/notify.moe/components"
|
||||
"github.com/animenotifier/notify.moe/pages/airing"
|
||||
"github.com/animenotifier/notify.moe/pages/anime"
|
||||
"github.com/animenotifier/notify.moe/pages/dashboard"
|
||||
"github.com/animenotifier/notify.moe/pages/forum"
|
||||
@ -55,6 +56,7 @@ func main() {
|
||||
app.Ajax("/threads/:id", threads.Get)
|
||||
app.Ajax("/posts/:id", posts.Get)
|
||||
app.Ajax("/user/:nick", profile.Get)
|
||||
app.Ajax("/airing", airing.Get)
|
||||
|
||||
app.Run()
|
||||
}
|
||||
|
5
mixins/AnimeGrid.pixy
Normal file
5
mixins/AnimeGrid.pixy
Normal file
@ -0,0 +1,5 @@
|
||||
component AnimeGrid(animeList []*arn.Anime)
|
||||
.grid
|
||||
each anime in animeList
|
||||
a.grid-cell.grid-anime.ajax(href="/anime/" + toString(anime.ID))
|
||||
img.anime-image.grid-image(src=anime.Image, alt=anime.Title.Romaji, title=anime.Title.Romaji + " (" + toString(anime.Watching) + ")")
|
29
pages/airing/airing.go
Normal file
29
pages/airing/airing.go
Normal file
@ -0,0 +1,29 @@
|
||||
package airing
|
||||
|
||||
import (
|
||||
"sort"
|
||||
|
||||
"github.com/aerogo/aero"
|
||||
"github.com/animenotifier/arn"
|
||||
"github.com/animenotifier/notify.moe/components"
|
||||
)
|
||||
|
||||
// Get ...
|
||||
func Get(ctx *aero.Context) string {
|
||||
var animeList []*arn.Anime
|
||||
|
||||
scan := make(chan *arn.Anime)
|
||||
arn.Scan("Anime", scan)
|
||||
|
||||
for anime := range scan {
|
||||
if anime.AiringStatus != "currently airing" || anime.Adult {
|
||||
continue
|
||||
}
|
||||
|
||||
animeList = append(animeList, anime)
|
||||
}
|
||||
|
||||
sort.Sort(arn.AnimeByPopularity(animeList))
|
||||
|
||||
return ctx.HTML(components.Airing(animeList))
|
||||
}
|
3
pages/airing/airing.pixy
Normal file
3
pages/airing/airing.pixy
Normal file
@ -0,0 +1,3 @@
|
||||
component Airing(animeList []*arn.Anime)
|
||||
h2 Airing
|
||||
AnimeGrid(animeList)
|
@ -1,6 +1,3 @@
|
||||
component Genre(genre *arn.Genre)
|
||||
h2= arn.Capitalize(genre.ID)
|
||||
.grid
|
||||
each anime in genre.AnimeList
|
||||
a.grid-cell.grid-anime.ajax(href="/anime/" + toString(anime.ID))
|
||||
img.anime-image.grid-image(src=anime.Image, alt=anime.Title.Romaji, title=anime.Title.Romaji + " (" + toString(anime.Watching) + ")")
|
||||
AnimeGrid(genre.AnimeList)
|
Loading…
Reference in New Issue
Block a user