From 2def57d82cf99ffb07af02820b7847eec27a1a65 Mon Sep 17 00:00:00 2001 From: imperosol Date: Wed, 19 Feb 2025 19:28:50 +0100 Subject: [PATCH] Close alerts related to a moderated event --- .../com/components/moderation-alert-index.ts | 32 +++++++- com/templates/com/macros.jinja | 75 +++++++++++++++---- 2 files changed, 91 insertions(+), 16 deletions(-) diff --git a/com/static/bundled/com/components/moderation-alert-index.ts b/com/static/bundled/com/components/moderation-alert-index.ts index e11290ad..02f3c564 100644 --- a/com/static/bundled/com/components/moderation-alert-index.ts +++ b/com/static/bundled/com/components/moderation-alert-index.ts @@ -1,5 +1,5 @@ import { exportToHtml } from "#core:utils/globals"; -import { newsDeleteNews, newsModerateNews } from "#openapi"; +import { newsDeleteNews, newsFetchNewsDates, newsModerateNews } from "#openapi"; // This will be used in jinja templates, // so we cannot use real enums as those are purely an abstraction of Typescript @@ -24,6 +24,7 @@ document.addEventListener("alpine:init", () => { // biome-ignore lint/style/useNamingConvention: api is snake case await newsModerateNews({ path: { news_id: this.newsId } }); this.state = AlertState.MODERATED; + this.$dispatch("news-moderated", { newsId: this.newsId, state: this.state }); this.loading = false; }, @@ -32,7 +33,36 @@ document.addEventListener("alpine:init", () => { // biome-ignore lint/style/useNamingConvention: api is snake case await newsDeleteNews({ path: { news_id: this.newsId } }); this.state = AlertState.DELETED; + this.$dispatch("news-moderated", { newsId: this.newsId, state: this.state }); this.loading = false; }, + + /** + * Event receiver for when news dates are moderated. + * + * If the moderated date is linked to the same news + * as the one this moderation alert is attached to, + * then set the alert state to the same as the moderated one. + */ + dispatchModeration(event: CustomEvent) { + if (event.detail.newsId === this.newsId) { + this.state = event.detail.state; + } + }, + + /** + * Query the server to know the number of news dates that would be moderated + * if this one is moderated. + */ + async nbModerated() { + // What we want here is the count attribute of the response. + // We don't care about the actual results, + // so we ask for the minimum page size possible. + const response = await newsFetchNewsDates({ + // biome-ignore lint/style/useNamingConvention: api is snake-case + query: { news_id: this.newsId, page: 1, page_size: 1 }, + }); + return response.data.count; + }, })); }); diff --git a/com/templates/com/macros.jinja b/com/templates/com/macros.jinja index 46f4b7c4..d851b52f 100644 --- a/com/templates/com/macros.jinja +++ b/com/templates/com/macros.jinja @@ -6,15 +6,41 @@ the given `alpineState` variable. This state is a `AlertState`, as defined in `moderation-alert-index.ts` - Example : + This comes in three flavours : + - You can pass the `News` object itself to the macro. + In this case, if `request.user` can moderate news, + it will perform an additional db query to know if it is a recurring event. + - You can also give only the news id. + In this case, a server request will be issued to know + if it is a recurring event. + - Finally, you can pass the name of an alpine variable, which value is the id. + In this case, a server request will be issued to know + if it is a recurring event. + + Example with full `News` object : ```jinja
{{ news_moderation_alert(news, user, "state") }}
``` + With an id : + ```jinja +
+ {{ news_moderation_alert(news.id, user, "state") }} +
+ ``` + An with an alpine variable + ```jinja +
+ {{ news_moderation_alert("newsId", user, "state") }} +
+ ``` + Args: - news: The `News` object to which this alert is related + news: (News | int | string) + Either the `News` object to which this alert is related, + or its id, or the name of an Alpine which value is its id user: The request.user alpineState: An alpine variable name @@ -23,7 +49,13 @@ in your template. #}
1 %} -
- {% trans %}Weekly event{% endtrans %} -

- {% trans trimmed nb=nb_event %} - This event will take place every week for {{ nb }} weeks. - If you moderate or delete this event, - it will also be moderated (or deleted) for the following weeks. - {% endtrans %} -

- {% endif %} +
+ +
{% endif %}
{% if user.has_perm("com.moderate_news") %}