//META{"name":"CompleteTimestamps"}*// class CompleteTimestamps { initConstructor () { this.languages; this.updateTimestamps = false; this.defaults = { settings: { showInChat: {value:true, description:"Replace Chat Timestamp with Complete Timestamp:"}, showOnHover: {value:false, description:"Also show Timestamp when you hover over a message:"}, changeForEdit: {value:false, description:"Change the Time for the Edited Time Tooltips:"}, 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: { creationDateLang: {value:"$discord", description:"Timestamp Format:"} }, formats: { ownFormat: {value:"$hour:$minute:$second, $day.$month.$year", description:"Own Format:"} } }; } getName () {return "CompleteTimestamps";} getDescription () {return "Replace all timestamps with complete timestamps.";} getVersion () {return "1.2.6";} getAuthor () {return "DevilBro";} getSettingsPanel () { if (!this.started || typeof BDFDB !== "object") return; var settings = BDFDB.getAllData(this, "settings"); var choices = BDFDB.getAllData(this, "choices"); var formats = BDFDB.getAllData(this, "formats"); var settingshtml = `
${this.getName()}
`; 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.getTimestamp(this.languages[choices[key]].id)}
`; } for (let key in formats) { settingshtml += `

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

`; } var infoHidden = BDFDB.loadData("hideInfo", this, "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 += `
`; var settingspanel = $(settingshtml)[0]; BDFDB.initElements(settingspanel); $(settingspanel) .on("click", BDFDB.dotCN.switchinner, () => {this.updateSettings(settingspanel);}) .on("keyup", BDFDB.dotCN.input, () => {this.saveInputs(settingspanel);}) .on("click", BDFDB.dotCN.selectcontrol, (e) => {this.openDropdownMenu(e);}) .on("click", ".toggle-info", (e) => {this.toggleInfo(settingspanel, e.currentTarget);}); return settingspanel; } //legacy load () {} start () { var libraryScript = null; if (typeof BDFDB !== "object" || typeof BDFDB.isLibraryOutdated !== "function" || BDFDB.isLibraryOutdated()) { libraryScript = document.querySelector('head script[src="https://mwittrien.github.io/BetterDiscordAddons/Plugins/BDFDB.js"]'); if (libraryScript) libraryScript.remove(); libraryScript = document.createElement("script"); libraryScript.setAttribute("type", "text/javascript"); libraryScript.setAttribute("src", "https://mwittrien.github.io/BetterDiscordAddons/Plugins/BDFDB.js"); document.head.appendChild(libraryScript); } this.startTimeout = setTimeout(() => {this.initialize();}, 30000); if (typeof BDFDB === "object" && typeof BDFDB.isLibraryOutdated === "function") this.initialize(); else libraryScript.addEventListener("load", () => {this.initialize();}); } initialize () { if (typeof BDFDB === "object") { BDFDB.loadMessage(this); var observer = null; observer = new MutationObserver((changes, _) => { changes.forEach( (change, i) => { if (change.addedNodes) { change.addedNodes.forEach((node) => { if (node.tagName && node.querySelector("time")) { node.querySelectorAll("time").forEach(stamp => {this.changeTimestamp(stamp);}); } else if (node.tagName && node.tagName == "TIME") { this.changeTimestamp(node); } }); } } ); }); BDFDB.addObserver(this, BDFDB.dotCN.appmount, {name:"messageObserver",instance:observer}, {childList: true, subtree: true}); observer = new MutationObserver((changes, _) => { changes.forEach( (change, i) => { if (change.removedNodes) { change.removedNodes.forEach((node) => { if (this.updateTimestamps && node && node.tagName && node.getAttribute("layer-id") == "user-settings") { this.setMaxWidth(); document.querySelectorAll(".complete-timestamp").forEach(timestamp => {timestamp.classList.remove("complete-timestamp");}); document.querySelectorAll("time").forEach(stamp => {this.changeTimestamp(stamp);}) this.updateTimestamps = false; } }); } } ); }); BDFDB.addObserver(this, BDFDB.dotCN.layers, {name:"settingsWindowObserver",instance:observer}, {childList:true}); this.languages = Object.assign({}, {"own": {name:"Own", id:"own", integrated:false, dic:false}}, BDFDB.languages ); this.setMaxWidth(); $(document) .on("mouseenter." + this.getName(), BDFDB.dotCNS.message + BDFDB.dotCN.messagecontent, (e) => { if (BDFDB.getData("showOnHover", this, "settings")) { let message = e.currentTarget; let messagegroup = this.getMessageGroup(message); if (!messagegroup || !messagegroup.tagName) return; let info = this.getMessageData(message, messagegroup); if (!info || !info.timestamp || !info.timestamp._i) return; let choice = BDFDB.getData("creationDateLang", this, "choices"); BDFDB.createTooltip(this.getTimestamp(this.languages[choice].id, info.timestamp._i), message, {type:"left",selector:"completetimestamp-tooltip"}); } }) .on("mouseenter." + this.getName(), BDFDB.dotCNS.message + BDFDB.dotCN.messageedited, (e) => { if (BDFDB.getData("changeForEdit", this, "settings")) { let marker = e.currentTarget; let time = marker.getAttribute("datetime"); if (!time) return; let choice = BDFDB.getData("creationDateLang", this, "choices"); let customTooltipCSS = ` body ${BDFDB.dotCN.tooltip}:not(.completetimestampedit-tooltip) { display: none !important; }`; BDFDB.createTooltip(this.getTimestamp(this.languages[choice].id, time), marker, {type:"top",selector:"completetimestampedit-tooltip",css:customTooltipCSS}); } }); document.querySelectorAll("time").forEach(stamp => {this.changeTimestamp(stamp);}) } else { console.error(this.getName() + ": Fatal Error: Could not load BD functions!"); } } stop () { if (typeof BDFDB === "object") { document.querySelectorAll(".complete-timestamp").forEach(stamp => {stamp.classList.remove("complete-timestamp");}); BDFDB.removeLocalStyle(this.getName() + "CompactCorrection"); BDFDB.unloadMessage(this); } } // begin of own functions updateSettings (settingspanel) { var settings = {}; for (var input of settingspanel.querySelectorAll(BDFDB.dotCN.switchinner)) { settings[input.value] = input.checked; } BDFDB.saveAllData(settings, this, "settings"); this.updateSettingsPanel(settingspanel); } saveInputs (settingspanel) { var formats = {}; for (var input of settingspanel.querySelectorAll(BDFDB.dotCN.input)) { formats[input.getAttribute("option")] = input.value; } BDFDB.saveAllData(formats, this, "formats"); this.updateSettingsPanel(settingspanel); } updateSettingsPanel (settingspanel) { var choices = BDFDB.getAllData(this, "choices"); for (let key in choices) { settingspanel.querySelector(`${BDFDB.dotCN.select}[option='${key}'] .languageTimestamp`).innerText = this.getTimestamp(this.languages[choices[key]].id); } this.updateTimestamps = true; } toggleInfo (settingspanel, ele) { ele.classList.toggle(BDFDB.disCN.categorywrappercollapsed); ele.classList.toggle(BDFDB.disCN.categorywrapperdefault); var svg = ele.querySelector(BDFDB.dotCN.categoryicontransition); svg.classList.toggle(BDFDB.disCN.closed); svg.classList.toggle(BDFDB.disCN.categoryiconcollapsed); svg.classList.toggle(BDFDB.disCN.categoryicondefault); var visible = $(settingspanel).find(".info-container").is(":visible"); $(settingspanel).find(".info-container").toggle(!visible); BDFDB.saveData("hideInfo", visible, this, "hideInfo"); } openDropdownMenu (e) { var selectControl = e.currentTarget; var selectWrap = selectControl.parentElement; if (selectWrap.classList.contains(BDFDB.disCN.selectisopen)) return; selectWrap.classList.add(BDFDB.disCN.selectisopen); $("li").has(selectWrap).css("overflow", "visible"); var selectMenu = this.createDropdownMenu(selectWrap.getAttribute("value")); selectWrap.appendChild(selectMenu); $(selectMenu).on("mousedown." + this.getName(), BDFDB.dotCN.selectoption, (e2) => { var language = e2.currentTarget.getAttribute("value"); selectWrap.setAttribute("value", language); selectControl.querySelector(".languageName").innerText = this.languages[language].name; selectControl.querySelector(".languageTimestamp").innerText = this.getTimestamp(this.languages[language].id); BDFDB.saveData(selectWrap.getAttribute("option"), language, this, "choices"); }); $(document).on("mousedown.select" + this.getName(), (e2) => { if (e2.target.parentElement == selectMenu) return; $(document).off("mousedown.select" + this.getName()); selectMenu.remove(); $("li").has(selectWrap).css("overflow", "auto"); setTimeout(() => {selectWrap.classList.remove(BDFDB.disCN.selectisopen);},100); }); } createDropdownMenu (choice) { var menuhtml = `
`; for (var key in this.languages) { var isSelected = key == choice ? ` ${BDFDB.disCN.selectselected}` : ``; menuhtml += `
${this.languages[key].name}
${this.getTimestamp(this.languages[key].id)}
` } menuhtml += `
`; return $(menuhtml)[0]; } changeTimestamp (stamp) { if (!stamp.className || stamp.className.toLowerCase().indexOf("timestamp") == -1 || stamp.classList.contains("complete-timestamp")) return; let time = stamp.getAttribute("datetime"); if (!time) return; let choice = BDFDB.getData("creationDateLang", this, "choices"); stamp.classList.add("complete-timestamp"); BDFDB.setInnerText(stamp, this.getTimestamp(this.languages[choice].id, time)); } getMessageGroup (div) { var messagegroup = null; while (messagegroup == null || div.parentElement) { div = div.parentElement; if (div.classList && div.classList.contains(BDFDB.disCN.messagegroup)) messagegroup = div; } return messagegroup; } getMessageData (div, messagegroup) { var pos = Array.from(messagegroup.querySelectorAll("." + div.className.replace(/ /g, "."))).indexOf(div); var instance = BDFDB.getReactInstance(messagegroup); if (!instance) return; var info = instance.return.stateNode.props.messages; return info && pos > -1 ? info[pos] : null; } 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; var settings = BDFDB.getAllData(this, "settings"), timestring = ""; if (languageid != "own") { var 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 { var ownformat = BDFDB.getData("ownFormat", this, "formats"); languageid = BDFDB.getDiscordLanguage().id; var 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", 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) { var chararray = timestring.split(""); var numreg = /[0-9]/; for (var 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(""); } setMaxWidth () { var timestamp = document.querySelector(BDFDB.dotCN.messagetimestampcompact); if (timestamp) { var choice = BDFDB.getData("creationDateLang", this, "choices"); var testtimestamp = $(``); $(testtimestamp).appendTo(document.body); var width = testtimestamp.outerWidth() + 5; testtimestamp.remove(); BDFDB.appendLocalStyle(this.getName() + "CompactCorrection", ` ${BDFDB.dotCN.messagetimestampcompact} { width: ${width}px !important; } ${BDFDB.dotCN.messagetimestampcompactismentioned} { width: ${width + 2}px !important; } ${BDFDB.dotCN.messagemarkupiscompact} { margin-left: ${width}px !important; text-indent: -${width}px !important; } ${BDFDB.dotCN.messageaccessorycompact} { padding-left: ${width}px !important; } `); } else { BDFDB.removeLocalStyle(this.getName() + "CompactCorrection"); } } }