Airing page
This commit is contained in:
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))
|
||||
}
|
Reference in New Issue
Block a user