diff options
author | Andrew Godwin | 2022-12-05 22:14:50 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-12-05 22:15:05 -0700 |
commit | b0929214d5c4f6df743256cacfb04337b9319aa4 (patch) | |
tree | 560ab167bf69148e753db1c35c9d5921dfca0dbe | |
parent | 64cea557bebdb0a5b4f17362d8e66845b0a77113 (diff) | |
download | takahe-b0929214d5c4f6df743256cacfb04337b9319aa4.tar.gz takahe-b0929214d5c4f6df743256cacfb04337b9319aa4.tar.bz2 takahe-b0929214d5c4f6df743256cacfb04337b9319aa4.zip |
Allow selecting notification types to see
-rw-r--r-- | activities/views/timelines.py | 35 | ||||
-rw-r--r-- | static/css/style.css | 18 | ||||
-rw-r--r-- | templates/activities/notifications.html | 23 |
3 files changed, 63 insertions, 13 deletions
diff --git a/activities/views/timelines.py b/activities/views/timelines.py index 156a20d..2b456ad 100644 --- a/activities/views/timelines.py +++ b/activities/views/timelines.py @@ -161,9 +161,6 @@ class Federated(ListView): @method_decorator(identity_required, name="dispatch") -@method_decorator( - per_identity_cache_page("cache_timeout_page_timeline"), name="dispatch" -) class Notifications(ListView): template_name = "activities/notifications.html" @@ -172,18 +169,30 @@ class Notifications(ListView): "allows_refresh": True, } paginate_by = 50 + notification_types = { + "followed": TimelineEvent.Types.followed, + "boosted": TimelineEvent.Types.boosted, + "mentioned": TimelineEvent.Types.mentioned, + "liked": TimelineEvent.Types.liked, + } def get_queryset(self): + # Did they ask to change options? + notification_options = self.request.session.get("notification_options", {}) + for type_name in self.notification_types: + notification_options.setdefault(type_name, True) + if self.request.GET.get(type_name) == "true": + notification_options[type_name] = True + elif self.request.GET.get(type_name) == "false": + notification_options[type_name] = False + self.request.session["notification_options"] = notification_options + # Return appropriate events + types = [] + for type_name, type in self.notification_types.items(): + if notification_options.get(type_name, True): + types.append(type) return ( - TimelineEvent.objects.filter( - identity=self.request.identity, - type__in=[ - TimelineEvent.Types.mentioned, - TimelineEvent.Types.boosted, - TimelineEvent.Types.liked, - TimelineEvent.Types.followed, - ], - ) + TimelineEvent.objects.filter(identity=self.request.identity, type__in=types) .order_by("-created")[:50] .select_related("subject_post", "subject_post__author", "subject_identity") ) @@ -205,5 +214,7 @@ class Notifications(ListView): ): events[-1].collapsed = True events.append(event) + # Retrieve what kinds of things to show context["events"] = events + context["notification_options"] = self.request.session["notification_options"] return context diff --git a/static/css/style.css b/static/css/style.css index e29126b..08bde08 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -762,7 +762,7 @@ table.metadata td.name { font-weight: bold; } -/* Named Timelines */ +/* Timelines */ .left-column .timeline-name { margin: 0 0 10px 0; @@ -774,6 +774,22 @@ table.metadata td.name { margin-right: 10px } +.view-options { + margin: 0 0 10px 3px; +} + +.view-options a { + margin: 0 10px 0 0; + padding: 4px 7px; + color: var(--color-text-duller); + background: var(--color-bg-box); + border-radius: 3px; +} + +.view-options a.selected { + color: var(--color-text-main); +} + /* Posts */ .post { diff --git a/templates/activities/notifications.html b/templates/activities/notifications.html index 2d0a434..890a2ad 100644 --- a/templates/activities/notifications.html +++ b/templates/activities/notifications.html @@ -3,6 +3,29 @@ {% block title %}Notifications{% endblock %} {% block content %} + <div class="view-options"> + {% if notification_options.followed %} + <a href=".?followed=false" class="selected"><i class="fa-solid fa-check"></i> Followers</a> + {% else %} + <a href=".?followed=true"><i class="fa-solid fa-xmark"></i> Followers</a> + {% endif %} + {% if notification_options.boosted %} + <a href=".?boosted=false" class="selected"><i class="fa-solid fa-check"></i> Boosts</a> + {% else %} + <a href=".?boosted=true"><i class="fa-solid fa-xmark"></i> Boosts</a> + {% endif %} + {% if notification_options.liked %} + <a href=".?liked=false" class="selected"><i class="fa-solid fa-check"></i> Likes</a> + {% else %} + <a href=".?liked=true"><i class="fa-solid fa-xmark"></i> Likes</a> + {% endif %} + {% if notification_options.mentioned %} + <a href=".?mentioned=false" class="selected"><i class="fa-solid fa-check"></i> Mentions</a> + {% else %} + <a href=".?mentioned=true"><i class="fa-solid fa-xmark"></i> Mentions</a> + {% endif %} + </div> + {% for event in events %} {% include "activities/_event.html" %} {% empty %} |