diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-06-14 22:51:48 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-06-14 22:51:48 -0400 |
commit | d055e0dbb86ef7fd4ee96a1531b51181e825fb4b (patch) | |
tree | e2ed9e956f2d8167e7f225383f9917e66d2a2803 /src/lib/utils/Console.ts | |
parent | 335f7c30994fc8c4e787f407dfd4c2de63b400e3 (diff) | |
download | tanzanite-d055e0dbb86ef7fd4ee96a1531b51181e825fb4b.tar.gz tanzanite-d055e0dbb86ef7fd4ee96a1531b51181e825fb4b.tar.bz2 tanzanite-d055e0dbb86ef7fd4ee96a1531b51181e825fb4b.zip |
made a few changes
Diffstat (limited to 'src/lib/utils/Console.ts')
-rw-r--r-- | src/lib/utils/Console.ts | 188 |
1 files changed, 105 insertions, 83 deletions
diff --git a/src/lib/utils/Console.ts b/src/lib/utils/Console.ts index b74ea07..a3bf326 100644 --- a/src/lib/utils/Console.ts +++ b/src/lib/utils/Console.ts @@ -1,93 +1,115 @@ -// import chalk from 'chalk'; -// import { BushClient } from '../extensions/BushClient'; +/* eslint-disable @typescript-eslint/no-explicit-any */ +/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ +import chalk from 'chalk'; +import { BushClient } from '../extensions/BushClient'; -// export class CustomConsole { -// private client: BushClient; -// public constructor(client: BushClient) { -// this.client = client; -// } +export class Log { + client: BushClient; -// private parseColors(content: any, color: 'blueBright' | 'blackBright' | 'redBright' | 'yellowBright' | 'greenBright'): string | any { -// if (typeof content === 'string') { -// const newContent: Array<string> = content.split(/<<|>>/); -// const tempParsedArray: Array<string> = []; -// newContent.forEach((value, index) => { -// if (index % 2 !== 0) { -// tempParsedArray.push(chalk[color](value)); -// } else { -// tempParsedArray.push(value); -// } -// }); -// return tempParsedArray.join(''); -// } else { -// return content; -// } -// } + public constructor(client: BushClient) { + this.client = client; + } -// private timeStamp(): string { -// const now = new Date(); -// const hours = now.getHours(); -// const minute = now.getMinutes(); -// let hour = hours; -// let amOrPm: 'AM' | 'PM' = 'AM'; -// if (hour > 12) { -// amOrPm = 'PM'; -// hour = hour - 12; -// } + private parseColors( + content: any, + color: 'blueBright' | 'blackBright' | 'redBright' | 'yellowBright' | 'greenBright' + ): string | any { + if (typeof content === 'string') { + const newContent: Array<string> = content.split(/<<|>>/); + const tempParsedArray: Array<string> = []; + newContent.forEach((value, index) => { + if (index % 2 !== 0) { + tempParsedArray.push(chalk[color](value)); + } else { + tempParsedArray.push(value); + } + }); + return tempParsedArray.join(''); + } else { + return content; + } + } -// return `${hour >= 10 ? hour : `0${hour}`}:${minute >= 10 ? minute : `0${minute}`} ${amOrPm}`; -// } + private timeStamp(): string { + const now = new Date(); + const hours = now.getHours(); + const minute = now.getMinutes(); + let hour = hours; + let amOrPm: 'AM' | 'PM' = 'AM'; + if (hour > 12) { + amOrPm = 'PM'; + hour = hour - 12; + } -// /** -// * Logs debug information. -// * @param content - The content to log. -// */ -// public debug(content: any): void { -// console.log(`${chalk.bgGrey(this.timeStamp())} ${chalk.grey('[Debug]')}`, content); -// } + return `${hour >= 10 ? hour : `0${hour}`}:${minute >= 10 ? minute : `0${minute}`} ${amOrPm}`; + } -// /** -// * Logs verbose information. Highlight information by surrounding it in `<<>>`. -// * @param header - The header displayed before the content, displayed in grey. -// * @param content - The content to log, highlights displayed in bright black. -// */ -// public verbose(header: string, content: string): void { -// return console.info(`${chalk.bgGrey(this.timeStamp())} ${chalk.grey(`[${header}]`)} ` + this.parseColors(content, 'blackBright')); -// } + /** + * Logs debug information. Only works in dev is enabled in the config. + * @param content - The content to log. + */ + public debug(...content: any): void { + if (this.client.config.dev) { + console.log(`${chalk.bgGrey(this.timeStamp())} ${chalk.grey('[Debug]')}`, ...content); + } + } -// /** -// * Logs information. Highlight information by surrounding it in `<<>>`. -// * @param header - The header displayed before the content, displayed in cyan. -// * @param content - The content to log, highlights displayed in bright blue. -// */ -// public info(header: string, content: string): void { -// return console.info(`${chalk.bgCyan(this.timeStamp())} ${chalk.cyan(`[${header}]`)} ` + this.parseColors(content, 'blueBright')); -// } + /** + * Logs verbose information. Highlight information by surrounding it in `<<>>`. + * @param header - The header displayed before the content, displayed in grey. + * @param content - The content to log, highlights displayed in bright black. + */ + public verbose(header: string, content: any): void { + if (this.client.config.logging.verbose) { + return console.info( + `${chalk.bgGrey(this.timeStamp())} ${chalk.grey(`[${header}]`)} ` + this.parseColors(content, 'blackBright') + ); + } + } -// /** -// * Logs warnings. Highlight information by surrounding it in `<<>>`. -// * @param header - The header displayed before the content, displayed in yellow. -// * @param content - The content to log, highlights displayed in bright yellow. -// */ -// public warn(header: string, content: string): void { -// return console.warn(`${chalk.bgYellow(this.timeStamp())} ${chalk.yellow(`[${header}]`)} ` + this.parseColors(content, 'yellowBright')); -// } + /** + * Logs information. Highlight information by surrounding it in `<<>>`. + * @param header - The header displayed before the content, displayed in cyan. + * @param content - The content to log, highlights displayed in bright blue. + */ + public info(header: string, content: any): void { + if (this.client.config.logging.info) { + return console.info( + `${chalk.bgCyan(this.timeStamp())} ${chalk.cyan(`[${header}]`)} ` + this.parseColors(content, 'blueBright') + ); + } + } -// /** -// * Logs errors. Highlight information by surrounding it in `<<>>`. -// * @param header - The header displayed before the content, displayed in bright red. -// * @param content - The content to log, highlights displayed in bright red. -// */ -// public error(header: string, content: string): void { -// return console.error(`${chalk.bgRedBright(this.timeStamp())} ${chalk.redBright(`[${header}]`)} ` + this.parseColors(content, 'redBright')); -// } + /** + * Logs warnings. Highlight information by surrounding it in `<<>>`. + * @param header - The header displayed before the content, displayed in yellow. + * @param content - The content to log, highlights displayed in bright yellow. + */ + public warn(header: string, content: any): void { + return console.warn( + `${chalk.bgYellow(this.timeStamp())} ${chalk.yellow(`[${header}]`)} ` + this.parseColors(content, 'yellowBright') + ); + } -// /** -// * Logs successes. Highlight information by surrounding it in `<<>>`. -// * @param header - The header displayed before the content, displayed in green. -// * @param content - The content to log, highlights displayed in bright green. -// */ -// public success(header: string, content: string): void { -// return console.log(`${chalk.bgGreen(this.timeStamp())} ${chalk.greenBright(`[${header}]`)} ` + this.parseColors(content, 'greenBright')); -// } -// } + /** + * Logs errors. Highlight information by surrounding it in `<<>>`. + * @param header - The header displayed before the content, displayed in bright red. + * @param content - The content to log, highlights displayed in bright red. + */ + public error(header: string, content: any): void { + return console.error( + `${chalk.bgRedBright(this.timeStamp())} ${chalk.redBright(`[${header}]`)} ` + this.parseColors(content, 'redBright') + ); + } + + /** + * Logs successes. Highlight information by surrounding it in `<<>>`. + * @param header - The header displayed before the content, displayed in green. + * @param content - The content to log, highlights displayed in bright green. + */ + public success(header: string, content: any): void { + return console.log( + `${chalk.bgGreen(this.timeStamp())} ${chalk.greenBright(`[${header}]`)} ` + this.parseColors(content, 'greenBright') + ); + } +} |