From bf23e30e4c6c548b94479b57aae5ebec14f9c95a Mon Sep 17 00:00:00 2001 From: Gabriel Arakaki Giovanini Date: Fri, 18 Aug 2023 22:18:27 +0200 Subject: fix: Fix album and media navidation --- pkg/view/album.go | 5 +++-- pkg/view/media.go | 11 +++++------ templates/album.qtpl | 2 +- templates/media.qtpl | 2 +- templates/mosaic.qtpl | 6 +++--- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/pkg/view/album.go b/pkg/view/album.go index a96b9bd..9e70b4b 100644 --- a/pkg/view/album.go +++ b/pkg/view/album.go @@ -85,8 +85,9 @@ func (self *AlbumView) Index(w http.ResponseWriter, r *http.Request) error { Albums: albums, Name: album.Name, Next: &repository.Pagination{ - Size: p.Size, - Page: p.Page + 1, + Size: p.Size, + Page: p.Page + 1, + AlbumID: &album.ID, }, Settings: settings, } diff --git a/pkg/view/media.go b/pkg/view/media.go index d5aace2..f490ce1 100644 --- a/pkg/view/media.go +++ b/pkg/view/media.go @@ -44,8 +44,7 @@ func getPagination(r *http.Request) *repository.Pagination { } if albumIDStr == "" { - id := uint(0) - albumID = &id + albumID = nil } else if p, err := strconv.Atoi(albumIDStr); err == nil { id := uint(p) albumID = &id @@ -133,9 +132,9 @@ func (self *MediaView) GetThumbnail(w http.ResponseWriter, r *http.Request) erro } func (self *MediaView) SetMyselfIn(r *ext.Router) { - r.GET("/media", self.Index) - r.POST("/media", self.Index) + r.GET("/media/", self.Index) + r.POST("/media/", self.Index) - r.GET("/media/image", self.GetImage) - r.GET("/media/thumbnail", self.GetThumbnail) + r.GET("/media/image/", self.GetImage) + r.GET("/media/thumbnail/", self.GetThumbnail) } diff --git a/templates/album.qtpl b/templates/album.qtpl index 1f25bf6..835db57 100644 --- a/templates/album.qtpl +++ b/templates/album.qtpl @@ -30,7 +30,7 @@ func (m *AlbumPage) PreloadAttr() string { {%= Mosaic(p.Medias, p.PreloadAttr()) %}
- next + next
{% endfunc %} diff --git a/templates/media.qtpl b/templates/media.qtpl index 737d03d..4251deb 100644 --- a/templates/media.qtpl +++ b/templates/media.qtpl @@ -22,7 +22,7 @@ func (m *MediaPage) PreloadAttr() string { {%= Mosaic(p.Medias, p.PreloadAttr()) %}
- next + next
{% endfunc %} diff --git a/templates/mosaic.qtpl b/templates/mosaic.qtpl index 18dbcba..3e6ccf8 100644 --- a/templates/mosaic.qtpl +++ b/templates/mosaic.qtpl @@ -8,12 +8,12 @@ {% for _, media := range c %}
{% if media.IsVideo() %} -
-- cgit v1.2.3