Improved editor list display
This commit is contained in:
@ -24,7 +24,7 @@
|
||||
|
||||
.anime-list-item-image-container
|
||||
padding 0
|
||||
width 39px
|
||||
width anime-image-tiny-width
|
||||
|
||||
.anime-list-item-image-link
|
||||
display flex
|
||||
|
@ -1,6 +1,10 @@
|
||||
.editor-list-title
|
||||
.editor-list-page-title
|
||||
margin-bottom 0
|
||||
|
||||
.editor-list
|
||||
img
|
||||
margin-right 1rem
|
||||
|
||||
.editor-list-entry-count
|
||||
margin-top 0
|
||||
|
||||
|
@ -1,8 +1,6 @@
|
||||
package editor
|
||||
package filteranime
|
||||
|
||||
import (
|
||||
"sort"
|
||||
|
||||
"github.com/aerogo/aero"
|
||||
"github.com/animenotifier/arn"
|
||||
"github.com/animenotifier/notify.moe/components"
|
||||
@ -27,19 +25,7 @@ func AniList(ctx *aero.Context) string {
|
||||
return anime.GetMapping("anilist/anime") == ""
|
||||
})
|
||||
|
||||
sort.Slice(missing, func(i, j int) bool {
|
||||
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
|
||||
})
|
||||
arn.SortAnimeByQuality(missing)
|
||||
|
||||
count := len(missing)
|
||||
|
||||
@ -48,7 +34,7 @@ func AniList(ctx *aero.Context) string {
|
||||
}
|
||||
|
||||
return ctx.HTML(components.AnimeEditorListFull(
|
||||
"Anime without Anilist links",
|
||||
"Anime without Anilist mappings",
|
||||
missing,
|
||||
count,
|
||||
ctx.URI(),
|
@ -1,8 +1,6 @@
|
||||
package editor
|
||||
package filteranime
|
||||
|
||||
import (
|
||||
"sort"
|
||||
|
||||
"github.com/aerogo/aero"
|
||||
"github.com/animenotifier/arn"
|
||||
"github.com/animenotifier/notify.moe/components"
|
||||
@ -27,19 +25,7 @@ func Genres(ctx *aero.Context) string {
|
||||
return len(anime.Genres) == 0
|
||||
})
|
||||
|
||||
sort.Slice(missing, func(i, j int) bool {
|
||||
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
|
||||
})
|
||||
arn.SortAnimeByQuality(missing)
|
||||
|
||||
count := len(missing)
|
||||
|
@ -1,4 +1,4 @@
|
||||
package editor
|
||||
package filteranime
|
||||
|
||||
import (
|
||||
"github.com/aerogo/aero"
|
@ -1,8 +1,6 @@
|
||||
package editor
|
||||
package filteranime
|
||||
|
||||
import (
|
||||
"sort"
|
||||
|
||||
"github.com/aerogo/aero"
|
||||
"github.com/animenotifier/arn"
|
||||
"github.com/animenotifier/notify.moe/components"
|
||||
@ -27,19 +25,7 @@ func Shoboi(ctx *aero.Context) string {
|
||||
return anime.GetMapping("shoboi/anime") == ""
|
||||
})
|
||||
|
||||
sort.Slice(missing, func(i, j int) bool {
|
||||
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
|
||||
})
|
||||
arn.SortAnimeByQuality(missing)
|
||||
|
||||
count := len(missing)
|
||||
|
||||
@ -48,7 +34,7 @@ func Shoboi(ctx *aero.Context) string {
|
||||
}
|
||||
|
||||
return ctx.HTML(components.AnimeEditorListFull(
|
||||
"Anime without Shoboi links",
|
||||
"Anime without Shoboi mappings",
|
||||
missing,
|
||||
count,
|
||||
ctx.URI(),
|
@ -1,9 +1,9 @@
|
||||
component CompaniesEditorList(companies []*arn.Company, count int, url string)
|
||||
EditorTabs(url)
|
||||
h1.editor-list-title.mountable Companies without a description
|
||||
h1.editor-list-page-title.mountable Companies without a description
|
||||
.footer.editor-list-entry-count.mountable= strconv.Itoa(count) + " companies"
|
||||
|
||||
table
|
||||
table.editor-list
|
||||
thead
|
||||
tr.mountable
|
||||
th Name
|
||||
|
@ -6,8 +6,8 @@
|
||||
flip-card
|
||||
|
||||
.genre-squared
|
||||
width 142px
|
||||
height 142px
|
||||
width anime-image-medium-width
|
||||
height anime-image-medium-width
|
||||
|
||||
.genre-text
|
||||
grid-text
|
||||
|
@ -22,6 +22,7 @@ import (
|
||||
"github.com/animenotifier/notify.moe/pages/editanime"
|
||||
"github.com/animenotifier/notify.moe/pages/editlog"
|
||||
"github.com/animenotifier/notify.moe/pages/editor"
|
||||
"github.com/animenotifier/notify.moe/pages/editor/filteranime"
|
||||
"github.com/animenotifier/notify.moe/pages/editor/filtercompanies"
|
||||
"github.com/animenotifier/notify.moe/pages/embed"
|
||||
"github.com/animenotifier/notify.moe/pages/episode"
|
||||
@ -248,21 +249,21 @@ func Configure(app *aero.Application) {
|
||||
l.Page("/editor", editor.Get)
|
||||
|
||||
// Editor - Anime
|
||||
l.Page("/editor/anime/missing/anilist", editor.AniList)
|
||||
l.Page("/editor/anime/missing/anilist/:year", editor.AniList)
|
||||
l.Page("/editor/anime/missing/anilist/:year/:type", editor.AniList)
|
||||
l.Page("/editor/anime/missing/shoboi", editor.Shoboi)
|
||||
l.Page("/editor/anime/missing/shoboi/:year", editor.Shoboi)
|
||||
l.Page("/editor/anime/missing/shoboi/:year/:type", editor.Shoboi)
|
||||
l.Page("/editor/anime/missing/genres", editor.Genres)
|
||||
l.Page("/editor/anime/missing/genres/:year", editor.Genres)
|
||||
l.Page("/editor/anime/missing/genres/:year/:type", editor.Genres)
|
||||
l.Page("/editor/anime/lowresimage", editor.LowResolutionAnimeImages)
|
||||
l.Page("/editor/anime/lowresimage/:year", editor.LowResolutionAnimeImages)
|
||||
l.Page("/editor/anime/lowresimage/:year/:type", editor.LowResolutionAnimeImages)
|
||||
l.Page("/editor/anime/ultralowresimage", editor.UltraLowResolutionAnimeImages)
|
||||
l.Page("/editor/anime/ultralowresimage/:year", editor.UltraLowResolutionAnimeImages)
|
||||
l.Page("/editor/anime/ultralowresimage/:year/:type", editor.UltraLowResolutionAnimeImages)
|
||||
l.Page("/editor/anime/missing/anilist", filteranime.AniList)
|
||||
l.Page("/editor/anime/missing/anilist/:year", filteranime.AniList)
|
||||
l.Page("/editor/anime/missing/anilist/:year/:type", filteranime.AniList)
|
||||
l.Page("/editor/anime/missing/shoboi", filteranime.Shoboi)
|
||||
l.Page("/editor/anime/missing/shoboi/:year", filteranime.Shoboi)
|
||||
l.Page("/editor/anime/missing/shoboi/:year/:type", filteranime.Shoboi)
|
||||
l.Page("/editor/anime/missing/genres", filteranime.Genres)
|
||||
l.Page("/editor/anime/missing/genres/:year", filteranime.Genres)
|
||||
l.Page("/editor/anime/missing/genres/:year/:type", filteranime.Genres)
|
||||
l.Page("/editor/anime/lowresimage", filteranime.LowResolutionAnimeImages)
|
||||
l.Page("/editor/anime/lowresimage/:year", filteranime.LowResolutionAnimeImages)
|
||||
l.Page("/editor/anime/lowresimage/:year/:type", filteranime.LowResolutionAnimeImages)
|
||||
l.Page("/editor/anime/ultralowresimage", filteranime.UltraLowResolutionAnimeImages)
|
||||
l.Page("/editor/anime/ultralowresimage/:year", filteranime.UltraLowResolutionAnimeImages)
|
||||
l.Page("/editor/anime/ultralowresimage/:year/:type", filteranime.UltraLowResolutionAnimeImages)
|
||||
|
||||
// Editor - MALdiff
|
||||
l.Page("/editor/anime/maldiff", editor.CompareMAL)
|
||||
|
@ -7,8 +7,8 @@
|
||||
horizontal-wrap
|
||||
|
||||
.anime-search-result
|
||||
width 55px !important
|
||||
height 78px !important
|
||||
width anime-image-small-width !important
|
||||
height anime-image-small-height !important
|
||||
|
||||
.forum-search-results
|
||||
horizontal-wrap
|
||||
|
@ -131,6 +131,6 @@ animation change-color
|
||||
display block
|
||||
|
||||
.soundtrack-anime-image
|
||||
width 142px
|
||||
height 200px
|
||||
width anime-image-medium-width
|
||||
height anime-image-medium-height
|
||||
object-fit cover
|
Reference in New Issue
Block a user