Improved display of information

master
masterhc 1 year ago
parent 97514dbee7
commit 77141d3b0a

@ -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)

@ -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)

@ -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)

Loading…
Cancel
Save