Files
MupBot/helpers.js
2021-01-15 12:21:55 +00:00

34 lines
1.3 KiB
JavaScript

module.exports = {
// Return a stylised embed for consistancy - this allows you to add additional properties like fields
generateEmbedMessage : function (Discord, logger, message, title, description, colour = '#F4B400') {
// For documentation see https://github.com/AnIdiotsGuide/discordjs-bot-guide/blob/master/first-bot/using-embeds-in-messages.md
try {
const embed = new Discord.MessageEmbed()
.setTitle(title)
.setColor(colour)
.setDescription(description)
.setFooter('This is a community-made open source bot - if it goes down, fix it')
.setThumbnail('https://cdn.discordapp.com/icons/333376110329069578/b5cf0e90b74a3e1b828c15a262b7a5c8.png?size=128')
.setTimestamp();
return embed;
} catch (error) {
logger.error('Failed to send embed message', error);
message.channel.send('There was a problem, sorry!');
}
},
// Trim a string to a specific character length
trim: function (Discord, logger, string, max) {
try {
if (string.length > max) {
return `${string.slice(0, max - 3)}...`;
}
else {
return string;
}
} catch (error) {
logger.error('Failed to trim selection', error);
message.channel.send('There was a problem, sorry!');
}
}
};