From e794d7870f145fa581f261313d4fdf0326bc5a79 Mon Sep 17 00:00:00 2001 From: masterhc Date: Thu, 8 Feb 2024 23:59:43 +0000 Subject: [PATCH] Added a button to cancel the search --- commands/search/searchAnime.js | 8 +++++++- commands/search/searchChar.js | 8 +++++++- commands/search/searchManga.js | 9 +++++++-- 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/commands/search/searchAnime.js b/commands/search/searchAnime.js index d9fa192..b00e1ab 100644 --- a/commands/search/searchAnime.js +++ b/commands/search/searchAnime.js @@ -36,6 +36,12 @@ class anime extends Command{ .setStyle(ButtonStyle.Success) ); } + row.addComponents( + new ButtonBuilder() + .setCustomId(randomID+4) + .setLabel('Cancel') + .setStyle(ButtonStyle.Danger) + ) embed.setTitle(`First ${data.length>=4?'4':(data.length + ' and only')} result${data.length>1?'s':''} of search:`) .setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'}) .setColor(0x003284) @@ -50,7 +56,7 @@ class anime extends Command{ { message.delete(); m.message.delete(); - sendMessage(data[m.customId[m.customId.length-1]].id); + if(m.customId[m.customId.length-1]!=4) sendMessage(data[m.customId[m.customId.length-1]].id); }); /** * @param {Number} id diff --git a/commands/search/searchChar.js b/commands/search/searchChar.js index 2f632ca..1fd0d85 100644 --- a/commands/search/searchChar.js +++ b/commands/search/searchChar.js @@ -34,6 +34,12 @@ class char extends Command{ .setStyle(ButtonStyle.Success) ); } + row.addComponents( + new ButtonBuilder() + .setCustomId(randomID+4) + .setLabel('Cancel') + .setStyle(ButtonStyle.Danger) + ) embed.setTitle(`First ${data.length>=4?'4':(data.length + ' and only')} result${data.length>1?'s':''} of search:`) .setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'}) .setColor(0x003284) @@ -51,7 +57,7 @@ class char extends Command{ { message.delete(); m.message.delete(); - sendMessage(data[m.customId[m.customId.length-1]].id); + if(m.customId[m.customId.length-1]!=4) sendMessage(data[m.customId[m.customId.length-1]].id); }); /** * @param {Number} id diff --git a/commands/search/searchManga.js b/commands/search/searchManga.js index 8beea0e..2c3dec1 100644 --- a/commands/search/searchManga.js +++ b/commands/search/searchManga.js @@ -35,7 +35,12 @@ class manga extends Command{ .setStyle(ButtonStyle.Success) ); } - + row.addComponents( + new ButtonBuilder() + .setCustomId(randomID+4) + .setLabel('Cancel') + .setStyle(ButtonStyle.Danger) + ) embed.setTitle(`First ${data.length>=4?'4':(data.length + ' and only')} result${data.length>1?'s':''} of search:`) .setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'}) .setColor(0x003284) @@ -53,7 +58,7 @@ class manga extends Command{ { message.delete(); m.message.delete(); - sendMessage(data[m.customId[m.customId.length-1]].id); + if(m.customId[m.customId.length-1]!=4) sendMessage(data[m.customId[m.customId.length-1]].id); }); /** * @param {Number} id