import { BushCommand, BushGuildMember, BushMessage, BushRole, BushSlashMessage } from '@lib'; import { Argument } from 'discord-akairo'; import { ColorResolvable, MessageEmbed, Role } from 'discord.js'; import { Constructor } from 'tinycolor2'; // eslint-disable-next-line @typescript-eslint/no-var-requires const tinycolor: Constructor = require('tinycolor2'); // this is the only way I got it to work consistently const isValidTinyColor = (_message: BushMessage, phase: string) => { // if the phase is a number it converts it to hex incase it could be representing a color in decimal const newPhase = Number.isNaN(phase) ? phase : `#${Number(phase).toString(16)}`; return tinycolor(newPhase).isValid() ? newPhase : null; }; export default class ColorCommand extends BushCommand { public constructor() { super('color', { aliases: ['color'], category: 'info', description: { content: 'Find the color of a hex code, user, or role.', usage: 'color ', examples: ['color #0000FF'] }, args: [ { id: 'color', type: Argument.union(isValidTinyColor, 'role', 'member'), prompt: { start: 'What color code, role, or user would you like to find the color of?', retry: '{error} Choose a valid color, role, or member.' } } ], channel: 'guild', clientPermissions: ['EMBED_LINKS', 'SEND_MESSAGES'] }); } public removePrefixAndParenthesis(color: string): string { return color.substr(4, color.length - 5); } public async exec( message: BushMessage | BushSlashMessage, args: { color: string | BushRole | BushGuildMember } ): Promise { const color = typeof args.color === 'string' ? tinycolor(args.color) : args.color instanceof Role ? tinycolor(args.color.hexColor) : tinycolor(args.color.displayHexColor); const embed = new MessageEmbed() .addField('» Hexadecimal', color.toHexString()) .addField('» Decimal', `${parseInt(color.toHex(), 16)}`) .addField('» HSL', this.removePrefixAndParenthesis(color.toHslString())) .addField('» RGB', this.removePrefixAndParenthesis(color.toRgbString())) .setColor(color.toHex() as ColorResolvable); return await message.util.reply({ embeds: [embed] }); } }