@hyperneutrino/djs-lite 1.4.4 → 1.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.ts +11 -5
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -185,7 +185,7 @@ async function loadSubcommandsAndGroups(directory: string): Promise<{
|
|
|
185
185
|
};
|
|
186
186
|
}
|
|
187
187
|
|
|
188
|
-
export async function loadCommands(client: Client<true>, directory: string, guildId?: string) {
|
|
188
|
+
export async function loadCommands(client: Client<true>, directory: string, options?: { guildId?: string; skipSettingCommands?: boolean }) {
|
|
189
189
|
const commandData: (ChatInputApplicationCommandData | UserApplicationCommandData | MessageApplicationCommandData)[] = [];
|
|
190
190
|
|
|
191
191
|
const slashCommandHandlers = new Map<string, Handler<ChatInputCommandInteraction>>();
|
|
@@ -224,10 +224,13 @@ export async function loadCommands(client: Client<true>, directory: string, guil
|
|
|
224
224
|
else if (interaction.isAutocomplete()) slashCommandAutocompletes.get(interaction.commandName)?.(interaction);
|
|
225
225
|
});
|
|
226
226
|
|
|
227
|
-
if (
|
|
228
|
-
|
|
227
|
+
if (options?.skipSettingCommands) "Do nothing";
|
|
228
|
+
else if (options?.guildId) {
|
|
229
|
+
const testGuild = client.guilds.resolve(options.guildId);
|
|
229
230
|
if (!testGuild)
|
|
230
|
-
throw new Error(
|
|
231
|
+
throw new Error(
|
|
232
|
+
`Provided test guild (${options.guildId}) can not be found, please make sure the bot you started this project on is in this guild.`,
|
|
233
|
+
);
|
|
231
234
|
await testGuild.commands.set(commandData);
|
|
232
235
|
} else {
|
|
233
236
|
await client.application.commands.set(commandData);
|
|
@@ -246,7 +249,10 @@ export async function loadInteractions(client: Client, directory: string, argume
|
|
|
246
249
|
const channelSelectHandlers = new Map<string, Handler<ChannelSelectMenuInteraction>>();
|
|
247
250
|
|
|
248
251
|
await importAll({ directory, recursive: true }, async ({ relativePath, item }) => {
|
|
249
|
-
const handlerKey =
|
|
252
|
+
const handlerKey = path
|
|
253
|
+
.relative(directory, relativePath)
|
|
254
|
+
.replace(/\.[^/.]+$/, "")
|
|
255
|
+
.replace(/\\/g, "/");
|
|
250
256
|
|
|
251
257
|
if (item instanceof ModalHandler) modalHandlers.set(handlerKey, item.handler);
|
|
252
258
|
else if (item instanceof ButtonHandler) buttonHandlers.set(handlerKey, item.handler);
|