const client = require("../../index"); const {Events, EmbedBuilder} = require("discord.js"); const reportSchema = require("../../Models/reportSchema"); module.exports = { name: "reports" } client.on(Events.InteractionCreate, async interaction => { if (interaction.isCommand() && interaction.commandName !== "report") return; if (!interaction.isModalSubmit()) return; if (interaction.customId === 'modal') { const contact = interaction.fields.getTextInputValue("contact"); const issue = interaction.fields.getTextInputValue("issue"); const description = interaction.fields.getTextInputValue("description"); const member = interaction.user.id; const tag = interaction.user.tag; const server = interaction.guild.name; const embed = new EmbedBuilder() .setColor("Blue") .setTitle("New Report") .addFields({name: "Form of Contact", value: `${contact}`, inline: false}) .addFields({name: "Issue Reported", value: `${issue}`, inline: false}) .addFields({name: "Description of the issue", value: `${description}`, inline: false}) reportSchema.findOne({Guild: interaction.guild.id}, async (err, data) => { if (!data) return; if (data) { const channelID = data.Channel; const channel = interaction.guild.channels.cache.get(channelID); channel.send({embeds: [embed]}); await interaction.reply({content: "Your report has been submitted", ephemeral: true}) } }) } })