mirror of
https://github.com/xHyroM/roles-bot.git
synced 2024-11-09 10:58:06 +01:00
Merge branch 'rewrite' of https://github.com/xHyroM/roles-bot into rewrite
This commit is contained in:
commit
f25e3fdcd4
3 changed files with 16 additions and 9 deletions
|
@ -88,14 +88,18 @@ export default {
|
|||
return new Response("Unknown component", { status: 404 });
|
||||
|
||||
try {
|
||||
return respond({
|
||||
type: InteractionResponseType.DeferredChannelMessageWithSource,
|
||||
data: {
|
||||
flags: component.flags,
|
||||
},
|
||||
});
|
||||
if (component.acknowledge)
|
||||
return respond({
|
||||
type: InteractionResponseType.DeferredChannelMessageWithSource,
|
||||
data: {
|
||||
flags: component.flags,
|
||||
},
|
||||
});
|
||||
} finally {
|
||||
component.run(new ComponentContext(interaction, env));
|
||||
if (component.acknowledge)
|
||||
component.run(new ComponentContext(interaction, env));
|
||||
// rome-ignore lint/correctness/noUnsafeFinally: it works, must do better typings etc...
|
||||
else return component.run(new ComponentContext(interaction, env));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@ interface CommandOptions {
|
|||
run: (interaction: CommandContext) => void;
|
||||
}
|
||||
|
||||
export class Command<A> {
|
||||
export class Command {
|
||||
public name: string;
|
||||
public acknowledge: boolean;
|
||||
public flags: MessageFlags | undefined;
|
||||
|
|
|
@ -4,17 +4,20 @@ import { ComponentContext } from "./contexts/ComponentContext";
|
|||
|
||||
interface ComponentOptions {
|
||||
id: string;
|
||||
acknowledge?: boolean;
|
||||
flags?: MessageFlags;
|
||||
run: (interaction: ComponentContext) => void;
|
||||
}
|
||||
|
||||
export class Component {
|
||||
public id: string;
|
||||
public acknowledge: boolean;
|
||||
public flags: MessageFlags | undefined;
|
||||
public run: (interaction: ComponentContext) => void;
|
||||
public run: (interaction: ComponentContext) => void | Response;
|
||||
|
||||
constructor(options: ComponentOptions) {
|
||||
this.id = options.id;
|
||||
this.acknowledge = options.acknowledge ?? true;
|
||||
this.flags = options.flags;
|
||||
this.run = options.run;
|
||||
|
||||
|
|
Loading…
Reference in a new issue