Add Genre filters to UI

This commit is contained in:
Deluan 2021-07-16 19:41:49 -04:00 committed by Deluan Quintão
parent c56c7c865e
commit 20b7e5c49b
13 changed files with 108 additions and 32 deletions

View file

@ -82,7 +82,12 @@ func artistFilter(field string, value interface{}) Sqlizer {
}
func (r *albumRepository) CountAll(options ...model.QueryOptions) (int64, error) {
return r.count(r.selectAlbum(), options...)
sql := r.selectAlbum()
sql = sql.LeftJoin("album_genres ag on album.id = ag.album_id").
LeftJoin("genre on ag.genre_id = genre.id").
GroupBy("album.id")
return r.count(sql, options...)
}
func (r *albumRepository) Exists(id string) (bool, error) {