blob: 0a8fcfcb6d850559f6568752e87e4e31199991be (
plain)
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
|
import { ContextMenuCommand } from 'discord-akairo';
import { ApplicationCommandType, type ContextMenuCommandInteraction, type Message } from 'discord.js';
import { getRawData } from '../../commands/utilities/viewRaw.js';
export default class ViewRawContextMenuCommand extends ContextMenuCommand {
public constructor() {
super('viewRaw', {
name: 'View Raw',
type: ApplicationCommandType.Message,
category: 'message'
});
}
public override async exec(interaction: ContextMenuCommandInteraction) {
await interaction.deferReply({ ephemeral: true });
const message = interaction.options.getMessage('message') as Message;
const embed = await getRawData(message, {
json: false,
js: false
});
return await interaction.editReply({ embeds: [embed] });
}
}
|