mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2025-09-05 17:51:27 +03:00
Make /tag
and auto tag replies work
(very cool)
This commit is contained in:
@@ -8,5 +8,28 @@ module.exports = class TagCompleter extends Autocompleter {
|
||||
});
|
||||
}
|
||||
|
||||
async run(value, comamnd, interaction) { }
|
||||
/**
|
||||
* @param {string} value
|
||||
* @param {*} command
|
||||
* @param {import("discord.js").AutocompleteInteraction} interaction
|
||||
*/
|
||||
async run(value, command, interaction) {
|
||||
/** @type {import("client")} */
|
||||
const client = this.client;
|
||||
|
||||
const tags = await client.prisma.tag.findMany({ where: { guildId: interaction.guild.id } });
|
||||
const options = value ? tags.filter(tag =>
|
||||
tag.name.match(new RegExp(value, 'i')) ||
|
||||
tag.content.match(new RegExp(value, 'i')) ||
|
||||
tag.regex?.match(new RegExp(value, 'i')),
|
||||
) : tags;
|
||||
await interaction.respond(
|
||||
options
|
||||
.slice(0, 25)
|
||||
.map(tag => ({
|
||||
name: tag.name,
|
||||
value: tag.id,
|
||||
})),
|
||||
);
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user