-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinteraction.js
40 lines (37 loc) · 1.18 KB
/
interaction.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { MessageFlags } from 'discord.js'
import { makeModal, makeMessage } from './menu.js'
import { getNode, searchNodes } from './db.js'
export const updateInteraction = (interaction, message) => {
if (interaction.message.flags.has(MessageFlags.Ephemeral)) {
return interaction.update({
embeds: [],
components: [],
...message,
})
} else {
return interaction.reply({
...message,
ephemeral: true,
})
}
}
// process a selection from a menu
export const continueMenu = async (interaction, nodeId) => {
const node = getNode(nodeId)
if (node.options.length === 0) {
// leaf node, ask for ticket description
await interaction.showModal(makeModal(node))
return
}
const message = makeMessage(node)
await updateInteraction(interaction, message)
}
// process autocomplete node search
export const handleAutocomplete = async (interaction) => {
const query = interaction.options.getFocused()
const results = searchNodes(query).map(result => ({
name: result.ancestry,
value: result.id.toString()
}))
await interaction.respond(results)
}