const config = require('../../../../config.json'); const logger = require('../../../handlers/logger'); const credits = require('../../../helpers/database/models/creditSchema'); const creditNoun = require('../../../helpers/creditNoun'); module.exports = async (interaction) => { try { const user = await interaction.options.getUser('user'); await credits // eslint-disable-next-line max-len .findOne({ userId: user ? user.id : interaction.user.id, guildId: interaction.member.guild.id }) .then(async (data) => { if (!data) { const embed = { title: 'Balance', description: `${user} has no credits.`, color: config.colors.success, timestamp: new Date(), footer: { iconURL: config.footer.icon, text: config.footer.text }, }; return interaction.editReply({ embeds: [embed], ephemeral: true }); } const { balance } = data; const embed = { title: 'Balance', description: `${user ? `${user} has` : 'You have'} ${creditNoun(balance)}.`, color: config.colors.success, timestamp: new Date(), footer: { iconURL: config.footer.icon, text: config.footer.text }, }; return interaction.editReply({ embeds: [embed], ephemeral: true }); }) .catch(async (err) => logger.error(err)); } catch { await logger.error(); } };