diff --git a/commands/search/searchAnime.js b/commands/search/searchAnime.js index 9d1670d..4971ee4 100644 --- a/commands/search/searchAnime.js +++ b/commands/search/searchAnime.js @@ -36,7 +36,7 @@ class anime extends Command{ .setStyle(ButtonStyle.Success) ); } - embed.setTitle(`First ${data.length>=4?'4':data.length} results of search:`) + embed.setTitle(`First ${data.length>=4?'4':(data.length + ' and only')} 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') diff --git a/commands/search/searchChar.js b/commands/search/searchChar.js index fdc7316..5ead9c3 100644 --- a/commands/search/searchChar.js +++ b/commands/search/searchChar.js @@ -18,47 +18,32 @@ class char extends Command{ if(!args[0]) return new ErrorMessage(this.client).send(ErrorType.Arguments, message) const data = await new aniList().searchChar(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:') + const embed = new EmbedBuilder(); + const randomID = Random(); + const row = new ActionRowBuilder(); + var fieldPayload = []; + var embeds = []; + for(var i = 0; i=4?'4':(data.length + ' and only')} 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].name.full+' ['+data[0].name.native+']', value:'1'}, - {name:data[1].name.full+' ['+data[0].name.native+']', value:'2'}, - {name:data[2].name.full+' ['+data[0].name.native+']', value:'3'}, - {name:data[3].name.full+' ['+data[0].name.native+']', value:'4'}, - ); - var embeds = [embed] - embeds.push(new EmbedBuilder().setImage(data[1].image).setURL('https://www.rem.wordfights.com')); - embeds.push(new EmbedBuilder().setImage(data[2].image).setURL('https://www.rem.wordfights.com')); - embeds.push(new EmbedBuilder().setImage(data[3].image).setURL('https://www.rem.wordfights.com')); - //${data.title.romaji} (${data.title.native} / ${data.title.english}) + .addFields(fieldPayload); + embeds.unshift(embed); + console.log(data.length, embeds.length, embeds) - const randomID = Random(); - const row = new ActionRowBuilder() - .addComponents( - new ButtonBuilder() - .setCustomId(randomID+1) - .setLabel('1') - .setStyle(ButtonStyle.Success), - new ButtonBuilder() - .setCustomId(randomID+2) - .setLabel('2') - .setStyle(ButtonStyle.Success), - new ButtonBuilder() - .setCustomId(randomID+3) - .setLabel('3') - .setStyle(ButtonStyle.Success), - new ButtonBuilder() - .setCustomId(randomID+4) - .setLabel('4') - .setStyle(ButtonStyle.Success), - - ); 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 }); diff --git a/commands/search/searchManga.js b/commands/search/searchManga.js index 39a2ca8..66b64eb 100644 --- a/commands/search/searchManga.js +++ b/commands/search/searchManga.js @@ -36,7 +36,7 @@ class manga extends Command{ ); } - embed.setTitle(`First ${data.length>=4?'4':data.length} results of search:`) + embed.setTitle(`First ${data.length>=4?'4':(data.length + ' and only')} 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')