diff --git a/commands/search/searchManga.js b/commands/search/searchManga.js index e02e858..39a2ca8 100644 --- a/commands/search/searchManga.js +++ b/commands/search/searchManga.js @@ -18,46 +18,34 @@ class manga extends Command{ if(!args[0]) return new ErrorMessage(this.client).send(ErrorType.Arguments, message) const data = await new aniList().searchManga(args.join(' ')); if(data=='Error') return new ErrorMessage(this.client).send(ErrorType.Arguments, message, [`Couldn't find any character with the search argument you provided.`]) - const embed = new EmbedBuilder() - .setTitle('First 4 results of search:') - .setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'}) - .setColor(0x003284) - .setURL('https://www.rem.wordfights.com') - .setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' }) - .setImage(data[0].image) - .setTimestamp() - .addFields( - {name:data[0].title.romaji+(data[0].title.english?"("+data.title.english+")":''), value:'1'}, - {name:data[1].title.romaji+(data[1].title.english?"("+data.title.english+")":''), value:'2'}, - {name:data[2].title.romaji+(data[2].title.english?"("+data.title.english+")":''), value:'3'}, - {name:data[3].title.romaji+(data[3].title.english?"("+data.title.english+")":''), value:'4'}, + // console.log('SearchManga: Data:', data) + const embed = new EmbedBuilder(); + const randomID = Random(); + const row = new ActionRowBuilder(); + var fieldPayload = []; + var embeds = []; + for(var i = 0; i=4?'4':data.length} results of search:`) + .setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'}) + .setColor(0x003284) + .setURL('https://www.rem.wordfights.com') + .setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' }) + .setTimestamp() + .addFields(fieldPayload); + + embeds.unshift(embed); - ); const filter = i => i.customId.slice(0,-1) === randomID; await message.channel.send({ephemeral: true, embeds, components: [row] }); const collector = message.channel.createMessageComponentCollector({ filter, time: 60000 });