@@ -43,7 +43,18 @@ const THREAD_CHECK_CADENCE = 12 * HOUR // 12 * HOUR
43
43
* A helper to request follow-up action on a thread based on the id of the user
44
44
* who will follow up and the initial requester of follow-up action.
45
45
*/
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 (
47
58
thread : ThreadChannel < boolean > ,
48
59
interaction : ButtonInteraction ,
49
60
followUpRequester : GuildMember | APIInteractionGuildMember | null ,
@@ -52,6 +63,10 @@ function requestFollowUpAction(
52
63
robot ?: Robot ,
53
64
) {
54
65
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 )
55
70
56
71
if ( followUpUserId === requestingUserId ) {
57
72
// If the user designates themselves, delete the initial bot message to remove the dropdown
@@ -63,7 +78,7 @@ function requestFollowUpAction(
63
78
. followUp ( {
64
79
content : `Thanks ${ userMention (
65
80
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> ❤️) `,
67
82
ephemeral : true ,
68
83
} )
69
84
. catch ( ( error ) => {
@@ -75,7 +90,7 @@ function requestFollowUpAction(
75
90
. send ( {
76
91
content : `${ userMention (
77
92
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 } `,
79
94
} )
80
95
. catch ( ( error ) => {
81
96
robot ?. logger . info ( "Failed to send message in thread:" , error )
@@ -99,10 +114,17 @@ const threadActions: {
99
114
emoji : "☑️" ,
100
115
extendAutoArchive : false ,
101
116
handler : async ( thread , interaction ) => {
117
+ const nickname = await getNickname ( interaction )
102
118
await interaction . reply ( {
103
119
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 : [ ] ,
104
127
} )
105
- thread . setArchived ( true )
106
128
} ,
107
129
} ,
108
130
"check-thread-archiving-task-button" : {
@@ -111,7 +133,6 @@ const threadActions: {
111
133
extendAutoArchive : true ,
112
134
handler : async ( thread , interaction ) => {
113
135
const posterSelectId = `task-poster-select-${ interaction . id } `
114
-
115
136
await interaction . reply ( {
116
137
ephemeral : true ,
117
138
content :
@@ -147,6 +168,8 @@ const threadActions: {
147
168
"capture the task(s) associated with" ,
148
169
userIdToTag ,
149
170
)
171
+
172
+ await interaction . message . delete ( )
150
173
} ,
151
174
} ,
152
175
"check-thread-archiving-status-button" : {
@@ -155,7 +178,6 @@ const threadActions: {
155
178
extendAutoArchive : false ,
156
179
handler : async ( thread , interaction ) => {
157
180
const posterSelectId = `status-poster-select-${ interaction . id } `
158
-
159
181
await interaction . reply ( {
160
182
ephemeral : true ,
161
183
content :
@@ -189,9 +211,11 @@ const threadActions: {
189
211
thread ,
190
212
interaction ,
191
213
interaction . member ,
192
- "capture the task(s) associated with" ,
214
+ "post a status associated with" ,
193
215
userIdToTag ,
194
216
)
217
+
218
+ await interaction . message . delete ( )
195
219
} ,
196
220
} ,
197
221
"check-thread-archiving-pending-decision-button" : {
@@ -200,7 +224,6 @@ const threadActions: {
200
224
extendAutoArchive : true ,
201
225
handler : async ( thread , interaction ) => {
202
226
const posterSelectId = `decision-poster-select-${ interaction . id } `
203
-
204
227
await interaction . reply ( {
205
228
ephemeral : true ,
206
229
content :
@@ -234,9 +257,11 @@ const threadActions: {
234
257
thread ,
235
258
interaction ,
236
259
interaction . member ,
237
- "capture the task(s) associated with " ,
260
+ "make a decision for " ,
238
261
userIdToTag ,
239
262
)
263
+
264
+ await interaction . message . delete ( )
240
265
} ,
241
266
} ,
242
267
}
0 commit comments