mirror of
https://github.com/SrIzan10/handler.git
synced 2026-05-01 10:45:17 +00:00
71 lines
2.1 KiB
TypeScript
71 lines
2.1 KiB
TypeScript
import type { EventModule, Module, ModuleDefs } from '../structures/module';
|
|
import type {
|
|
Awaitable,
|
|
ButtonInteraction,
|
|
ChatInputCommandInteraction,
|
|
CommandInteraction,
|
|
MessageComponentInteraction,
|
|
MessageContextMenuCommandInteraction,
|
|
SelectMenuInteraction,
|
|
UserContextMenuCommandInteraction,
|
|
} from 'discord.js';
|
|
import type {
|
|
DiscordEventCommand,
|
|
ExternalEventCommand,
|
|
SernEventCommand,
|
|
} from '../structures/events';
|
|
import { CommandType } from '../..';
|
|
|
|
export function correctModuleType<T extends keyof ModuleDefs>(
|
|
plug: Module | undefined,
|
|
type: T,
|
|
): plug is ModuleDefs[T] {
|
|
// Another way to check if type is equivalent,
|
|
// It will check based on flag system instead
|
|
return plug !== undefined && (plug.type & type) !== 0;
|
|
}
|
|
|
|
export function isChatInputCommand(i: CommandInteraction): i is ChatInputCommandInteraction {
|
|
return i.isChatInputCommand();
|
|
}
|
|
|
|
export function isButton(i: MessageComponentInteraction): i is ButtonInteraction {
|
|
return i.isButton();
|
|
}
|
|
|
|
export function isSelectMenu(i: MessageComponentInteraction): i is SelectMenuInteraction {
|
|
return i.isSelectMenu();
|
|
}
|
|
|
|
export function isMessageCtxMenuCmd(
|
|
i: CommandInteraction,
|
|
): i is MessageContextMenuCommandInteraction {
|
|
return i.isMessageContextMenuCommand();
|
|
}
|
|
|
|
export function isUserContextMenuCmd(
|
|
i: CommandInteraction,
|
|
): i is UserContextMenuCommandInteraction {
|
|
return i.isUserContextMenuCommand();
|
|
}
|
|
|
|
export function isPromise<T>(promiseLike: Awaitable<T>): promiseLike is Promise<T> {
|
|
const keys = new Set(Object.keys(promiseLike));
|
|
return keys.has('then') && keys.has('catch');
|
|
}
|
|
|
|
export function isDiscordEvent(el: EventModule): el is DiscordEventCommand {
|
|
return el.type === CommandType.Discord;
|
|
}
|
|
export function isSernEvent(el: EventModule): el is SernEventCommand {
|
|
return !isDiscordEvent(el);
|
|
}
|
|
|
|
export function isExternalEvent(el: EventModule): el is ExternalEventCommand {
|
|
return !isDiscordEvent(el) && !isSernEvent(el);
|
|
}
|
|
|
|
export function isEventModule(module: Module): module is EventModule {
|
|
return [CommandType.Discord, CommandType.Sern, CommandType.External].includes(module.type);
|
|
}
|