//META{"name":"CreationDate","website":"https://github.com/mwittrien/BetterDiscordAddons/tree/master/Plugins/CreationDate","source":"https://raw.githubusercontent.com/mwittrien/BetterDiscordAddons/master/Plugins/CreationDate/CreationDate.plugin.js"}*// class CreationDate { getName () {return "CreationDate";} getVersion () {return "1.2.5";} getAuthor () {return "DevilBro";} getDescription () {return "Displays the Creation Date of an Account in the UserPopout and UserModal.";} initConstructor () { this.labels = {}; this.patchModules = { "UserPopout":"componentDidMount", "UserProfile":"componentDidMount" }; this.languages; this.css = ` ${BDFDB.dotCNS.userpopout + BDFDB.dotCN.nametag} { margin-bottom: 4px; } ${BDFDB.dotCN.userprofile} .creationDate { margin-right: 20px; } ${BDFDB.dotCNS.themelight + BDFDB.dotCN.userpopoutheadernormal} .creationDate { color: #b9bbbe; } ${BDFDB.dotCNS.themelight + BDFDB.dotCN.userpopoutheader + BDFDB.notCN.userpopoutheadernormal} .creationDate, ${BDFDB.dotCNS.themedark + BDFDB.dotCN.userpopoutheader} .creationDate { color: hsla(0,0%,100%,.6); } ${BDFDB.dotCNS.themelight + BDFDB.dotCN.userprofiletopsectionnormal} .creationDate { color: hsla(216,4%,74%,.6); } ${BDFDB.dotCN.themelight} [class*='topSection']${BDFDB.notCN.userprofiletopsectionnormal} .creationDate, ${BDFDB.dotCN.themedark} [class*='topSection'] .creationDate { color: hsla(0,0%,100%,.6); }`; this.defaults = { settings: { addInUserPopout: {value:true, description:"Add in User Popouts:"}, addInUserProfil: {value:true, description:"Add in User Profil Modal:"}, addCreationTime: {value:true, description:"Display the Time of Creation:"}, forceZeros: {value:false, description:"Force leading Zeros:"} }, choices: { creationDateLang: {value:"$discord", description:"Creation Date Format:"} } }; } getSettingsPanel () { if (!global.BDFDB || typeof BDFDB != "object" || !BDFDB.loaded || !this.started) return; let settings = BDFDB.getAllData(this, "settings"); let choices = BDFDB.getAllData(this, "choices"); 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}

${this.languages[choices[key]].name}
${this.getCreationTime(this.languages[choices[key]].id)}
`; } settingshtml += `
`; let settingspanel = BDFDB.htmlToElement(settingshtml); BDFDB.initElements(settingspanel, this); BDFDB.addEventListener(this, settingspanel, "click", ".settings-switch", () => { let choices = BDFDB.getAllData(this, "choices"); for (let key in choices) settingspanel.querySelector(`${BDFDB.dotCN.select}[type='${key}'] .languageTimestamp`).innerText = this.getCreationTime(this.languages[choices[key]].id); }); BDFDB.addEventListener(this, settingspanel, "click", BDFDB.dotCN.selectcontrol, e => {this.openDropdownMenu(e);}); return settingspanel; } //legacy load () {} start () { var libraryScript = document.querySelector('head script[src="https://mwittrien.github.io/BetterDiscordAddons/Plugins/BDFDB.js"]'); if (!libraryScript || performance.now() - libraryScript.getAttribute("date") > 600000) { if (libraryScript) libraryScript.remove(); libraryScript = document.createElement("script"); libraryScript.setAttribute("type", "text/javascript"); libraryScript.setAttribute("src", "https://mwittrien.github.io/BetterDiscordAddons/Plugins/BDFDB.js"); libraryScript.setAttribute("date", performance.now()); libraryScript.addEventListener("load", () => {if (global.BDFDB && typeof BDFDB === "object" && BDFDB.loaded) 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.loadMessage(this); this.languages = Object.assign({},BDFDB.languages); BDFDB.WebModules.forceAllUpdates(this); } else { console.error(`%c[${this.name}]%c`, 'color: #3a71c1; font-weight: 700;', '', 'Fatal Error: Could not load BD functions!'); } } stop () { if (global.BDFDB && typeof BDFDB === "object" && BDFDB.loaded) { BDFDB.removeEles(".creationDate"); BDFDB.unloadMessage(this); } } // begin of own functions openDropdownMenu (e) { let selectControl = e.currentTarget; let selectWrap = selectControl.parentElement; let plugincard = BDFDB.getParentEle("li", selectWrap); if (!plugincard || BDFDB.containsClass(selectWrap, BDFDB.disCN.selectisopen)) return; BDFDB.addClass(selectWrap, BDFDB.disCN.selectisopen); plugincard.style.setProperty("overflow", "visible", "important"); let type = selectWrap.getAttribute("type"); let selectMenu = this.createDropdownMenu(selectWrap.getAttribute("value")); selectWrap.appendChild(selectMenu); BDFDB.addChildEventListener(selectMenu, "mousedown", BDFDB.dotCN.selectoption, e2 => { let language = e2.currentTarget.getAttribute("value"); selectWrap.setAttribute("value", language); selectControl.querySelector(".languageName").innerText = this.languages[language].name; selectControl.querySelector(".languageTimestamp").innerText = this.getCreationTime(language); BDFDB.saveData(type, language, this, "choices"); }); var removeMenu = e2 => { if (e2.target.parentElement != selectMenu) { document.removeEventListener("mousedown", removeMenu); selectMenu.remove(); plugincard.style.removeProperty("overflow"); setTimeout(() => {BDFDB.removeClass(selectWrap, BDFDB.disCN.selectisopen);},100); } }; document.addEventListener("mousedown", removeMenu); } createDropdownMenu (choice) { let menuhtml = `
`; for (let key in this.languages) { let isSelected = key == choice ? ` ${BDFDB.disCN.selectselected}` : ``; menuhtml += `
${this.languages[key].name}
${this.getCreationTime(this.languages[key].id)}
` } menuhtml += `
`; return BDFDB.htmlToElement(menuhtml); } processUserPopout (instance, wrapper) { if (instance.props && instance.props.user && BDFDB.getData("addInUserPopout", this, "settings")) { this.addCreationDate(instance.props.user, wrapper.querySelector(BDFDB.dotCN.userpopoutheadertext), wrapper.parentElement); } } processUserProfile (instance, wrapper) { if (instance.props && instance.props.user && BDFDB.getData("addInUserProfil", this, "settings")) { this.addCreationDate(instance.props.user, wrapper.querySelector(BDFDB.dotCN.userprofileheaderinfo), null); } } addCreationDate (info, container, popout) { if (!info || !container || container.querySelector(".creationDate")) return; let choice = BDFDB.getData("creationDateLang", this, "choices"); let nametag = container.querySelector(BDFDB.dotCN.nametag); let joinedAtDate = container.querySelector(".joinedAtDate"); container.insertBefore(BDFDB.htmlToElement(`
${this.labels.createdat_text + " " + this.getCreationTime(this.languages[choice].id, info.createdAt)}
`), joinedAtDate ? joinedAtDate.nextSibling : (nametag ? nametag.nextSibling : null)); BDFDB.initElements(container.parentElement, this); if (popout && popout.style.transform.indexOf("translateY(-1") == -1) { let arect = BDFDB.getRects(document.querySelector(BDFDB.dotCN.appmount)); let prect = BDFDB.getRects(popout); popout.style.setProperty("top", (prect.y + prect.height > arect.height ? (arect.height - prect.height) : prect.y) + "px"); } } getCreationTime (languageid, timestamp = new Date()) { let settings = BDFDB.getAllData(this, "settings"); let timestring = settings.addCreationTime ? timestamp.toLocaleString(languageid) : timestamp.toLocaleDateString(languageid); if (timestring && settings.forceZeros) timestring = this.addLeadingZeros(timestring); return timestring; } 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.getDiscordLanguage().id) { case "hr": //croatian return { createdat_text: "Izrađen" }; case "da": //danish return { createdat_text: "Oprettet den" }; case "de": //german return { createdat_text: "Erstellt am" }; case "es": //spanish return { createdat_text: "Creado el" }; case "fr": //french return { createdat_text: "Créé le" }; case "it": //italian return { createdat_text: "Creato il" }; case "nl": //dutch return { createdat_text: "Gemaakt op" }; case "no": //norwegian return { createdat_text: "Opprettet på" }; case "pl": //polish return { createdat_text: "Utworzono" }; case "pt-BR": //portuguese (brazil) return { createdat_text: "Criado em" }; case "fi": //finnish return { createdat_text: "Luotu" }; case "sv": //swedish return { createdat_text: "Skapat den" }; case "tr": //turkish return { createdat_text: "Oluşturma tarihi" }; case "cs": //czech return { createdat_text: "Vytvořeno dne" }; case "bg": //bulgarian return { createdat_text: "Създадена на" }; case "ru": //russian return { createdat_text: "Создано" }; case "uk": //ukrainian return { createdat_text: "Створено" }; case "ja": //japanese return { createdat_text: "作成日" }; case "zh-TW": //chinese (traditional) return { createdat_text: "創建於" }; case "ko": //korean return { createdat_text: "생성 일" }; default: //default: english return { createdat_text: "Created on" }; } } }