const discord = require('discord.js') const bot = require('../../index') const client = bot.client const config = bot.config const log = bot.errorLog.log const l = bot.language const storage = bot.storage const tsconfig = bot.tsconfig /** * * @param {String} name * @param {String} id * @param {Number} rawprocesstime milliseconds * @param {discord.User} user */ exports.beingprocessed = (name,id,rawprocesstime,user) => { const newtime = rawprocesstime const processtime = "" const embed = new discord.EmbedBuilder() .setTitle("🧾 "+l.transcripts.title) .setColor(config.color) .setAuthor({name:user.tag,iconURL:user.displayAvatarURL()}) .setFooter({text:name}) .setDescription("`"+l.transcripts.processed+"...`\n"+l.transcripts.wait+"\n\n"+l.transcripts.estimated+": "+processtime) return embed } /** * * @param {String} name * @param {String} id * @param {String} url * @param {discord.User} user */ exports.tsready = (name,id,url,user) => { const embed = new discord.EmbedBuilder() .setTitle("🧾 "+l.transcripts.title) .setColor(config.color) .setAuthor({name:user.tag,iconURL:user.displayAvatarURL()}) .setFooter({text:name}) if (url){ embed.setURL(url) embed.setDescription("\n["+l.transcripts.available+"]("+url+")\n") }else{ embed.setDescription("\n"+l.transcripts.available+"\n") } return embed } /** * * @param {String} name * @param {String} id * @param {discord.User} user * @param {undefined|String} err */ exports.tserror = (name,id,user,err) => { const embed = new discord.EmbedBuilder() .setTitle("❌ "+l.transcripts.title) .setColor(discord.Colors.Red) .setAuthor({name:user.tag,iconURL:user.displayAvatarURL()}) .setFooter({text:name}) const errDesc = (typeof err == "string") ? "\n"+err : "" embed.setDescription("Something went wrong while creating the HTML transcript.\n\n[possible reasons](https://docs.openticket.dj-dj.be/the-system/transcripts/transcript-errors)"+errDesc) return embed }