2020-10-20 23:25:34 +02:00
/ * *
* @ name CompleteTimestamps
* @ authorId 278543574059057154
* @ invite Jx3TjNS
2020-11-19 16:45:36 +01:00
* @ donate https : //www.paypal.me/MircoWittrien
* @ patreon https : //www.patreon.com/MircoWittrien
* @ website https : //github.com/mwittrien/BetterDiscordAddons/tree/master/Plugins/CompleteTimestamps
* @ source https : //raw.githubusercontent.com/mwittrien/BetterDiscordAddons/master/Plugins/CompleteTimestamps/CompleteTimestamps.plugin.js
* @ updateUrl https : //raw.githubusercontent.com/mwittrien/BetterDiscordAddons/master/Plugins/CompleteTimestamps/CompleteTimestamps.plugin.js
2020-10-20 23:25:34 +02:00
* /
2018-10-11 10:21:26 +02:00
2020-09-19 20:49:33 +02:00
module . exports = ( _ => {
2020-10-09 21:09:35 +02:00
const config = {
2020-09-19 20:49:33 +02:00
"info" : {
"name" : "CompleteTimestamps" ,
"author" : "DevilBro" ,
2020-12-21 20:30:41 +01:00
"version" : "1.5.1" ,
2020-10-16 10:25:30 +02:00
"description" : "Replace all timestamps with complete timestamps"
2020-10-14 21:21:08 +02:00
} ,
"changeLog" : {
2020-12-21 20:30:41 +01:00
"added" : {
"Format for Tooltips" : "Added an option to set up and select a custom format for timestamps inside tooltips"
2020-10-14 21:21:08 +02:00
}
2019-05-26 13:55:26 +02:00
}
2020-09-19 20:49:33 +02:00
} ;
2020-11-13 19:47:44 +01:00
2020-10-09 21:09:35 +02:00
return ! window . BDFDB _Global || ( ! window . BDFDB _Global . loaded && ! window . BDFDB _Global . started ) ? class {
2021-01-06 12:38:36 +01:00
getName ( ) { return config . info . name ; }
getAuthor ( ) { return config . info . author ; }
getVersion ( ) { return config . info . version ; }
2021-01-14 16:14:44 +01:00
getDescription ( ) { return ` The Library Plugin needed for ${ config . info . name } is missing. Open the Plugin Settings to download it. \n \n ${ config . info . description } ` ; }
2020-09-19 20:49:33 +02:00
2021-01-06 12:38:36 +01:00
load ( ) {
2020-11-19 16:51:14 +01:00
if ( ! window . BDFDB _Global || ! Array . isArray ( window . BDFDB _Global . pluginQueue ) ) window . BDFDB _Global = Object . assign ( { } , window . BDFDB _Global , { pluginQueue : [ ] } ) ;
2020-09-19 20:49:33 +02:00
if ( ! window . BDFDB _Global . downloadModal ) {
window . BDFDB _Global . downloadModal = true ;
2021-01-14 16:14:44 +01:00
BdApi . showConfirmationModal ( "Library Missing" , ` The Library Plugin needed for ${ config . info . name } is missing. Please click "Download Now" to install it. ` , {
2020-09-19 20:49:33 +02:00
confirmText : "Download Now" ,
cancelText : "Cancel" ,
onCancel : _ => { delete window . BDFDB _Global . downloadModal ; } ,
2020-09-20 08:15:13 +02:00
onConfirm : _ => {
delete window . BDFDB _Global . downloadModal ;
2020-11-19 16:45:36 +01:00
require ( "request" ) . get ( "https://mwittrien.github.io/BetterDiscordAddons/Library/0BDFDB.plugin.js" , ( e , r , b ) => {
2020-10-20 23:25:34 +02:00
if ( ! e && b && b . indexOf ( ` * @name BDFDB ` ) > - 1 ) require ( "fs" ) . writeFile ( require ( "path" ) . join ( BdApi . Plugins . folder , "0BDFDB.plugin.js" ) , b , _ => { } ) ;
2021-01-14 16:14:44 +01:00
else BdApi . alert ( "Error" , "Could not download BDFDB Library Plugin, try again later or download it manually from GitHub: https://github.com/mwittrien/BetterDiscordAddons/tree/master/Library/" ) ;
2020-09-20 08:15:13 +02:00
} ) ;
}
2020-09-19 20:49:33 +02:00
} ) ;
}
if ( ! window . BDFDB _Global . pluginQueue . includes ( config . info . name ) ) window . BDFDB _Global . pluginQueue . push ( config . info . name ) ;
2020-10-09 21:09:35 +02:00
}
2021-01-06 12:38:36 +01:00
start ( ) { this . load ( ) ; }
stop ( ) { }
getSettingsPanel ( ) {
2020-11-28 23:12:09 +01:00
let template = document . createElement ( "template" ) ;
2021-01-14 16:14:44 +01:00
template . innerHTML = ` <div style="color: var(--header-primary); font-size: 16px; font-weight: 300; white-space: pre; line-height: 22px;">The Library Plugin needed for ${ config . info . name } is missing. \n Please click <a style="font-weight: 500;">Download Now</a> to install it.</div> ` ;
2020-11-28 23:12:09 +01:00
template . content . firstElementChild . querySelector ( "a" ) . addEventListener ( "click" , _ => {
require ( "request" ) . get ( "https://mwittrien.github.io/BetterDiscordAddons/Library/0BDFDB.plugin.js" , ( e , r , b ) => {
if ( ! e && b && b . indexOf ( ` * @name BDFDB ` ) > - 1 ) require ( "fs" ) . writeFile ( require ( "path" ) . join ( BdApi . Plugins . folder , "0BDFDB.plugin.js" ) , b , _ => { } ) ;
2021-01-14 16:14:44 +01:00
else BdApi . alert ( "Error" , "Could not download BDFDB Library Plugin, try again later or download it manually from GitHub: https://github.com/mwittrien/BetterDiscordAddons/tree/master/Library/" ) ;
2020-11-28 23:12:09 +01:00
} ) ;
} ) ;
return template . content . firstElementChild ;
}
2020-10-09 21:09:35 +02:00
} : ( ( [ Plugin , BDFDB ] ) => {
2020-09-19 20:49:33 +02:00
var languages , currentMode ;
var settings = { } , choices = { } , formats = { } , amounts = { } ;
2020-10-09 21:09:35 +02:00
return class CompleteTimestamps extends Plugin {
2021-01-06 12:38:36 +01:00
onLoad ( ) {
2020-09-19 20:49:33 +02:00
this . defaults = {
settings : {
2020-11-19 16:51:14 +01:00
showInChat : { value : true , description : "Replace chat timestamp with complete timestamp" } ,
showInEmbed : { value : true , description : "Replace embed timestamp with complete timestamp" } ,
changeForChat : { value : true , description : "Change the time for the chat time tooltips" } ,
changeForEdit : { value : true , 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" }
2020-09-19 20:49:33 +02:00
} ,
choices : {
2020-12-21 20:30:41 +01:00
timestampLang : { value : "$discord" , description : "Chat Timestamp Format" } ,
timestampToolLang : { value : "$discord" , description : "Tooltip Timestamp Format" }
2020-09-19 20:49:33 +02:00
} ,
formats : {
2020-12-21 20:30:41 +01:00
ownFormat : { value : "$hour:$minute:$second, $day.$month.$year" , description : "Own Chat Format" } ,
ownFormatTool : { value : "$hour:$minute:$second, $day.$month.$year" , description : "Own Tooltip Format" }
2020-09-19 20:49:33 +02:00
} ,
amounts : {
2020-11-19 16:51:14 +01:00
maxDaysAgo : { value : 0 , min : 0 , description : "Maximum count of days displayed in the $daysago placeholder" , note : "0 equals no limit" }
2020-09-19 20:49:33 +02:00
}
} ;
this . patchedModules = {
after : {
Message : "default" ,
MessageHeader : "default" ,
MessageContent : "type" ,
Embed : "render" ,
SystemMessage : "default"
}
} ;
}
2021-01-06 12:38:36 +01:00
onStart ( ) {
2020-09-04 22:44:01 +02:00
languages = BDFDB . ObjectUtils . deepAssign ( {
2020-06-05 20:03:21 +02:00
own : {
2020-09-19 20:49:33 +02:00
"name" : "Own" ,
2020-06-05 20:03:21 +02:00
id : "own"
}
} , BDFDB . LanguageUtils . languages ) ;
2020-02-04 08:20:40 +01:00
2020-12-21 20:30:41 +01:00
// REMOVE 21.12.2020
let oC = BDFDB . DataUtils . load ( this , "choices" ) , oF = BDFDB . DataUtils . load ( this , "formats" ) ;
if ( ! oC . timestampToolLang || ! oF . ownFormatTool ) {
oC . timestampToolLang = oC . timestampLang ;
oF . ownFormatTool = oF . ownFormat ;
BDFDB . DataUtils . save ( oC , this , "choices" ) ;
BDFDB . DataUtils . save ( oF , this , "formats" ) ;
}
2020-02-04 08:20:40 +01:00
this . forceUpdateAll ( ) ;
}
2020-09-19 20:49:33 +02:00
2021-01-06 12:38:36 +01:00
onStop ( ) {
2020-02-04 08:20:40 +01:00
this . forceUpdateAll ( ) ;
2020-09-07 13:07:20 +02:00
BDFDB . DOMUtils . removeLocalStyle ( this . name + "CompactCorrection" ) ;
2020-02-04 08:20:40 +01:00
}
2018-10-11 10:21:26 +02:00
2020-09-19 20:49:33 +02:00
getSettingsPanel ( collapseStates = { } ) {
let settingsPanel , settingsItems = [ ] ;
settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . CollapseContainer , {
title : "Settings" ,
collapseStates : collapseStates ,
2020-10-14 21:21:08 +02:00
children : Object . keys ( settings ) . map ( key => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
2020-09-19 20:49:33 +02:00
type : "Switch" ,
plugin : this ,
keys : [ "settings" , key ] ,
label : this . defaults . settings [ key ] . description ,
value : settings [ key ] ,
onChange : ( value , instance ) => {
settings [ key ] = value ;
2020-11-19 16:51:14 +01:00
BDFDB . ReactUtils . forceUpdate ( BDFDB . ReactUtils . findOwner ( BDFDB . ReactUtils . findOwner ( instance , { name : "BDFDB_SettingsPanel" , up : true } ) , { name : "BDFDB_Select" , all : true , noCopies : true } ) ) ;
2020-09-19 20:49:33 +02:00
}
} ) )
} ) ) ;
settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . CollapseContainer , {
title : "Format" ,
collapseStates : collapseStates ,
children : Object . keys ( choices ) . map ( key => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
type : "Select" ,
plugin : this ,
keys : [ "choices" , key ] ,
label : this . defaults . choices [ key ] . description ,
2020-12-21 20:30:41 +01:00
basis : "65%" ,
2020-09-19 20:49:33 +02:00
value : choices [ key ] ,
2020-11-19 16:51:14 +01:00
options : BDFDB . ObjectUtils . toArray ( BDFDB . ObjectUtils . map ( languages , ( lang , id ) => { return { value : id , label : lang . name } } ) ) ,
2020-09-19 20:49:33 +02:00
searchable : true ,
optionRenderer : lang => {
return BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex , {
align : BDFDB . LibraryComponents . Flex . Align . CENTER ,
children : [
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex . Child , {
grow : 0 ,
shrink : 0 ,
basis : "40%" ,
children : lang . label
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex . Child , {
grow : 0 ,
shrink : 0 ,
basis : "60%" ,
2020-12-21 20:30:41 +01:00
children : this . getTimestamp ( languages [ lang . value ] . id , null , key == "timestampToolLang" )
2020-09-19 20:49:33 +02:00
} )
]
} ) ;
} ,
valueRenderer : lang => {
return BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex , {
align : BDFDB . LibraryComponents . Flex . Align . CENTER ,
children : [
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex . Child , {
grow : 0 ,
shrink : 0 ,
children : lang . label
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex . Child , {
grow : 1 ,
shrink : 0 ,
basis : "70%" ,
2020-12-21 20:30:41 +01:00
children : this . getTimestamp ( languages [ lang . value ] . id , null , key == "timestampToolLang" )
2020-09-19 20:49:33 +02:00
} )
]
} ) ;
}
} ) ) . concat ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . FormComponents . FormDivider , {
className : BDFDB . disCN . marginbottom8
} ) ) . concat ( Object . keys ( formats ) . map ( key => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
type : "TextInput" ,
plugin : this ,
keys : [ "formats" , key ] ,
label : this . defaults . formats [ key ] . description ,
2020-12-21 20:30:41 +01:00
basis : "65%" ,
2020-09-19 20:49:33 +02:00
value : formats [ key ] ,
onChange : ( value , instance ) => {
formats [ key ] = value ;
2020-11-19 16:51:14 +01:00
BDFDB . ReactUtils . forceUpdate ( BDFDB . ReactUtils . findOwner ( BDFDB . ReactUtils . findOwner ( instance , { name : "BDFDB_SettingsPanel" , up : true } ) , { name : "BDFDB_Select" , all : true , noCopies : true } ) ) ;
2020-09-19 20:49:33 +02:00
}
} ) ) ) . concat ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . FormComponents . FormDivider , {
className : BDFDB . disCN . marginbottom8
} ) ) . concat ( Object . keys ( amounts ) . map ( key => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
type : "TextInput" ,
childProps : {
type : "number"
} ,
plugin : this ,
keys : [ "amounts" , key ] ,
label : this . defaults . amounts [ key ] . description ,
note : this . defaults . amounts [ key ] . note ,
basis : "20%" ,
min : this . defaults . amounts [ key ] . min ,
max : this . defaults . amounts [ key ] . max ,
value : amounts [ key ]
} ) ) )
} ) ) ;
settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . CollapseContainer , {
title : "Placeholder Guide" ,
collapseStates : collapseStates ,
children : [
"$hour will be replaced with the hour of the date" ,
"$minute will be replaced with the minutes of the date" ,
"$second will be replaced with the seconds of the date" ,
"$msecond will be replaced with the milliseconds of the date" ,
"$timemode will change $hour to a 12h format and will be replaced with AM/PM" ,
"$year will be replaced with the year of the date" ,
"$yearS will be replaced with the year in short form" ,
"$month will be replaced with the month of the date" ,
"$day will be replaced with the day of the date" ,
"$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" ,
"$daysago will be replaced with a string to tell you how many days ago the event occured. For Example: " + BDFDB . LanguageUtils . LanguageStringsFormat ( "ACTIVITY_FEED_USER_PLAYED_DAYS_AGO" , 3 )
] . map ( string => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . FormComponents . FormText , {
type : BDFDB . LibraryComponents . FormComponents . FormTextTypes . DESCRIPTION ,
children : string
} ) )
} ) ) ;
return settingsPanel = BDFDB . PluginUtils . createSettingsPanel ( this , settingsItems ) ;
2020-02-04 08:20:40 +01:00
}
2018-10-11 10:21:26 +02:00
2021-01-06 12:38:36 +01:00
onSettingsClosed ( ) {
2020-09-19 20:49:33 +02:00
if ( this . SettingsUpdated ) {
delete this . SettingsUpdated ;
this . forceUpdateAll ( ) ;
}
2020-02-04 08:20:40 +01:00
}
2021-01-06 12:38:36 +01:00
forceUpdateAll ( ) {
2021-01-15 18:59:45 +01:00
currentMode = null ;
2020-09-19 20:49:33 +02:00
settings = BDFDB . DataUtils . get ( this , "settings" ) ;
choices = BDFDB . DataUtils . get ( this , "choices" ) ;
formats = BDFDB . DataUtils . get ( this , "formats" ) ;
amounts = BDFDB . DataUtils . get ( this , "amounts" ) ;
BDFDB . PatchUtils . forceAllUpdates ( this ) ;
BDFDB . MessageUtils . rerenderAll ( ) ;
2020-02-04 08:20:40 +01:00
}
2019-01-17 23:48:29 +01:00
2020-09-19 20:49:33 +02:00
processMessage ( e ) {
if ( settings . changeForChat && BDFDB . ObjectUtils . get ( e , "instance.props.childrenHeader.type.type.displayName" ) == "MessageTimestamp" ) {
let [ children , index ] = BDFDB . ReactUtils . findParent ( e . returnvalue , { name : e . instance . props . childrenHeader . type } ) ;
2020-11-19 16:51:14 +01:00
if ( index > - 1 ) this . changeTimestamp ( children , index , { child : false , tooltip : true } ) ;
2020-09-19 20:49:33 +02:00
}
2020-02-04 08:20:40 +01:00
}
2020-09-19 20:49:33 +02:00
processMessageHeader ( e ) {
let [ children , index ] = BDFDB . ReactUtils . findParent ( e . returnvalue , { name : "MessageTimestamp" } ) ;
if ( index > - 1 ) {
2020-11-19 16:51:14 +01:00
this . changeTimestamp ( children , index , { child : settings . showInChat , tooltip : settings . changeForChat } ) ;
2020-09-19 20:49:33 +02:00
this . setMaxWidth ( children [ index ] , e . instance . props . compact ) ;
}
2020-02-04 08:20:40 +01:00
}
2020-09-19 20:49:33 +02:00
processMessageContent ( e ) {
if ( e . instance . props . message . editedTimestamp && settings . changeForEdit ) {
let [ children , index ] = BDFDB . ReactUtils . findParent ( e . returnvalue , { name : "SuffixEdited" } ) ;
2020-11-19 16:51:14 +01:00
if ( index > - 1 ) this . changeTimestamp ( children , index , { child : false , tooltip : true } ) ;
2019-11-14 14:42:54 +01:00
}
2020-09-19 20:49:33 +02:00
}
processEmbed ( e ) {
if ( e . instance . props . embed . timestamp && settings . showInEmbed ) {
2020-10-30 16:39:17 +01:00
let process = returnvalue => {
2020-11-19 16:51:14 +01:00
let [ children , index ] = BDFDB . ReactUtils . findParent ( returnvalue , { props : [ [ "className" , BDFDB . disCN . embedfootertext ] ] } ) ;
2020-10-30 16:39:17 +01:00
if ( index > - 1 && BDFDB . ArrayUtils . is ( children [ index ] . props . children ) ) children [ index ] . props . children . splice ( children [ index ] . props . children . length - 1 , 1 , this . getTimestamp ( languages [ choices . timestampLang ] . id , e . instance . props . embed . timestamp . _i ) ) ;
} ;
if ( typeof e . returnvalue . props . children == "function" ) {
let childrenRender = e . returnvalue . props . children ;
e . returnvalue . props . children = ( ... args ) => {
let children = childrenRender ( ... args ) ;
process ( children ) ;
return children ;
} ;
}
else process ( e . returnvalue ) ;
2020-02-04 08:20:40 +01:00
}
}
2019-04-07 21:33:13 +02:00
2020-09-19 20:49:33 +02:00
processSystemMessage ( e ) {
if ( settings . showInChat ) {
let [ children , index ] = BDFDB . ReactUtils . findParent ( e . returnvalue , { name : "time" } ) ;
if ( index > - 1 ) children [ index ] . props . children = this . getTimestamp ( languages [ choices . timestampLang ] . id , e . instance . props . timestamp . _i ) ;
}
2018-10-11 10:21:26 +02:00
}
2020-09-19 20:49:33 +02:00
changeTimestamp ( parent , index , change = { } ) {
let type = parent [ index ] . type && parent [ index ] . type . type || parent [ index ] . type ;
if ( typeof type != "function" ) return ;
let stamp = type ( parent [ index ] . props ) , tooltipWrapper ;
if ( stamp . type . displayName == "Tooltip" ) tooltipWrapper = stamp ;
else {
let [ children , tooltipIndex ] = BDFDB . ReactUtils . findParent ( stamp , { name : "Tooltip" } ) ;
if ( tooltipIndex > - 1 ) tooltipWrapper = children [ tooltipIndex ] ;
2020-02-04 08:20:40 +01:00
}
2020-09-19 20:49:33 +02:00
if ( tooltipWrapper ) {
let timestamp = this . getTimestamp ( languages [ choices . timestampLang ] . id , parent [ index ] . props . timestamp . _i ) ;
if ( change . tooltip ) {
2020-12-21 20:30:41 +01:00
tooltipWrapper . props . text = this . getTimestamp ( languages [ choices . timestampToolLang ] . id , parent [ index ] . props . timestamp . _i , true ) ;
2020-09-19 20:49:33 +02:00
tooltipWrapper . props . delay = 0 ;
}
if ( change . child && typeof tooltipWrapper . props . children == "function" ) {
2020-12-21 20:30:41 +01:00
if ( choices . timestampLang == choices . timestampToolLang && formats . ownFormat == formats . ownFormatTool ) tooltipWrapper . props . delay = 99999999999999999999 ;
2020-09-19 20:49:33 +02:00
let renderChildren = tooltipWrapper . props . children ;
tooltipWrapper . props . children = ( ... args ) => {
let renderedChildren = renderChildren ( ... args ) ;
if ( BDFDB . ArrayUtils . is ( renderedChildren . props . children ) ) renderedChildren . props . children [ 1 ] = timestamp ;
else renderChildren . props . children = timestamp ;
return renderedChildren ;
} ;
}
}
parent [ index ] = stamp ;
2020-02-04 08:20:40 +01:00
}
2019-01-26 22:45:19 +01:00
2020-12-21 20:30:41 +01:00
getTimestamp ( languageId , time , isTooltip ) {
2020-09-19 20:49:33 +02:00
let timeObj = time || new Date ( ) ;
if ( typeof time == "string" || typeof time == "number" ) timeObj = new Date ( time ) ;
if ( timeObj . toString ( ) == "Invalid Date" ) timeObj = new Date ( parseInt ( time ) ) ;
if ( timeObj . toString ( ) == "Invalid Date" ) return ;
let 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 {
languageId = BDFDB . LanguageUtils . getLanguage ( ) . id ;
let now = new Date ( ) ;
let hour = timeObj . getHours ( ) , minute = timeObj . getMinutes ( ) , second = timeObj . getSeconds ( ) , msecond = timeObj . getMilliseconds ( ) , day = timeObj . getDate ( ) , month = timeObj . getMonth ( ) + 1 , timemode = "" , daysago = Math . round ( ( Date . UTC ( now . getFullYear ( ) , now . getMonth ( ) , now . getDate ( ) ) - Date . UTC ( timeObj . getFullYear ( ) , timeObj . getMonth ( ) , timeObj . getDate ( ) ) ) / ( 1000 * 60 * 60 * 24 ) ) ;
2020-12-21 20:30:41 +01:00
if ( formats [ isTooltip ? "ownFormatTool" : "ownFormat" ] . indexOf ( "$timemode" ) > - 1 ) {
2020-09-19 20:49:33 +02:00
timemode = hour >= 12 ? "PM" : "AM" ;
hour = hour % 12 ;
hour = hour ? hour : 12 ;
}
2020-12-21 20:30:41 +01:00
timeString = formats [ isTooltip ? "ownFormatTool" : "ownFormat" ]
2020-09-19 20:49:33 +02:00
. replace ( /\$hour/g , settings . forceZeros && hour < 10 ? "0" + hour : hour )
. replace ( /\$minute/g , minute < 10 ? "0" + minute : minute )
. replace ( /\$second/g , second < 10 ? "0" + second : second )
. replace ( /\$msecond/g , settings . forceZeros ? ( msecond < 10 ? "00" + msecond : ( msecond < 100 ? "0" + msecond : msecond ) ) : msecond )
. replace ( /\$timemode/g , timemode )
. replace ( /\$weekdayL/g , timeObj . toLocaleDateString ( languageId , { weekday : "long" } ) )
. replace ( /\$weekdayS/g , timeObj . toLocaleDateString ( languageId , { weekday : "short" } ) )
. replace ( /\$monthnameL/g , timeObj . toLocaleDateString ( languageId , { month : "long" } ) )
. replace ( /\$monthnameS/g , timeObj . toLocaleDateString ( languageId , { month : "short" } ) )
. replace ( /\$daysago/g , amounts . maxDaysAgo == 0 || amounts . maxDaysAgo >= daysago ? ( daysago > 0 ? BDFDB . LanguageUtils . LanguageStringsFormat ( "ACTIVITY_FEED_USER_PLAYED_DAYS_AGO" , daysago ) : BDFDB . LanguageUtils . LanguageStrings . SEARCH _SHORTCUT _TODAY ) : "" )
. replace ( /\$day/g , settings . forceZeros && day < 10 ? "0" + day : day )
. replace ( /\$month/g , settings . forceZeros && month < 10 ? "0" + month : month )
. replace ( /\$yearS/g , parseInt ( timeObj . getFullYear ( ) . toString ( ) . slice ( - 2 ) ) )
. replace ( /\$year/g , timeObj . getFullYear ( ) )
. trim ( ) . split ( " " ) . filter ( n => n ) . join ( " " ) ;
}
return timeString ;
}
2019-01-26 22:45:19 +01:00
2020-09-19 20:49:33 +02:00
cutOffSeconds ( timeString ) {
return timeString . replace ( /(.{1,2}:.{1,2}):.{1,2}(.*)/ , "$1$2" ) . replace ( /(.{1,2}\..{1,2})\..{1,2}(.*)/ , "$1$2" ) . replace ( /(.{1,2} h .{1,2} min) .{1,2} s(.*)/ , "$1$2" ) ;
2018-12-14 12:08:12 +01:00
}
2020-02-04 08:20:40 +01:00
2020-09-19 20:49:33 +02:00
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 ] ;
2020-03-08 20:52:21 +01:00
}
2020-09-19 20:49:33 +02:00
return charArray . join ( "" ) ;
2020-03-08 20:52:21 +01:00
}
2020-06-08 20:26:00 +02:00
2020-09-19 20:49:33 +02:00
setMaxWidth ( timestamp , compact ) {
if ( currentMode != compact ) {
currentMode = compact ;
if ( timestamp . props . className && typeof timestamp . type == "string" ) {
let tempTimestamp = BDFDB . DOMUtils . create ( ` <div class=" ${ BDFDB . disCN . messagecompact } ">< ${ timestamp . type } class=" ${ timestamp . props . className } " style="width: auto !important;"> ${ this . getTimestamp ( languages [ choices . timestampLang ] . id , new Date ( 253402124399995 ) ) } </ ${ timestamp . type } ></div> ` ) ;
document . body . appendChild ( tempTimestamp ) ;
let width = BDFDB . DOMUtils . getRects ( tempTimestamp . firstElementChild ) . width + 10 ;
tempTimestamp . remove ( ) ;
BDFDB . DOMUtils . appendLocalStyle ( this . name + "CompactCorrection" , `
$ { BDFDB . dotCN . messagecompact + BDFDB . dotCN . messagewrapper } {
padding - left : $ { 44 + width } px ;
}
$ { BDFDB . dotCNS . messagecompact + BDFDB . dotCN . messagecontents } {
margin - left : - $ { 44 + width } px ;
padding - left : $ { 44 + width } px ;
text - indent : calc ( - $ { 44 + width } px - - 1 rem ) ;
}
$ { BDFDB . dotCNS . messagecompact + BDFDB . dotCN . messagetimestamp } {
width : $ { width } px ;
}
` );
}
}
}
} ;
2020-10-09 21:09:35 +02:00
} ) ( window . BDFDB _Global . PluginUtils . buildPlugin ( config ) ) ;
2020-09-19 20:49:33 +02:00
} ) ( ) ;