[AB-xxx] updating remind templates for user installable support

This commit is contained in:
Sheldan
2024-06-19 00:18:35 +02:00
parent 8af4609d82
commit afb1ec3368
5 changed files with 25 additions and 18 deletions

View File

@@ -1,10 +1,10 @@
{ {
"embeds": [ "embeds": [
{ {
<#include "member_author"> <#include "user_author">
<#include "member_avatar"> <@user_detail_author user=userDisplay/>,
<@member_display_author member=memberNameDisplay/>,
<#include "abstracto_color">, <#include "abstracto_color">,
<#assign reminderId=reminderDisplay.id>
"description": "<@safe_include "remind_reminder_description"/>", "description": "<@safe_include "remind_reminder_description"/>",
"fields": [ "fields": [
{ {
@@ -13,18 +13,22 @@
}, },
{ {
"name": "<@safe_include "remind_reminder_note_field_title"/>", "name": "<@safe_include "remind_reminder_note_field_title"/>",
"value": "${reminder.text?json_string}" "value": "${reminderDisplay.text?json_string}"
}, }
<#if messageUrl?has_content>,
{ {
"name": "<@safe_include "remind_reminder_link_field_title"/>", "name": "<@safe_include "remind_reminder_link_field_title"/>",
"value": "[<@safe_include "remind_reminder_link_content_display_text"/>](${messageUrl})" "value": "[<@safe_include "remind_reminder_link_content_display_text"/>](${messageUrl})"
} }
</#if>
] ]
} }
], ]
<#assign participantsMentions><#list reminderParticipants as participant>${participant.memberMention}<#sep>, </#list></#assign> <#if !reminderDisplay.userCommand>,
"additionalMessage": "${memberNameDisplay.memberMention?json_string} 🔔 <#assign participantsMentions><#if reminderParticipants?has_content><#list reminderParticipants as participant>${participant.memberMention}<#sep>, </#list></#if></#assign>
"additionalMessage": "${userDisplay.userMention?json_string} 🔔
${participantsMentions} ${participantsMentions}
" "
</#if>
} }

View File

@@ -3,9 +3,8 @@
"embeds": [ "embeds": [
{ {
<#assign id>${reminder.id}</#assign> <#assign id>${reminder.id}</#assign>
<#include "member_author"> <#include "user_author">
<#include "member_avatar"> <@user_detail_author user=userDisplay/>,
<@member_display_author member=memberDisplay/>,
<#include "abstracto_color">, <#include "abstracto_color">,
<#assign reminderTargetDate><@format_instant_date_time instant=reminder.targetDate/></#assign> <#assign reminderTargetDate><@format_instant_date_time instant=reminder.targetDate/></#assign>
<#if message?has_content> <#if message?has_content>
@@ -17,8 +16,11 @@
</#if> </#if>
} }
], ]
"additionalMessage": "${memberDisplay.memberMention?json_string}", <#if !reminder.userCommand>,
"additionalMessage": "${userDisplay.userMention?json_string}"
</#if>
<#if joinButtonId?has_content>,
"buttons": [ "buttons": [
{ {
"label": "<@safe_include "remind_reminder_join_button_label"/>", "label": "<@safe_include "remind_reminder_join_button_label"/>",
@@ -29,4 +31,5 @@
} }
} }
] ]
</#if>
} }

View File

@@ -2,8 +2,8 @@
{ {
"embeds": [ "embeds": [
{ {
<#include "member_author"> <#include "user_author">
<@member_author member=member/>, <@user_detail_author user=userDisplay/>,
<#include "abstracto_color">, <#include "abstracto_color">,
"title": { "title": {
"title": "<@safe_include "reminders_reminders_embed_title"/>" "title": "<@safe_include "reminders_reminders_embed_title"/>"
@@ -17,7 +17,7 @@
<#assign id>${reminderDisplay.id}</#assign> <#assign id>${reminderDisplay.id}</#assign>
<#assign reminderTargetDate><@format_instant_date_time instant=reminderDisplay.targetDate/></#assign> <#assign reminderTargetDate><@format_instant_date_time instant=reminderDisplay.targetDate/></#assign>
<#assign reminderText=reminderDisplay.text/> <#assign reminderText=reminderDisplay.text/>
<#assign messageLink=reminderDisplay.message.jumpUrl/> <#if !reminderDisplay.userCommand><#assign messageLink=reminderDisplay.message.jumpUrl/></#if>
<#assign joined=reminderDisplay.joined/> <#assign joined=reminderDisplay.joined/>
<#assign joinedText><#if joined><@safe_include "reminder_joined_text"/></#if></#assign> <#assign joinedText><#if joined><@safe_include "reminder_joined_text"/></#if></#assign>
"name": "<@safe_include "reminders_reminder_field_title"/>", "name": "<@safe_include "reminders_reminder_field_title"/>",

View File

@@ -1 +1 @@
Reminder ID ${reminder.id?c} Reminder ID ${reminderId?c}

View File

@@ -1 +1 @@
Due on ${reminderTargetDate} with text `${reminderText}` started [here](${messageLink}) ${joinedText} Due on ${reminderTargetDate} with text `${reminderText}`<#if messageLink?has_content> started [here](${messageLink})</#if> ${joinedText}