* Fix tests * Update coverage * Remove unrequired mock files * Add about command test * Update about tests * Ban command tests * eval command tests * Start help command tests * Add help command tests * Add kick command tests * Mute command tests * Poll command tests * Add role command tests Signed-off-by: Ethan Lane <ethan@vylpes.com> * Add rules command tests * Add unmute command tests * Add warn command tests * Add MemberEvents tests * Add GuildMemberUpdate tests Signed-off-by: Ethan Lane <ethan@vylpes.com> * Add MessageEvents tests * Add StringTools test Signed-off-by: Ethan Lane <ethan@vylpes.com> * Add embed tests Signed-off-by: Ethan Lane <ethan@vylpes.com> * Add GitHub Actions Signed-off-by: Ethan Lane <ethan@vylpes.com> * Move to tslint Signed-off-by: Ethan Lane <ethan@vylpes.com> * Remove tslint Signed-off-by: Ethan Lane <ethan@vylpes.com> * Remove linting script Signed-off-by: Ethan Lane <ethan@vylpes.com>
26 lines
No EOL
711 B
TypeScript
26 lines
No EOL
711 B
TypeScript
import { MessageEmbed } from "discord.js";
|
|
import { ICommandContext } from "../../contracts/ICommandContext";
|
|
|
|
export default class PublicEmbed extends MessageEmbed {
|
|
public context: ICommandContext;
|
|
|
|
constructor(context: ICommandContext, title: string, description: string) {
|
|
super();
|
|
|
|
super.setColor(process.env.EMBED_COLOUR!);
|
|
super.setTitle(title);
|
|
super.setDescription(description);
|
|
|
|
this.context = context;
|
|
}
|
|
|
|
// Detail methods
|
|
public AddReason(message: String) {
|
|
this.addField("Reason", message || "*none*");
|
|
}
|
|
|
|
// Send methods
|
|
public SendToCurrentChannel() {
|
|
this.context.message.channel.send(this);
|
|
}
|
|
} |