blob: c04ec3cc0c6313183b9a14811217afd81307069d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import { ContextMenuCommand } from 'discord-akairo';
import { ContextMenuInteraction } from 'discord.js';
import ViewRawCommand from '../../commands/utilities/viewraw';
import { BushMessage } from '../../lib';
export default class ViewRawContextMenuCommand extends ContextMenuCommand {
public constructor() {
super('viewRaw', {
name: 'View Raw',
type: 'MESSAGE',
category: 'message'
});
}
public override async exec(interaction: ContextMenuInteraction): Promise<unknown> {
await interaction.deferReply({ ephemeral: true });
const embed = await ViewRawCommand.getRawData(interaction.options.getMessage('message') as BushMessage, {
json: false,
js: false
});
return await interaction.editReply({ embeds: [embed] });
}
}
|