mirror of
https://github.com/DarthKilroy/Spot.git
synced 2026-02-12 21:50:08 +00:00
Add create jira bug
This commit is contained in:
parent
6c8cf194a7
commit
1a7822ea69
13 changed files with 418 additions and 97 deletions
32
events/interaction-create.ts
Normal file
32
events/interaction-create.ts
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
|
||||
import axios from "axios";
|
||||
import { CacheType, ChatInputCommandInteraction, Interaction, MessageContextMenuCommandInteraction, ModalSubmitInteraction, UserContextMenuCommandInteraction } from "discord.js";
|
||||
import { client } from "../bot";
|
||||
import config from "../config";
|
||||
import { frequencies, getJiraToken, severites } from "../utils/jira";
|
||||
|
||||
export const onInteractionCreate = async (interaction: Interaction) => {
|
||||
if (interaction.isChatInputCommand() || interaction.isContextMenuCommand()) {
|
||||
onCommand(interaction);
|
||||
}
|
||||
}
|
||||
|
||||
const onCommand = async (interaction: ChatInputCommandInteraction<CacheType> | MessageContextMenuCommandInteraction<CacheType> | UserContextMenuCommandInteraction) => {
|
||||
const command = client.commands.get(interaction.commandName);
|
||||
|
||||
if (!command) {
|
||||
console.error(`No command matching ${interaction.commandName} was found.`);
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
await command.execute(interaction);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
if (interaction.replied || interaction.deferred) {
|
||||
await interaction.followUp({ content: 'There was an error while executing this command!', ephemeral: true });
|
||||
} else {
|
||||
await interaction.reply({ content: 'There was an error while executing this command!', ephemeral: true });
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue