Rewrite notif page
This commit is contained in:
parent
1439dd12c8
commit
55a85689e9
3 changed files with 14 additions and 7 deletions
|
@ -2,24 +2,27 @@ from django.contrib.auth.decorators import login_required
|
|||
from django.views.generic import ListView
|
||||
from django.utils.translation import ugettext as _
|
||||
from django.utils.timezone import now
|
||||
from django.http import Http404
|
||||
|
||||
from judge.models import Profile, Notification, NotificationProfile
|
||||
from judge.models.notification import unseen_notifications_count
|
||||
from judge.utils.infinite_paginator import InfinitePaginationMixin
|
||||
|
||||
__all__ = ["NotificationList"]
|
||||
|
||||
|
||||
class NotificationList(ListView):
|
||||
class NotificationList(InfinitePaginationMixin, ListView):
|
||||
model = Notification
|
||||
context_object_name = "notifications"
|
||||
template_name = "notification/list.html"
|
||||
paginate_by = 50
|
||||
|
||||
def get_queryset(self):
|
||||
self.unseen_cnt = unseen_notifications_count(self.request.profile)
|
||||
|
||||
self.queryset = Notification.objects.filter(
|
||||
owner=self.request.profile
|
||||
).order_by("-id")[:100]
|
||||
).order_by("-id")
|
||||
|
||||
return self.queryset
|
||||
|
||||
|
@ -27,11 +30,13 @@ class NotificationList(ListView):
|
|||
context = super().get_context_data(**kwargs)
|
||||
context["unseen_count"] = self.unseen_cnt
|
||||
context["title"] = _("Notifications (%d unseen)") % context["unseen_count"]
|
||||
context["has_notifications"] = self.queryset.exists()
|
||||
context["first_page_href"] = "."
|
||||
return context
|
||||
|
||||
def get(self, request, *args, **kwargs):
|
||||
ret = super().get(request, *args, **kwargs)
|
||||
if not request.user.is_authenticated:
|
||||
raise Http404()
|
||||
NotificationProfile.objects.filter(user=request.profile).update(unread_count=0)
|
||||
unseen_notifications_count.dirty(self.request.profile)
|
||||
return ret
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue