Skip to content

Commit 9c9bf46

Browse files
authored
Thread decision fixes (#332)
### Notes This resolves a few issues with the thread decisions: - Let's make sure when an interaction is pressed. the text output corresponds to that action (i.e status update) - We edit the original interaction to remove the buttons when clicked as well as marked with the action taken, and by who.
2 parents 1734d11 + ac215c4 commit 9c9bf46

File tree

1 file changed

+34
-9
lines changed

1 file changed

+34
-9
lines changed

discord-scripts/thread-management/check-thread-archiving.ts

+34-9
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,18 @@ const THREAD_CHECK_CADENCE = 12 * HOUR // 12 * HOUR
4343
* A helper to request follow-up action on a thread based on the id of the user
4444
* who will follow up and the initial requester of follow-up action.
4545
*/
46-
function requestFollowUpAction(
46+
47+
const getNickname = async (interaction: ButtonInteraction): Promise<string> => {
48+
const { user, guild } = interaction
49+
50+
if (!guild) {
51+
return user.username
52+
}
53+
const member = await guild.members.fetch(user.id)
54+
return member.nickname || user.username
55+
}
56+
57+
async function requestFollowUpAction(
4758
thread: ThreadChannel<boolean>,
4859
interaction: ButtonInteraction,
4960
followUpRequester: GuildMember | APIInteractionGuildMember | null,
@@ -52,6 +63,10 @@ function requestFollowUpAction(
5263
robot?: Robot,
5364
) {
5465
const requestingUserId = followUpRequester?.user.id
66+
const currentTime = Date.now()
67+
const followUpDeadline = Math.floor((currentTime + 24 * HOUR) / 1000)
68+
69+
const nickname = await getNickname(interaction)
5570

5671
if (followUpUserId === requestingUserId) {
5772
// If the user designates themselves, delete the initial bot message to remove the dropdown
@@ -63,7 +78,7 @@ function requestFollowUpAction(
6378
.followUp({
6479
content: `Thanks ${userMention(
6580
requestingUserId,
66-
)}, please ${requestedAction} this thread or it will be archived in 24 hours ❤️`,
81+
)}, please ${requestedAction} this thread or it will be archived in <t:${followUpDeadline}:F> (<t:${followUpDeadline}:R> ❤️)`,
6782
ephemeral: true,
6883
})
6984
.catch((error) => {
@@ -75,7 +90,7 @@ function requestFollowUpAction(
7590
.send({
7691
content: `${userMention(
7792
followUpUserId,
78-
)} please ${requestedAction} this thread or it will be archived in 24 hours ❤️`,
93+
)} please ${requestedAction} this thread or it will be archived in <t:${followUpDeadline}:F> (<t:${followUpDeadline}:R>) - ❤️ Love, ${nickname}`,
7994
})
8095
.catch((error) => {
8196
robot?.logger.info("Failed to send message in thread:", error)
@@ -99,10 +114,17 @@ const threadActions: {
99114
emoji: "☑️",
100115
extendAutoArchive: false,
101116
handler: async (thread, interaction) => {
117+
const nickname = await getNickname(interaction)
102118
await interaction.reply({
103119
content: "Sounds like this thread is ready to archive, doing that now!",
120+
ephemeral: true,
121+
})
122+
await thread.setArchived(true)
123+
124+
await interaction.message.edit({
125+
content: `${interaction.message.content}\n\n☑️ **Archived** by ${nickname}`,
126+
components: [],
104127
})
105-
thread.setArchived(true)
106128
},
107129
},
108130
"check-thread-archiving-task-button": {
@@ -111,7 +133,6 @@ const threadActions: {
111133
extendAutoArchive: true,
112134
handler: async (thread, interaction) => {
113135
const posterSelectId = `task-poster-select-${interaction.id}`
114-
115136
await interaction.reply({
116137
ephemeral: true,
117138
content:
@@ -147,6 +168,8 @@ const threadActions: {
147168
"capture the task(s) associated with",
148169
userIdToTag,
149170
)
171+
172+
await interaction.message.delete()
150173
},
151174
},
152175
"check-thread-archiving-status-button": {
@@ -155,7 +178,6 @@ const threadActions: {
155178
extendAutoArchive: false,
156179
handler: async (thread, interaction) => {
157180
const posterSelectId = `status-poster-select-${interaction.id}`
158-
159181
await interaction.reply({
160182
ephemeral: true,
161183
content:
@@ -189,9 +211,11 @@ const threadActions: {
189211
thread,
190212
interaction,
191213
interaction.member,
192-
"capture the task(s) associated with",
214+
"post a status associated with",
193215
userIdToTag,
194216
)
217+
218+
await interaction.message.delete()
195219
},
196220
},
197221
"check-thread-archiving-pending-decision-button": {
@@ -200,7 +224,6 @@ const threadActions: {
200224
extendAutoArchive: true,
201225
handler: async (thread, interaction) => {
202226
const posterSelectId = `decision-poster-select-${interaction.id}`
203-
204227
await interaction.reply({
205228
ephemeral: true,
206229
content:
@@ -234,9 +257,11 @@ const threadActions: {
234257
thread,
235258
interaction,
236259
interaction.member,
237-
"capture the task(s) associated with",
260+
"make a decision for",
238261
userIdToTag,
239262
)
263+
264+
await interaction.message.delete()
240265
},
241266
},
242267
}

0 commit comments

Comments
 (0)