From b641c68feebaf46c5702c47fe50526cd614450c8 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Sat, 18 Jan 2020 02:31:26 +0800 Subject: [PATCH] Improve notification pager (#9821) Co-authored-by: Antoine GIRARD --- routers/user/notification.go | 22 ++++++++++++------- templates/user/notification/notification.tmpl | 2 ++ 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/routers/user/notification.go b/routers/user/notification.go index cd6617a23..d0ab3dbe8 100644 --- a/routers/user/notification.go +++ b/routers/user/notification.go @@ -61,6 +61,19 @@ func Notifications(c *context.Context) { status = models.NotificationStatusUnread } + total, err := models.GetNotificationCount(c.User, status) + if err != nil { + c.ServerError("ErrGetNotificationCount", err) + return + } + + // redirect to last page if request page is more than total pages + pager := context.NewPagination(int(total), perPage, page, 5) + if pager.Paginater.Current() < page { + c.Redirect(fmt.Sprintf("/notifications?q=%s&page=%d", c.Query("q"), pager.Paginater.Current())) + return + } + statuses := []models.NotificationStatus{status, models.NotificationStatusPinned} notifications, err := models.NotificationsForUser(c.User, statuses, page, perPage) if err != nil { @@ -87,12 +100,6 @@ func Notifications(c *context.Context) { return } - total, err := models.GetNotificationCount(c.User, status) - if err != nil { - c.ServerError("ErrGetNotificationCount", err) - return - } - title := c.Tr("notifications") if status == models.NotificationStatusUnread && total > 0 { title = fmt.Sprintf("(%d) %s", total, title) @@ -102,7 +109,6 @@ func Notifications(c *context.Context) { c.Data["Status"] = status c.Data["Notifications"] = notifications - pager := context.NewPagination(int(total), perPage, page, 5) pager.SetDefaultParams(c) c.Data["Page"] = pager @@ -134,7 +140,7 @@ func NotificationStatusPost(c *context.Context) { return } - url := fmt.Sprintf("%s/notifications", setting.AppSubURL) + url := fmt.Sprintf("%s/notifications?page=%s", setting.AppSubURL, c.Query("page")) c.Redirect(url, 303) } diff --git a/templates/user/notification/notification.tmpl b/templates/user/notification/notification.tmpl index 5b34604fb..beeac0181 100644 --- a/templates/user/notification/notification.tmpl +++ b/templates/user/notification/notification.tmpl @@ -88,6 +88,7 @@ {{$.CsrfTokenHtml}} + @@ -97,6 +98,7 @@ {{$.CsrfTokenHtml}} +