@@ -12,11 +12,13 @@ import {
12
12
Collection ,
13
13
MessageSelectMenu ,
14
14
} from 'discord.js' ;
15
+
16
+ import { POINT_LIMITER_IN_MINUTES } from '../../env.js' ;
15
17
import { asyncCatch } from '../../utils/asyncCatch.js' ;
16
- import { createResponse } from './createResponse.js' ;
17
- import { ThanksInteraction , ThanksInteractionType } from './db_model.js' ;
18
18
import { _ } from '../../utils/pluralize.js' ;
19
- import { POINT_LIMITER_IN_MINUTES } from '../../env.js' ;
19
+ import { createResponse } from './createResponse.js' ;
20
+ import type { ThanksInteractionType } from './db_model.js' ;
21
+ import { ThanksInteraction } from './db_model.js' ;
20
22
21
23
const memoryCache = new Map < string , Message > ( ) ;
22
24
@@ -28,7 +30,7 @@ export async function handleThreadThanks(msg: Message): Promise<void> {
28
30
29
31
const oldResponseId = [ msg . author . id , msg . channel . id ] . join ( '|' ) ;
30
32
if ( memoryCache . has ( oldResponseId ) ) {
31
- await memoryCache . get ( oldResponseId ) . delete ( ) . catch ( e => console . error ( "message already deleted" ) ) . finally ( ( ) => { memoryCache . delete ( oldResponseId ) } ) ;
33
+ await memoryCache . get ( oldResponseId ) . delete ( ) . catch ( error => { console . error ( "message already deleted" ) ; } ) . finally ( ( ) => { memoryCache . delete ( oldResponseId ) } ) ;
32
34
}
33
35
// channel.members.fetch should return a collection
34
36
const [ members , previousInteractions ] : [
@@ -41,7 +43,7 @@ export async function handleThreadThanks(msg: Message): Promise<void> {
41
43
ThanksInteraction . find ( {
42
44
thanker : msg . author . id ,
43
45
createdAt : {
44
- $gte : Date . now ( ) - Number . parseInt ( POINT_LIMITER_IN_MINUTES ) * 60000 ,
46
+ $gte : Date . now ( ) - Number . parseInt ( POINT_LIMITER_IN_MINUTES ) * 60_000 ,
45
47
} ,
46
48
} ) ,
47
49
] ) ;
@@ -69,7 +71,7 @@ export async function handleThreadThanks(msg: Message): Promise<void> {
69
71
const response = await msg . reply ( {
70
72
content : [
71
73
"Hey, it looks like you're trying to thank one or many users, but haven't specified who. Who would you like to thank?" ,
72
- alreadyThanked . length
74
+ alreadyThanked . length > 0
73
75
? _ `There ${ _ . mapper ( { 1 : 'is' } , 'are' ) } **${ _ . n } user${
74
76
_ . s
75
77
} that you can't thank as you've thanked them recently**, so they won't show up as an option.`(
@@ -113,7 +115,7 @@ export function attachThreadThanksHandler(client: Client): void {
113
115
if ( ! ( interaction . isSelectMenu ( ) || interaction . isButton ( ) ) ) {
114
116
return ;
115
117
}
116
- const channel = interaction . channel ;
118
+ const { channel} = interaction ;
117
119
const [ category , msgId , type , userId ] = interaction . customId . split ( '🤔' ) ;
118
120
119
121
if ( category !== 'threadThanks' ) {
@@ -219,7 +221,7 @@ export function attachThreadClose(client: Client) {
219
221
220
222
const channel = activeThreads . threads . get ( channelId ) ;
221
223
222
- if ( ! channel || channel . archived === true ) {
224
+ if ( ! channel || channel . archived ) {
223
225
interaction . reply ( { content : '' } ) ;
224
226
}
225
227
0 commit comments