mirror of
https://github.com/Sheldan/abstracto-templates.git
synced 2026-01-01 07:27:32 +00:00
[AB-xxx] some fixes/simplifications/changes for user installable applications
This commit is contained in:
@@ -1,8 +1,6 @@
|
||||
{
|
||||
"embeds": [
|
||||
{
|
||||
<#include "member_author">
|
||||
<@member_author member=member/>,
|
||||
<#include "exception_color">,
|
||||
"metaConfig" : {
|
||||
"preventEmptyEmbed": "true"
|
||||
|
||||
@@ -1,32 +1,36 @@
|
||||
{
|
||||
"embeds": [
|
||||
{
|
||||
<#include "member_author">
|
||||
<#include "member_avatar">
|
||||
<@member_display_author member=memberNameDisplay/>,
|
||||
<#include "user_author">
|
||||
<@user_detail_author user=userDisplay/>,
|
||||
<#include "abstracto_color">,
|
||||
<#assign reminderId=reminderDisplay.id>
|
||||
"description": "<@safe_include "remind_reminder_description"/>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "<@safe_include "remind_reminder_duration_field_title"/>",
|
||||
"value": "${fmtDuration(duration)}"
|
||||
},
|
||||
<#if reminder.text?has_content>
|
||||
{
|
||||
}
|
||||
<#if reminderDisplay.text?has_content>
|
||||
,{
|
||||
"name": "<@safe_include "remind_reminder_note_field_title"/>",
|
||||
"value": "${reminder.text?json_string}"
|
||||
},
|
||||
"value": "${reminderDisplay.text?json_string}"
|
||||
}
|
||||
</#if>
|
||||
{
|
||||
<#if messageUrl?has_content>
|
||||
,{
|
||||
"name": "<@safe_include "remind_reminder_link_field_title"/>",
|
||||
"value": "[<@safe_include "remind_reminder_link_content_display_text"/>](${messageUrl})"
|
||||
}
|
||||
</#if>
|
||||
]
|
||||
}
|
||||
],
|
||||
<#assign participantsMentions><#list reminderParticipants as participant>${participant.memberMention}<#sep>, </#list></#assign>
|
||||
"additionalMessage": "${memberNameDisplay.memberMention?json_string} 🔔
|
||||
]
|
||||
<#if !reminderDisplay.userCommand>,
|
||||
<#assign participantsMentions><#if reminderParticipants?has_content><#list reminderParticipants as participant>${participant.memberMention}<#sep>, </#list></#if></#assign>
|
||||
"additionalMessage": "${userDisplay.userMention?json_string} 🔔
|
||||
|
||||
${participantsMentions}
|
||||
"
|
||||
</#if>
|
||||
}
|
||||
@@ -3,9 +3,8 @@
|
||||
"embeds": [
|
||||
{
|
||||
<#assign id>${reminder.id}</#assign>
|
||||
<#include "member_author">
|
||||
<#include "member_avatar">
|
||||
<@member_display_author member=memberDisplay/>,
|
||||
<#include "user_author">
|
||||
<@user_detail_author user=userDisplay/>,
|
||||
<#include "abstracto_color">,
|
||||
<#assign reminderTargetDate><@format_instant_date_time instant=reminder.targetDate/></#assign>
|
||||
<#if message?has_content>
|
||||
@@ -21,8 +20,11 @@
|
||||
</#if>
|
||||
|
||||
}
|
||||
],
|
||||
"additionalMessage": "${memberDisplay.memberMention?json_string}",
|
||||
]
|
||||
<#if !reminder.userCommand>,
|
||||
"additionalMessage": "${userDisplay.userMention?json_string}"
|
||||
</#if>
|
||||
<#if joinButtonId?has_content>,
|
||||
"buttons": [
|
||||
{
|
||||
"label": "<@safe_include "remind_reminder_join_button_label"/>",
|
||||
@@ -33,4 +35,5 @@
|
||||
}
|
||||
}
|
||||
]
|
||||
</#if>
|
||||
}
|
||||
@@ -2,8 +2,8 @@
|
||||
{
|
||||
"embeds": [
|
||||
{
|
||||
<#include "member_author">
|
||||
<@member_author member=member/>,
|
||||
<#include "user_author">
|
||||
<@user_detail_author user=userDisplay/>,
|
||||
<#include "abstracto_color">,
|
||||
"title": {
|
||||
"title": "<@safe_include "reminders_reminders_embed_title"/>"
|
||||
@@ -16,7 +16,7 @@
|
||||
{
|
||||
<#assign id>${reminderDisplay.id}</#assign>
|
||||
<#assign reminderTargetDate><@format_instant_date_time instant=reminderDisplay.targetDate/></#assign>
|
||||
<#assign messageLink=reminderDisplay.message.jumpUrl/>
|
||||
<#if !reminderDisplay.userCommand><#assign messageLink=reminderDisplay.message.jumpUrl/></#if>
|
||||
<#assign joined=reminderDisplay.joined/>
|
||||
<#assign joinedText><#if joined><@safe_include "reminder_joined_text"/></#if></#assign>
|
||||
"name": "<@safe_include "reminders_reminder_field_title"/>",
|
||||
|
||||
@@ -1,20 +1,12 @@
|
||||
{
|
||||
"embeds": [
|
||||
{
|
||||
<#include "member_author">
|
||||
<@member_author member=memberInfo/>,
|
||||
<#include "abstracto_color">,
|
||||
"imageUrl": "${memberInfo.user.effectiveAvatarUrl}",
|
||||
"imageUrl": "${avatarUrl}",
|
||||
"fields": [
|
||||
{
|
||||
<#include "member_user_name">
|
||||
"name": "<@safe_include "showAvatar_response_embed_user_field_title"/>",
|
||||
"value": "<@member_member_name member=memberInfo/>",
|
||||
"inline": "true"
|
||||
},
|
||||
{
|
||||
"name": "<@safe_include "showAvatar_response_embed_image_field_title"/>",
|
||||
"value": "[<@safe_include "showAvatar_response_embed_image_field_value_display"/>](${memberInfo.user.effectiveAvatarUrl})",
|
||||
"value": "[<@safe_include "showAvatar_response_embed_image_field_value_display"/>](${avatarUrl})",
|
||||
"inline": "true"
|
||||
}
|
||||
]
|
||||
|
||||
@@ -8,6 +8,18 @@
|
||||
<#include "member_avatar">
|
||||
"thumbnail": "<@member_display_avatar member=memberDisplay/>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "<@safe_include "userInfo_response_embed_user_name_field_title"/>",
|
||||
"value": "${memberDisplay.userName}",
|
||||
"inline": "true"
|
||||
},
|
||||
<#if memberDisplay.displayName?has_content>
|
||||
{
|
||||
"name": "<@safe_include "userInfo_response_embed_global_name_field_title"/>",
|
||||
"value": "${memberDisplay.displayName}",
|
||||
"inline": "true"
|
||||
},
|
||||
</#if>
|
||||
{
|
||||
"name": "<@safe_include "userInfo_response_embed_id_field_title"/>",
|
||||
"value": "${id?c}",
|
||||
@@ -20,22 +32,26 @@
|
||||
"inline": "true"
|
||||
},
|
||||
</#if>
|
||||
<#if onlineStatus?has_content>
|
||||
{
|
||||
"name": "<@safe_include "userInfo_response_embed_status_field_title"/>",
|
||||
"value": "${onlineStatus?json_string}",
|
||||
"inline": "true"
|
||||
},
|
||||
</#if>
|
||||
<#if joinDate?has_content>
|
||||
{
|
||||
"name": "<@safe_include "userInfo_response_embed_joined_field_title"/>",
|
||||
"value": "<@format_instant_date_time instant=joinDate/>",
|
||||
"inline": "true"
|
||||
},
|
||||
</#if>
|
||||
{
|
||||
"name": "<@safe_include "userInfo_response_embed_registered_field_title"/>",
|
||||
"value": "<@format_instant_date_time instant=creationDate/>",
|
||||
"inline": "true"
|
||||
}
|
||||
<#if roles?size gt 0>
|
||||
<#if roles?has_content && roles?size gt 0>
|
||||
,
|
||||
{
|
||||
"name": "<@safe_include "userInfo_response_embed_roles_field_title"/>",
|
||||
@@ -44,7 +60,7 @@
|
||||
"valueSplitLength": 250
|
||||
}
|
||||
</#if>
|
||||
<#if activities?size gt 0>
|
||||
<#if activities?has_content && activities?size gt 0>
|
||||
,
|
||||
{
|
||||
"name": "<@safe_include "userInfo_response_embed_activity_field_title"/>",
|
||||
|
||||
@@ -1 +1 @@
|
||||
Reminder ID ${reminder.id?c}
|
||||
Reminder ID ${reminderId?c}
|
||||
@@ -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}
|
||||
@@ -1 +1 @@
|
||||
Due on ${reminderTargetDate} started [here](${messageLink}) ${joinedText}
|
||||
Due on ${reminderTargetDate} <#if messageLink?has_content>started [here](${messageLink}))</#if> ${joinedText}
|
||||
@@ -0,0 +1 @@
|
||||
Display name
|
||||
@@ -0,0 +1 @@
|
||||
User name
|
||||
Reference in New Issue
Block a user