48 lines
908 B
Go
Raw Normal View History

2017-10-06 20:07:12 +00:00
package editor
2017-07-08 19:11:03 +00:00
import (
"sort"
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
"github.com/animenotifier/notify.moe/components"
)
2017-10-06 20:07:12 +00:00
const maxAniListEntries = 70
2017-10-02 12:56:51 +00:00
// AniList ...
func AniList(ctx *aero.Context) string {
2017-10-27 07:11:56 +00:00
missing := arn.FilterAnime(func(anime *arn.Anime) bool {
2017-07-08 19:11:03 +00:00
return anime.GetMapping("anilist/anime") == ""
})
sort.Slice(missing, func(i, j int) bool {
2017-10-06 20:07:12 +00:00
a := missing[i]
b := missing[j]
aPop := a.Popularity.Total()
bPop := b.Popularity.Total()
if aPop == bPop {
return a.Title.Canonical < b.Title.Canonical
}
return aPop > bPop
2017-07-08 19:11:03 +00:00
})
count := len(missing)
if count > maxAniListEntries {
2017-10-06 20:07:12 +00:00
missing = missing[:maxAniListEntries]
}
return ctx.HTML(components.AnimeEditorListFull(
"Anime without Anilist links",
missing,
count,
func(anime *arn.Anime) string {
return "https://anilist.co/search?type=anime&q=" + anime.Title.Canonical
},
))
2017-07-08 19:11:03 +00:00
}