summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-04-14 09:57:18 +0200
committerdefault <nobody@localhost>2023-04-14 09:57:18 +0200
commitf38de8c6b0a7b07a89fbecb55bea727b4552894b (patch)
tree8a05fee7f477e27d85a97d9e2d1afcd615d6a959
parent995fd81e48c67c8677a7cfc1d86c08d15cf2a1e0 (diff)
Show a top link to the (future) notifications area, including a count of new ones.
-rw-r--r--html.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/html.c b/html.c
index c8d3e39..e448cd8 100644
--- a/html.c
+++ b/html.c
@@ -282,14 +282,27 @@ d_char *html_user_header(snac *snac, d_char *s, int local)
"<a href=\"%s/admin\" rel=\"nofollow\">%s</a></nav>\n",
snac->actor, L("RSS"),
snac->actor, L("private"));
- else
+ else {
+ xs *n_list = notify_list(snac, 1);
+ int n_len = xs_list_len(n_list);
+ xs *n_str = NULL;
+
+ /* show the notification number, if there are any */
+ if (n_len)
+ n_str = xs_fmt("<sup style=\"background-color: red; color: white;\"> %d </sup> ", n_len);
+ else
+ n_str = xs_str_new("");
+
s1 = xs_fmt(
"<a href=\"%s\">%s</a> - "
"<a href=\"%s/admin\">%s</a> - "
+ "<a href=\"%s/admin\">%s</a>%s - "
"<a href=\"%s/people\">%s</a></nav>\n",
snac->actor, L("public"),
snac->actor, L("private"),
+ snac->actor, L("notifications"), n_str,
snac->actor, L("people"));
+ }
s = xs_str_cat(s, s1);
}