From 77141d3b0a6d82062951099ebaa96fff3723ae2e Mon Sep 17 00:00:00 2001 From: masterhc Date: Thu, 8 Feb 2024 15:28:16 +0000 Subject: [PATCH] Improved display of information --- commands/search/searchAnime.js | 4 +++- commands/search/searchChar.js | 4 +++- commands/search/searchManga.js | 5 ++++- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/commands/search/searchAnime.js b/commands/search/searchAnime.js index f1d57df..7039a24 100644 --- a/commands/search/searchAnime.js +++ b/commands/search/searchAnime.js @@ -59,11 +59,13 @@ class anime extends Command{ { const data = await new Anilist().getAnimeInfo(id); // console.log('Command: SearchChar: SendMessage: Data', data.season) + data.description = data.description.replaceAll('~!', '').replaceAll('!~', '').replaceAll(/<[^>]*>/g, ''); + data.description = data.description.length>1500?(data.description.substring(0, 1500) + "..."):data.description; const embed = new EmbedBuilder() .setTitle(`${data.title.romaji} (${data.title.native + data.title.english?'/'+data.title.english:''})`) .setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'}) .setColor(0x003284) - .setDescription(data.description.replaceAll('~!', '').replaceAll('!~', '').replaceAll(/<[^>]*>/g, '').substring(0, 1500) + "...") + .setDescription(data.description) .setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' }) .setImage(data.coverImage) .setThumbnail(data.coverImage) diff --git a/commands/search/searchChar.js b/commands/search/searchChar.js index b75fbf7..88ccf66 100644 --- a/commands/search/searchChar.js +++ b/commands/search/searchChar.js @@ -59,11 +59,13 @@ class char extends Command{ async function sendMessage(id) { const data = await new Anilist().getCharInfo(id); + data.description = data.description.replaceAll('~!', '').replaceAll('!~', '').replaceAll(/<[^>]*>/g, ''); + data.description = data.description.length>1500?(data.description.substring(0, 1500) + "..."):data.description; const embed = new EmbedBuilder() .setTitle(`${data.name.full} (${data.name.native})`) .setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'}) .setColor(0x003284) - .setDescription(data.description.replaceAll('~!', '').replaceAll('!~', '').replaceAll(/<[^>]*>/g, '').substring(0, 1500) + "...") + .setDescription(data.description) .setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' }) .setImage(data.image) .setThumbnail(data.image) diff --git a/commands/search/searchManga.js b/commands/search/searchManga.js index 7b6d459..02bbd3b 100644 --- a/commands/search/searchManga.js +++ b/commands/search/searchManga.js @@ -61,11 +61,14 @@ class manga extends Command{ async function sendMessage(id) { const data = await new Anilist().getMangaInfo(id); + data.description = data.description.replaceAll('~!', '').replaceAll('!~', '').replaceAll(/<[^>]*>/g, ''); + data.description = data.description.length>1500?(data.description.substring(0, 1500) + "..."):data.description; + console.log(data.description) const embed = new EmbedBuilder() .setTitle(`${data.title.romaji} (${data.title.native} / ${data.title.english})`) .setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'}) .setColor(0x003284) - .setDescription(data.description.replaceAll('~!', '').replaceAll('!~', '').replaceAll(/<[^>]*>/g, '').substring(0, 1500) + "...") + .setDescription(data.description) .setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' }) .addFields({name:'Page', value:data.url, inline:true}) .setImage(data.coverImage)