#214 Add ephemeral reply upon rules success #231

Closed
Vylpes wants to merge 1 commit from defect/214-application-did-not-respond into develop

View file

@ -32,13 +32,13 @@ export default class Rules extends Command {
const rules = JSON.parse(rulesFile) as IRules[];
const embeds: EmbedBuilder[] = [];
rules.forEach(rule => {
Vylpes marked this conversation as resolved
Review

Should we do anything if rules is empty? What about if the rules fail to be produced?

Should we do anything if rules is empty? What about if the rules fail to be produced?
const embed = new EmbedBuilder()
.setColor(EmbedColours.Ok)
.setTitle(rule.title || "Rules")
.setDescription(rule.description ? rule.description.join("\n") : "*none*");
if (rule.image) {
embed.setImage(rule.image);
}
@ -55,7 +55,14 @@ export default class Rules extends Command {
if (!channel) {
Vylpes marked this conversation as resolved
Review

Might be worth adding a failed embed here, just in case and so it doesn't fail

Might be worth adding a failed embed here, just in case and so it doesn't fail
return;
}
await channel.send({ embeds: embeds });
const successEmbed = new EmbedBuilder()
.setColor(EmbedColours.Ok)
.setTitle("Success")
.setDescription("The rules have sent to this channel successfully");
await interaction.reply({ embeds: [ successEmbed], ephemeral: true });
}
}