Plugin for @sapphire/framework
used to handle Message & Interaction Command in a single context.
This plugin is used to handle Message & Interaction Command in a single context. It is used to simplify the process of creating commands that can be used in both Message and Interaction contexts.
@stegripe/command-context
depends on the following packages. Be sure to install these along with this package!
You can use the following command to install this package, or replace pnpm install
with your package manager of choice.
pnpm install @stegripe/command-context
import { Command } from "@sapphire/framework";
import { CommandContext, ContextCommand } from "@stegripe/command-context";
import { ApplicationCommandType, ContextMenuCommandBuilder, SlashCommandBuilder } from "discord.js";
export class MyCommand extends ContextCommand {
public constructor(context: Command.LoaderContext, options: Command.Options) {
super(context, {
...options,
name: "my-command",
description: "This is my command.",
chatInputCommand(builder) {
return builder.setName(this.name).setDescription(this.description);
},
contextMenuCommand(builder) {
return builder.setName(this.name).setType(ApplicationCommandType.Message);
}
});
}
public async contextRun(ctx: CommandContext): Promise<void> {
if (ctx.isCommandInteraction() && !ctx.deferred) await ctx.deferReply();
await ctx.reply("Hello, World!");
}
}
import { ApplyOptions } from "@sapphire/decorators";
import { Command } from "@sapphire/framework";
import { CommandContext, ContextCommand } from "@stegripe/command-context";
import { SlashCommandBuilder } from "discord.js";
@ApplyOptions<Command.Options>({
name: "my-command",
description: "This is my command.",
chatInputCommand(builder, opts) {
return builder.setName(opts.name).setDescription(opts.description);
},
contextMenuCommand(builder, opts) {
return builder.setName(opts.name).setType(ApplicationCommandType.Message);
}
})
export class MyCommand extends ContextCommand {
public async contextRun(ctx: CommandContext): Promise<void> {
if (ctx.isCommandInteraction() && !ctx.deferred) await ctx.deferReply();
await ctx.reply("Hello, World!");
}
}