card-drop/src/buttonEvents/View.ts
Ethan Lane 5518f1255c
Some checks failed
Test / build (push) Failing after 9s
WIP: Update view to use fuzzy search
2024-08-10 14:51:34 +01:00

25 lines
878 B
TypeScript

import {ButtonInteraction} from "discord.js";
import {ButtonEvent} from "../type/buttonEvent";
import CardSearchHelper from "../helpers/CardSearchHelper";
export default class View extends ButtonEvent {
public override async execute(interaction: ButtonInteraction) {
const page = interaction.customId.split(" ")[1];
const query = interaction.customId.split(" ").splice(1).join(" ");
await interaction.deferUpdate();
const searchResult = await CardSearchHelper.GenerateSearchPage(query, interaction.user.id, Number(page));
if (!searchResult) {
await interaction.followUp("No results found");
return;
}
await interaction.editReply({
embeds: [ searchResult.embed ],
components: [ searchResult.row ],
files: [ searchResult.attachment ],
});
}
}