//META{"name":"JoinedAtDate","website":"https://github.com/mwittrien/BetterDiscordAddons/tree/master/Plugins/JoinedAtDate","source":"https://raw.githubusercontent.com/mwittrien/BetterDiscordAddons/master/Plugins/JoinedAtDate/JoinedAtDate.plugin.js"}*// class JoinedAtDate { getName () {return "JoinedAtDate";} getVersion () {return "1.1.4";} getAuthor () {return "DevilBro";} getDescription () {return "Displays the Joined At Date of the current Server for a Member in the UserPopout and UserModal.";} constructor () { this.changelog = { "fixed":[["Milliseconds","Milliseconds are now properlly formatted when leading zeros is enabled (9 => 009, 12 => 012)"]] }; this.patchModules = { "UserPopout":"componentDidMount", "UserProfile":"componentDidMount" }; } initConstructor () { this.loadedusers = {}; this.css = ` ${BDFDB.dotCNS.userpopout + BDFDB.dotCN.nametag} { margin-bottom: 4px; } ${BDFDB.dotCN.userprofile} .joinedAtDate { margin-right: 20px; } ${BDFDB.dotCNS.themelight + BDFDB.dotCN.userpopoutheadernormal} .joinedAtDate { color: #b9bbbe; } ${BDFDB.dotCNS.themelight + BDFDB.dotCN.userpopoutheader + BDFDB.notCN.userpopoutheadernormal} .joinedAtDate, ${BDFDB.dotCNS.themedark + BDFDB.dotCN.userpopoutheader} .joinedAtDate { color: hsla(0,0%,100%,.6); } ${BDFDB.dotCNS.themelight + BDFDB.dotCN.userprofiletopsectionnormal} .joinedAtDate { color: hsla(216,4%,74%,.6); } ${BDFDB.dotCN.themelight} [class*='topSection']${BDFDB.notCN.userprofiletopsectionnormal} .joinedAtDate, ${BDFDB.dotCN.themedark} [class*='topSection'] .joinedAtDate { color: hsla(0,0%,100%,.6); }`; this.defaults = { settings: { addInUserPopout: {value:true, description:"Add in User Popouts:"}, addInUserProfil: {value:true, description:"Add in User Profile Modal:"}, displayTime: {value:true, description:"Display the Time in the Timestamp:"}, displayDate: {value:true, description:"Display the Date in the Timestamp:"}, cutSeconds: {value:false, description:"Cut off Seconds of the Time:"}, forceZeros: {value:false, description:"Force leading Zeros:"}, otherOrder: {value:false, description:"Show the Time before the Date:"} }, choices: { joinedAtDateLang: {value:"$discord", description:"Joined At Date Format:"} }, formats: { ownFormat: {value:"$hour:$minute:$second, $day.$month.$year", description:"Own Format:"} } }; } getSettingsPanel () { if (!global.BDFDB || typeof BDFDB != "object" || !BDFDB.loaded || !this.started) return; let settings = BDFDB.DataUtils.get(this, "settings"); let choices = BDFDB.DataUtils.get(this, "choices"); let formats = BDFDB.DataUtils.get(this, "formats"); let settingshtml = `
${this.name}
`; for (let key in settings) { settingshtml += `

${this.defaults.settings[key].description}

`; } for (let key in choices) { settingshtml += `

${this.defaults.choices[key].description}

${BDFDB.createSelectMenu(this.createSelectChoice(choices[key]), choices[key], key)}
`; } for (let key in formats) { settingshtml += `

${this.defaults.formats[key].description}

`; } let infoHidden = BDFDB.DataUtils.load(this, "hideInfo", "hideInfo"); settingshtml += `
Information
`; settingshtml += `
`; settingshtml += `
$hour will be replaced with the current hour
$minute will be replaced with the current minutes
$second will be replaced with the current seconds
$msecond will be replaced with the current milliseconds
$timemode will change $hour to a 12h format and will be replaced with AM/PM
$year will be replaced with the current year
$month will be replaced with the current month
$day will be replaced with the current day
$monthnameL will be replaced with the monthname in long format based on the Discord Language
$monthnameS will be replaced with the monthname in short format based on the Discord Language
$weekdayL will be replaced with the weekday in long format based on the Discord Language
$weekdayS will be replaced with the weekday in short format based on the Discord Language
`; settingshtml += `
`; let settingspanel = BDFDB.DOMUtils.create(settingshtml); BDFDB.initElements(settingspanel, this); BDFDB.ListenerUtils.add(this, settingspanel, "click", ".settings-switch", () => {setImmediate(() => {this.updateSettingsPanel(settingspanel);})}); BDFDB.ListenerUtils.add(this, settingspanel, "keyup", BDFDB.dotCN.input, () => {this.saveInputs(settingspanel);}); BDFDB.ListenerUtils.add(this, settingspanel, "click", ".toggle-info", e => {this.toggleInfo(e.currentTarget);}); BDFDB.ListenerUtils.add(this, settingspanel, "click", BDFDB.dotCN.selectcontrol, e => { BDFDB.openDropdownMenu(e, this.saveSelectChoice.bind(this), this.createSelectChoice.bind(this), this.languages); }); return settingspanel; } //legacy load () {} start () { if (!global.BDFDB) global.BDFDB = {myPlugins:{}}; if (global.BDFDB && global.BDFDB.myPlugins && typeof global.BDFDB.myPlugins == "object") global.BDFDB.myPlugins[this.getName()] = this; var libraryScript = document.querySelector('head script#BDFDBLibraryScript'); if (!libraryScript || (performance.now() - libraryScript.getAttribute("date")) > 600000) { if (libraryScript) libraryScript.remove(); libraryScript = document.createElement("script"); libraryScript.setAttribute("id", "BDFDBLibraryScript"); libraryScript.setAttribute("type", "text/javascript"); libraryScript.setAttribute("src", "https://mwittrien.github.io/BetterDiscordAddons/Plugins/BDFDB.min.js"); libraryScript.setAttribute("date", performance.now()); libraryScript.addEventListener("load", () => {this.initialize();}); document.head.appendChild(libraryScript); } else if (global.BDFDB && typeof BDFDB === "object" && BDFDB.loaded) this.initialize(); this.startTimeout = setTimeout(() => {this.initialize();}, 30000); } initialize () { if (global.BDFDB && typeof BDFDB === "object" && BDFDB.loaded) { if (this.started) return; BDFDB.PluginUtils.init(this); this.languages = Object.assign({"own":{name:"Own",id:"own",integrated:false,dic:false}},BDFDB.LanguageUtils.languages); BDFDB.ModuleUtils.forceAllUpdates(this); } else console.error(`%c[${this.getName()}]%c`, "color: #3a71c1; font-weight: 700;", "", "Fatal Error: Could not load BD functions!"); } stop () { if (global.BDFDB && typeof BDFDB === "object" && BDFDB.loaded) { this.stopping = true; BDFDB.DOMUtils.remove(".joinedAtDate"); BDFDB.PluginUtils.clear(this); } } // begin of own functions saveInputs (settingspanel) { let formats = {}; for (let input of settingspanel.querySelectorAll(BDFDB.dotCN.input)) { formats[input.getAttribute("option")] = input.value; } BDFDB.DataUtils.save(formats, this, "formats"); this.updateSettingsPanel(settingspanel); } updateSettingsPanel (settingspanel) { let choices = BDFDB.DataUtils.get(this, "choices"); for (let key in choices) { settingspanel.querySelector(`${BDFDB.dotCN.select}[type='${key}'] .languageTimestamp`).innerText = this.getTimestamp(this.languages[choices[key]].id); } } toggleInfo (ele) { BDFDB.DOMUtils.toggleClass(ele.querySelector("svg"), BDFDB.disCN.directionright); BDFDB.DOMUtils.toggle(ele.nextElementSibling); BDFDB.DataUtils.save(BDFDB.DOMUtils.isHidden(ele.nextElementSibling), this, "hideInfo", "hideInfo"); } saveSelectChoice (selectWrap, type, choice) { if (type && choice) { selectWrap.querySelector(".languageName").innerText = this.languages[choice].name; selectWrap.querySelector(".languageTimestamp").innerText = this.getTimestamp(this.languages[choice].id); BDFDB.DataUtils.save(choice, this, "choices", type); } } createSelectChoice (choice) { return `
${this.languages[choice].name}
${this.getTimestamp(this.languages[choice].id)}
`; } processUserPopout (instance, wrapper, returnvalue) { if (instance.props && instance.props.user && BDFDB.DataUtils.get(this, "settings", "addInUserPopout")) { this.addJoinedAtDate(instance.props.user, wrapper.querySelector(BDFDB.dotCN.userpopoutheadertext), wrapper.parentElement); } } processUserProfile (instance, wrapper, returnvalue) { if (instance.props && instance.props.user && BDFDB.DataUtils.get(this, "settings", "addInUserProfil")) { this.addJoinedAtDate(instance.props.user, wrapper.querySelector(BDFDB.dotCN.userprofileheaderinfo), null); } } addJoinedAtDate (info, container, popout) { if (!info || info.discriminator == "0000" || !container || container.querySelector(".joinedAtDate")) return; let guildid = BDFDB.LibraryModules.LastGuildStore.getGuildId(); if (guildid) { if (!this.loadedusers[guildid]) this.loadedusers[guildid] = {}; let addTimestamp = (timestamp) => { if (document.contains(container)) { BDFDB.DOMUtils.remove(container.querySelectorAll(".joinedAtDate")); if (BDFDB.ObjectUtils.is(container.JoinedAtDateObserver)) container.JoinedAtDateObserver.disconnect(); let choice = BDFDB.DataUtils.get(this, "choices", "joinedAtDateLang"); let nametag = container.querySelector(BDFDB.dotCN.nametag); container.insertBefore(BDFDB.DOMUtils.create(`
${this.labels.joinedat_text.replace("{{time}}", this.getTimestamp(this.languages[choice].id, timestamp))}
`), nametag ? nametag.nextSibling : null); BDFDB.initElements(container, this); if (popout && popout.style.transform.indexOf("translateY(-1") == -1) { let arect = BDFDB.DOMUtils.getRects(document.querySelector(BDFDB.dotCN.appmount)), prect = BDFDB.DOMUtils.getRects(popout); popout.style.setProperty("top", (prect.y + prect.height > arect.height ? (arect.height - prect.height) : prect.y) + "px"); } container.JoinedAtDateObserver = new MutationObserver((changes, _) => {changes.forEach((change, i) => {change.addedNodes.forEach((node) => { if (node && BDFDB.DOMUtils.containsClass(node, BDFDB.disCN.nametag)) addTimestamp(timestamp); });});}); container.JoinedAtDateObserver.observe(container, {childList: true, subtree:true}); } }; if (this.loadedusers[guildid][info.id]) addTimestamp(this.loadedusers[guildid][info.id]); else BDFDB.LibraryModules.APIUtils.get(BDFDB.DiscordConstants.Endpoints.GUILD_MEMBER(guildid,info.id)).then(result => { if (result && result.body) { let joineddate = new Date(result.body.joined_at); this.loadedusers[guildid][info.id] = joineddate; addTimestamp(joineddate); } }); } } getTimestamp (languageid, time) { let timeobj = time ? time : new Date(); if (typeof time == "string") timeobj = new Date(time); if (timeobj.toString() == "Invalid Date") timeobj = new Date(parseInt(time)); if (timeobj.toString() == "Invalid Date") return; let settings = BDFDB.DataUtils.get(this, "settings"), timestring = ""; if (languageid != "own") { let timestamp = []; if (settings.displayDate) timestamp.push(timeobj.toLocaleDateString(languageid)); if (settings.displayTime) timestamp.push(settings.cutSeconds ? this.cutOffSeconds(timeobj.toLocaleTimeString(languageid)) : timeobj.toLocaleTimeString(languageid)); if (settings.otherOrder) timestamp.reverse(); timestring = timestamp.length > 1 ? timestamp.join(", ") : (timestamp.length > 0 ? timestamp[0] : ""); if (timestring && settings.forceZeros) timestring = this.addLeadingZeros(timestring); } else { let ownformat = BDFDB.DataUtils.get(this, "formats", "ownFormat"); languageid = BDFDB.LanguageUtils.getLanguage().id; let hour = timeobj.getHours(), minute = timeobj.getMinutes(), second = timeobj.getSeconds(), msecond = timeobj.getMilliseconds(), day = timeobj.getDate(), month = timeobj.getMonth()+1, timemode = ""; if (ownformat.indexOf("$timemode") > -1) { timemode = hour >= 12 ? "PM" : "AM"; hour = hour % 12; hour = hour ? hour : 12; } timestring = ownformat .replace("$hour", settings.forceZeros && hour < 10 ? "0" + hour : hour) .replace("$minute", minute < 10 ? "0" + minute : minute) .replace("$second", second < 10 ? "0" + second : second) .replace("$msecond", settings.forceZeros ? (msecond < 10 ? "00" + msecond : (msecond < 100 ? "0" + msecond : msecond)) : msecond) .replace("$timemode", timemode) .replace("$weekdayL", timeobj.toLocaleDateString(languageid,{weekday: "long"})) .replace("$weekdayS", timeobj.toLocaleDateString(languageid,{weekday: "short"})) .replace("$monthnameL", timeobj.toLocaleDateString(languageid,{month: "long"})) .replace("$monthnameS", timeobj.toLocaleDateString(languageid,{month: "short"})) .replace("$day", settings.forceZeros && day < 10 ? "0" + day : day) .replace("$month", settings.forceZeros && month < 10 ? "0" + month : month) .replace("$year", timeobj.getFullYear()); } return timestring; } cutOffSeconds (timestring) { return timestring.replace(/(.*):(.*):(.{2})(.*)/, "$1:$2$4"); } addLeadingZeros (timestring) { let chararray = timestring.split(""); let numreg = /[0-9]/; for (let i = 0; i < chararray.length; i++) { if (!numreg.test(chararray[i-1]) && numreg.test(chararray[i]) && !numreg.test(chararray[i+1])) chararray[i] = "0" + chararray[i]; } return chararray.join(""); } setLabelsByLanguage () { switch (BDFDB.LanguageUtils.getLanguage().id) { case "hr": //croatian return { joinedat_text: "Pridružio {{time}}" }; case "da": //danish return { joinedat_text: "Tilmeldt den {{time}}" }; case "de": //german return { joinedat_text: "Beigetreten am {{time}}" }; case "es": //spanish return { joinedat_text: "Unido el {{time}}" }; case "fr": //french return { joinedat_text: "Rejoint le {{time}}" }; case "it": //italian return { joinedat_text: "Iscritto il {{time}}" }; case "nl": //dutch return { joinedat_text: "Aangesloten op {{time}}" }; case "no": //norwegian return { joinedat_text: "Ble med på {{time}}" }; case "pl": //polish return { joinedat_text: "Dołączył {{time}}" }; case "pt-BR": //portuguese (brazil) return { joinedat_text: "Inscreveu-se em {{time}}" }; case "fi": //finnish return { joinedat_text: "Liittynyt {{time}}" }; case "sv": //swedish return { joinedat_text: "Anlände den {{time}}" }; case "tr": //turkish return { joinedat_text: "Katıldı {{time}}" }; case "cs": //czech return { joinedat_text: "Přihlásil dne {{time}}" }; case "bg": //bulgarian return { joinedat_text: "Се присъедини на {{time}}" }; case "ru": //russian return { joinedat_text: "Присоединился {{time}}" }; case "uk": //ukrainian return { joinedat_text: "Приєднався {{time}}" }; case "ja": //japanese return { joinedat_text: "{{time}} に参加しました" }; case "zh-TW": //chinese (traditional) return { joinedat_text: "加入於 {{time}}" }; case "ko": //korean return { joinedat_text: "{{time}} 에 가입" }; default: //default: english return { joinedat_text: "Joined on {{time}}" }; } } }