diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-08 19:53:26 -0500 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-08 19:53:26 -0500 |
commit | 2cad871192107bbf36e5df8a9ade159312edbc91 (patch) | |
tree | d2788156203abb00cbc8657f6e43d4bb61e0f337 | |
parent | a9b27cc0a23d397e9bf88c0d34ce02e5f7fbe377 (diff) | |
download | tanzanite-2cad871192107bbf36e5df8a9ade159312edbc91.tar.gz tanzanite-2cad871192107bbf36e5df8a9ade159312edbc91.tar.bz2 tanzanite-2cad871192107bbf36e5df8a9ade159312edbc91.zip |
feat(eval): stop using unicode emojis
-rw-r--r-- | src/commands/dev/eval.ts | 27 | ||||
-rw-r--r-- | src/lib/extensions/discord-akairo/BushClientUtil.ts | 7 |
2 files changed, 23 insertions, 11 deletions
diff --git a/src/commands/dev/eval.ts b/src/commands/dev/eval.ts index 3c9b54c..8e65f05 100644 --- a/src/commands/dev/eval.ts +++ b/src/commands/dev/eval.ts @@ -13,6 +13,7 @@ import { type ArgType } from '#lib'; import { Snowflake as Snowflake_ } from '@sapphire/snowflake'; +import assert from 'assert'; import { Canvas } from 'canvas'; import { exec } from 'child_process'; import { @@ -37,6 +38,7 @@ import { SelectMenuComponent, Util } from 'discord.js'; +import got from 'got'; import path from 'path'; import ts from 'typescript'; import { fileURLToPath } from 'url'; @@ -49,6 +51,9 @@ const { transpile } = ts, __dirname = path.dirname(fileURLToPath(import.meta.url)); /* eslint-enable @typescript-eslint/no-unused-vars */ +// prettier-ignore +util.assertAll(ActivePunishment, BushCommand, BushMessage, BushSlashMessage, Global, Guild, Level, ModLog, Shared, StickyRole, Snowflake_, Canvas, exec, ActionRow, ButtonComponent, ButtonInteraction, Collection, Collector, CommandInteraction, ContextMenuCommandInteraction, DMChannel, Embed, Emoji, Interaction, InteractionCollector, Message, MessageAttachment, MessageCollector, PermissionsBitField, ReactionCollector, SelectMenuComponent, Util, path, ts, fileURLToPath, promisify, assert, got, transpile, emojis, colors, sh, SnowflakeUtil, __dirname); + export default class EvalCommand extends BushCommand { public constructor() { super('eval', { @@ -254,20 +259,20 @@ export default class EvalCommand extends BushCommand { embed.setTitle(`${emojis.successFull} Successfully Evaluated Expression`).setColor(colors.success); if (inputTS) embed - .addField({ name: '📥 Input (typescript)', value: inputTS }) - .addField({ name: '📥 Input (transpiled javascript)', value: inputJS }); - else embed.addField({ name: '📥 Input', value: inputJS }); - embed.addField({ name: '📤 Output', value: output }); - if (methods) embed.addField({ name: '🔧 Methods', value: methods }); - if (proto) embed.addField({ name: '⚙️ Proto', value: proto }); + .addField({ name: ':inbox_tray: Input (typescript)', value: inputTS }) + .addField({ name: ':inbox_tray: Input (transpiled javascript)', value: inputJS }); + else embed.addField({ name: ':inbox_tray: Input', value: inputJS }); + embed.addField({ name: ':outbox_tray: Output', value: output }); + if (methods) embed.addField({ name: ':wrench: Methods', value: methods }); + if (proto) embed.addField({ name: ':gear: Proto', value: proto }); } catch (e) { embed.setTitle(`${emojis.errorFull} Unable to Evaluate Expression`).setColor(colors.error); if (inputTS) embed - .addField({ name: '📥 Input (typescript)', value: inputTS }) - .addField({ name: '📥 Input (transpiled javascript)', value: inputJS }); - else embed.addField({ name: '📥 Input', value: inputJS }); - embed.addField({ name: '📤 Error', value: await util.inspectCleanRedactCodeblock(e, 'js') }); + .addField({ name: ':inbox_tray: Input (typescript)', value: inputTS }) + .addField({ name: ':inbox_tray: Input (transpiled javascript)', value: inputJS }); + else embed.addField({ name: ':inbox_tray: Input', value: inputJS }); + embed.addField({ name: ':outbox_tray: Error', value: await util.inspectCleanRedactCodeblock(e, 'js') }); } embed.setTimestamp().setFooter({ text: message.author.tag, iconURL: message.author.displayAvatarURL() ?? undefined }); @@ -286,4 +291,4 @@ export default class EvalCommand extends BushCommand { } } -/** @typedef {ActivePunishment|Global|Guild|Level|ModLog|StickyRole|ButtonInteraction|Collection|Collector|CommandInteraction|ContextMenuCommandInteraction|DMChannel|Emoji|Interaction|InteractionCollector|Message|ActionRow|MessageAttachment|ButtonComponent|MessageCollector|SelectMenuComponent|ReactionCollector|Util|Canvas|Shared|PermissionsBitField} VSCodePleaseDontRemove */ +/** @typedef {ActivePunishment|Global|Guild|Level|ModLog|StickyRole|ButtonInteraction|Collection|Collector|CommandInteraction|ContextMenuCommandInteraction|DMChannel|Emoji|Interaction|InteractionCollector|Message|ActionRow|MessageAttachment|ButtonComponent|MessageCollector|SelectMenuComponent|ReactionCollector|Util|Canvas|Shared|PermissionsBitField|got} VSCodePleaseDontRemove */ diff --git a/src/lib/extensions/discord-akairo/BushClientUtil.ts b/src/lib/extensions/discord-akairo/BushClientUtil.ts index a3ddfed..5ffed75 100644 --- a/src/lib/extensions/discord-akairo/BushClientUtil.ts +++ b/src/lib/extensions/discord-akairo/BushClientUtil.ts @@ -17,6 +17,7 @@ import { type PronounCode } from '#lib'; import { humanizeDuration } from '@notenoughupdates/humanize-duration'; +import assert from 'assert'; import { exec } from 'child_process'; import deepLock from 'deep-lock'; import { ClientUtil, Util as AkairoUtil } from 'discord-akairo'; @@ -911,6 +912,12 @@ export class BushClientUtil extends ClientUtil { ).toString()}&permissions=${PermissionsBitField.All}&scope=bot%20applications.commands`; } + public assertAll(...args: any[]): void { + for (let i = 0; i < args.length; i++) { + assert(args[i], `assertAll index ${i} failed`); + } + } + /** * A wrapper for the Argument class that adds custom typings. */ |