-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.js
55 lines (51 loc) · 1.93 KB
/
menu.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import { TextInputStyle, ModalBuilder, TextInputBuilder, ActionRowBuilder, ButtonBuilder, ButtonStyle, EmbedBuilder, StringSelectMenuBuilder } from 'discord.js'
import { formatAncestry } from './db.js'
export const makeModal = (node) => new ModalBuilder()
.setCustomId(JSON.stringify({ type: 'ticket', nodeId: node.id }))
.setTitle('Create a ticket')
.addComponents(
new ActionRowBuilder().addComponents(
new TextInputBuilder()
.setCustomId('ticket')
.setLabel('What do you need help with?')
.setStyle(TextInputStyle.Paragraph)
)
)
// make a message from a node
export const makeMessage = (node) => {
const embed = new EmbedBuilder()
.setTitle(formatAncestry(node))
if (node.description) {
embed.setDescription(node.description)
}
const rows = []
if (node.kind === 'buttons') {
for (let i = 0; i < node.options.length; i += 5) {
const row = new ActionRowBuilder().addComponents(
node.options.slice(i, i + 5).map(option => (
new ButtonBuilder()
.setCustomId(option.id.toString())
.setLabel(option.name)
.setStyle(ButtonStyle.Primary)
))
)
rows.push(row)
}
} else if (node.kind === 'select') {
const row = new ActionRowBuilder().addComponents(
new StringSelectMenuBuilder()
.setCustomId('select')
.setPlaceholder('Select an option')
.addOptions(
node.options.map(option => ({
label: option.name,
value: option.id.toString(),
}))
)
)
rows.push(row)
} else {
throw new Error(`Invalid node kind: ${node.kind}`)
}
return { embeds: [embed], components: rows }
}