2020-10-20 23:25:34 +02:00
/ * *
* @ name MessageUtilities
2021-03-05 13:26:41 +01:00
* @ author DevilBro
2020-10-20 23:25:34 +02:00
* @ authorId 278543574059057154
2021-07-09 20:49:23 +02:00
* @ version 1.9 . 1
2021-03-05 13:26:41 +01:00
* @ description Adds several Quick Actions for Messages ( Delete , Edit , Pin , etc . )
2020-10-20 23:25:34 +02:00
* @ invite Jx3TjNS
* @ donate https : //www.paypal.me/MircoWittrien
* @ patreon https : //www.patreon.com/MircoWittrien
2021-03-09 15:10:55 +01:00
* @ website https : //mwittrien.github.io/
* @ source https : //github.com/mwittrien/BetterDiscordAddons/tree/master/Plugins/MessageUtilities/
2021-03-10 09:17:37 +01:00
* @ updateUrl https : //mwittrien.github.io/BetterDiscordAddons/Plugins/MessageUtilities/MessageUtilities.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" : "MessageUtilities" ,
"author" : "DevilBro" ,
2021-07-09 20:49:23 +02:00
"version" : "1.9.1" ,
2021-03-04 12:26:17 +01:00
"description" : "Adds several Quick Actions for Messages (Delete, Edit, Pin, etc.)"
2020-02-04 08:20:40 +01:00
}
2020-09-19 20:49:33 +02:00
} ;
2020-11-20 10:30:29 +01:00
2021-06-15 13:42:02 +02:00
return ( window . Lightcord || window . LightCord ) ? class {
getName ( ) { return config . info . name ; }
getAuthor ( ) { return config . info . author ; }
getVersion ( ) { return config . info . version ; }
getDescription ( ) { return "Do not use LightCord!" ; }
load ( ) { BdApi . alert ( "Attention!" , "By using LightCord you are risking your Discord Account, due to using a 3rd Party Client. Switch to an official Discord Client (https://discord.com/) with the proper BD Injection (https://betterdiscord.app/)" ) ; }
start ( ) { }
stop ( ) { }
} : ! 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-02-01 17:13:13 +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 } ` ; }
downloadLibrary ( ) {
require ( "request" ) . get ( "https://mwittrien.github.io/BetterDiscordAddons/Library/0BDFDB.plugin.js" , ( e , r , b ) => {
2021-03-05 13:14:18 +01:00
if ( ! e && b && r . statusCode == 200 ) require ( "fs" ) . writeFile ( require ( "path" ) . join ( BdApi . Plugins . folder , "0BDFDB.plugin.js" ) , b , _ => BdApi . showToast ( "Finished downloading BDFDB Library" , { type : "success" } ) ) ;
2021-03-06 14:59:48 +01:00
else BdApi . alert ( "Error" , "Could not download BDFDB Library Plugin. Try again later or download it manually from GitHub: https://mwittrien.github.io/downloader/?library" ) ;
2021-02-01 17:13:13 +01:00
} ) ;
}
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 ;
2021-02-01 17:13:13 +01:00
this . downloadLibrary ( ) ;
2020-09-20 08:15:13 +02:00
}
2020-09-19 20:49:33 +02:00
} ) ;
2018-10-11 10:21:26 +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> ` ;
2021-02-01 17:13:13 +01:00
template . content . firstElementChild . querySelector ( "a" ) . addEventListener ( "click" , this . downloadLibrary ) ;
2020-11-28 23:12:09 +01:00
return template . content . firstElementChild ;
}
2020-10-09 21:09:35 +02:00
} : ( ( [ Plugin , BDFDB ] ) => {
2021-01-29 12:36:02 +01:00
const clickMap = {
CLICK : 0 ,
DBLCLICK : 1
} ;
2020-11-20 10:30:29 +01:00
var firedEvents = [ ] , clickTimeout ;
2020-09-19 20:49:33 +02:00
var settings = { } , bindings = { } , enabledBindings = { } , toasts = { } ;
2021-01-29 12:36:02 +01:00
var ChannelTextAreaForm ;
2020-10-09 21:09:35 +02:00
return class MessageUtilities extends Plugin {
2021-01-06 12:38:36 +01:00
onLoad ( ) {
2020-09-19 20:49:33 +02:00
this . defaults = {
settings : {
2021-02-12 19:08:04 +01:00
"addHints" : { value : true , description : "Add Key Combo hints to Context Menus" } ,
"clearOnEscape" : { value : true , description : "Clear Chat Input when Escape is pressed" }
2020-09-19 20:49:33 +02:00
} ,
toasts : { } ,
bindings : {
2020-11-23 17:55:46 +01:00
"Edit_Message" : { name : "Edit Message" , func : this . doEdit , value : { click : 1 , keycombo : [ ] } } ,
"Delete_Message" : { name : "Delete Message" , func : this . doDelete , value : { click : 0 , keycombo : [ 46 ] } } ,
"Pin/Unpin_Message" : { name : "Pin/Unpin Message" , func : this . doPinUnPin , value : { click : 0 , keycombo : [ 17 ] } } ,
2021-06-26 17:37:02 +02:00
"Reply_to_Message" : { name : "Reply to Message" , func : this . doReply , value : { click : 0 , keycombo : [ 17 , 72 ] } } ,
2020-11-23 17:55:46 +01:00
"React_to_Message" : { name : "Open React Menu" , func : this . doOpenReact , value : { click : 0 , keycombo : [ 17 , 83 ] } } ,
"Copy_Raw" : { name : "Copy raw Message" , func : this . doCopyRaw , value : { click : 0 , keycombo : [ 17 , 68 ] } } ,
"Copy_Link" : { name : "Copy Message Link" , func : this . doCopyLink , value : { click : 0 , keycombo : [ 17 , 81 ] } } ,
"__Quote_Message" : { name : "Quote Message" , func : this . doQuote , value : { click : 0 , keycombo : [ 17 , 87 ] } , plugin : "CustomQuoter" } ,
"__Note_Message" : { name : "Note Message" , func : this . doNote , value : { click : 0 , keycombo : [ 16 ] } , plugin : "PersonalPins" } ,
2021-07-09 20:49:23 +02:00
"__Translate_Message" : { name : "Translate Message" , func : this . doTranslate , value : { click : 0 , keycombo : [ 20 ] } , plugin : "GoogleTranslateOption" }
2020-09-19 20:49:33 +02:00
}
} ;
this . patchedModules = {
before : {
2021-01-29 12:36:02 +01:00
Menu : "default" ,
Message : "default" ,
2021-01-29 17:14:29 +01:00
ChannelTextAreaForm : "render"
2020-09-19 20:49:33 +02:00
}
} ;
for ( let type in this . defaults . bindings ) {
let nativeAction = type . indexOf ( "__" ) != 0 ;
this . defaults . settings [ type ] = { value : nativeAction } ;
2020-11-19 16:51:14 +01:00
if ( nativeAction ) this . defaults . toasts [ type ] = { value : type != "Edit_Message" && type != "React_to_Message" && type != "Quote_Message" } ;
2020-09-19 20:49:33 +02:00
}
2020-02-04 08:20:40 +01:00
}
2021-01-29 17:14:29 +01:00
onStart ( ) {
BDFDB . ListenerUtils . add ( this , document , "keydown" , event => {
if ( BDFDB . DOMUtils . getParent ( BDFDB . dotCN . textareawrapchat , document . activeElement ) ) this . onKeyDown ( event ) ;
} ) ;
2020-09-19 20:49:33 +02:00
this . forceUpdateAll ( ) ;
2019-11-15 21:48:30 +01:00
}
2020-09-19 20:49:33 +02:00
2021-01-06 12:38:36 +01:00
onStop ( ) {
2020-09-19 20:49:33 +02:00
this . forceUpdateAll ( ) ;
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 = { } ) {
2020-11-23 17:55:46 +01:00
let settingsPanel ;
return settingsPanel = BDFDB . PluginUtils . createSettingsPanel ( this , {
collapseStates : collapseStates ,
children : _ => {
let settingsItems = [ ] ;
2021-02-12 19:08:04 +01:00
settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . CollapseContainer , {
title : "Settings" ,
collapseStates : collapseStates ,
children : Object . keys ( settings ) . map ( key => this . defaults . settings [ key ] . description && BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
2020-09-19 20:49:33 +02:00
type : "Switch" ,
plugin : this ,
2021-02-12 19:08:04 +01:00
keys : [ "settings" , key ] ,
label : this . defaults . settings [ key ] . description ,
value : settings [ key ]
} ) )
} ) ) ;
settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . CollapseContainer , {
title : "Actions" ,
collapseStates : collapseStates ,
children : Object . keys ( bindings ) . map ( action => {
if ( this . defaults . bindings [ action ] . plugin && ! BDFDB . BDUtils . isPluginEnabled ( this . defaults . bindings [ action ] . plugin ) ) return null ;
let keyRecorderIns , clickSelectorIns ;
return BDFDB . ReactUtils . createElement ( "div" , {
className : BDFDB . disCN . marginbottom20 ,
2020-11-23 17:55:46 +01:00
children : [
2021-02-12 19:08:04 +01:00
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex , {
className : BDFDB . disCN . marginbottom8 ,
align : BDFDB . LibraryComponents . Flex . Align . CENTER ,
direction : BDFDB . LibraryComponents . Flex . Direction . HORIZONTAL ,
children : [
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsLabel , {
label : this . defaults . bindings [ action ] . name + ( this . defaults . bindings [ action ] . plugin ? ` ( ${ this . defaults . bindings [ action ] . plugin } ) ` : "" )
} ) ,
toasts [ action ] != undefined ? BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
type : "Switch" ,
mini : true ,
plugin : this ,
keys : [ "toasts" , action ] ,
grow : 0 ,
label : "Show Confirmation Toast:" ,
value : toasts [ action ]
} ) : null
] . filter ( n => n )
2020-11-23 17:55:46 +01:00
} ) ,
2021-02-12 19:08:04 +01:00
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
type : "Switch" ,
plugin : this ,
keys : [ "settings" , action ] ,
value : settings [ action ] ,
onChange : value => {
keyRecorderIns . props . disabled = ! value ;
clickSelectorIns . props . disabled = ! value ;
BDFDB . ReactUtils . forceUpdate ( keyRecorderIns , clickSelectorIns ) ;
} ,
labelChildren : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex , {
direction : BDFDB . LibraryComponents . Flex . Direction . HORIZONTAL ,
children : [
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . KeybindRecorder , {
2021-04-08 15:13:23 +02:00
value : bindings [ action ] . keycombo . filter ( n => n ) ,
2021-02-12 19:08:04 +01:00
reset : true ,
disabled : ! settings [ action ] ,
ref : instance => { if ( instance ) keyRecorderIns = instance ; } ,
2021-03-20 21:46:22 +01:00
onChange : value => {
bindings [ action ] . keycombo = value ;
2021-02-12 19:08:04 +01:00
BDFDB . DataUtils . save ( bindings , this , "bindings" ) ;
this . SettingsUpdated = true ;
}
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Select , {
value : bindings [ action ] . click ,
options : Object . keys ( clickMap ) . map ( ( label , i ) => ( { value : i , label : label } ) ) ,
disabled : ! settings [ action ] ,
ref : instance => { if ( instance ) clickSelectorIns = instance ; } ,
2021-03-20 21:46:22 +01:00
onChange : value => {
bindings [ action ] . click = value ;
2021-02-12 19:08:04 +01:00
BDFDB . DataUtils . save ( bindings , this , "bindings" ) ;
this . SettingsUpdated = true ;
}
} )
]
} )
2020-11-23 17:55:46 +01:00
} )
]
} ) ;
2021-02-12 19:08:04 +01:00
} ) . concat ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsItem , {
type : "Button" ,
color : BDFDB . LibraryComponents . Button . Colors . RED ,
label : "Reset all Key Bindings" ,
onClick : _ => {
BDFDB . ModalUtils . confirm ( this , "Are you sure you want to reset all Key Bindings?" , _ => {
BDFDB . DataUtils . remove ( this , "bindings" ) ;
BDFDB . PluginUtils . refreshSettingsPanel ( this , settingsPanel , collapseStates ) ;
this . SettingsUpdated = true ;
} ) ;
} ,
children : BDFDB . LanguageUtils . LanguageStrings . RESET
} ) )
2020-11-23 17:55:46 +01:00
} ) ) ;
return settingsItems ;
}
} ) ;
2020-09-19 20:49:33 +02:00
}
2019-01-26 22:45:19 +01: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 ( ) ;
}
}
2021-01-06 12:38:36 +01:00
forceUpdateAll ( ) {
2020-09-19 20:49:33 +02:00
settings = BDFDB . DataUtils . get ( this , "settings" ) ;
bindings = BDFDB . DataUtils . get ( this , "bindings" ) ;
enabledBindings = BDFDB . ObjectUtils . filter ( bindings , action => settings [ action ] , true ) ;
toasts = BDFDB . DataUtils . get ( this , "toasts" ) ;
2021-01-29 12:36:02 +01:00
BDFDB . MessageUtils . rerenderAll ( ) ;
2020-09-19 20:49:33 +02:00
BDFDB . PatchUtils . forceAllUpdates ( this ) ;
}
2021-01-29 12:36:02 +01:00
2020-09-19 20:49:33 +02:00
processMenu ( e ) {
let contextMenu = BDFDB . ReactUtils . findChild ( e . instance , { props : "navId" } ) ;
if ( contextMenu && BDFDB . ArrayUtils . is ( contextMenu . props . children ) ) for ( let group of contextMenu . props . children ) {
if ( group && group . type == BDFDB . LibraryComponents . MenuItems . MenuGroup && BDFDB . ArrayUtils . is ( group . props . children ) ) for ( let item of group . props . children ) {
if ( item && item . props && item . props . id && ! item . props . hint && ! item . props . children ) {
let hint , action ;
2021-03-02 17:03:55 +01:00
if ( item . props . id == "mark-unread" ) hint = settings . addHints && ` ${ BDFDB . LibraryModules . KeyCodeUtils . getString ( 18 ) } +CLICK ` ;
2020-09-19 20:49:33 +02:00
else {
switch ( item . props . id ) {
case "copy-link" :
action = "Copy_Link" ;
break ;
case "edit" :
action = "Edit_Message" ;
break ;
2020-11-24 18:06:40 +01:00
case "reply" :
action = "Reply_to_Message" ;
break ;
2020-09-19 20:49:33 +02:00
case "pin" :
case "unpin" :
action = "Pin/Unpin_Message" ;
break ;
case "delete" :
action = "Delete_Message" ;
break ;
}
if ( action ) hint = this . getActiveShortcutString ( action ) ;
2020-05-23 15:21:57 +02:00
}
2020-09-19 20:49:33 +02:00
if ( hint ) item . props . hint = _ => {
return BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . MenuItems . MenuHint , {
hint : hint
} ) ;
} ;
2020-05-23 15:21:57 +02:00
}
2019-09-28 10:27:59 +02:00
}
}
}
2021-01-29 12:36:02 +01:00
processMessage ( e ) {
let message ;
for ( let key in e . instance . props ) {
if ( ! message ) message = BDFDB . ObjectUtils . get ( e . instance . props [ key ] , "props.message" ) ;
else break ;
}
if ( message ) {
let props = Object . assign ( { } , e . instance . props ) ;
e . instance . props . onClick = event => {
this . onClick ( event , message ) ;
if ( typeof props . onClick == "function" ) props . onClick ( event ) ;
} ;
e . instance . props . onDoubleClick = event => {
this . onClick ( event , message ) ;
if ( typeof props . onDoubleClick == "function" ) props . onDoubleClick ( event ) ;
} ;
}
}
processChannelTextAreaForm ( e ) {
ChannelTextAreaForm = e . instance ;
}
2019-01-26 22:45:19 +01:00
2021-01-29 12:36:02 +01:00
onClick ( event , message ) {
2021-07-09 20:49:23 +02:00
if ( BDFDB . DOMUtils . getParent ( BDFDB . dotCNC . messagebuttons + BDFDB . dotCN . spoilerhidden , event . target ) ) return ;
2021-01-29 12:36:02 +01:00
let type = event . type ;
if ( ! firedEvents . includes ( type ) ) {
firedEvents . push ( type ) ;
2020-09-19 20:49:33 +02:00
let priorityAction = null ;
2021-01-29 12:36:02 +01:00
let clickType = clickMap [ type . toUpperCase ( ) ] ;
2020-09-19 20:49:33 +02:00
for ( let action in enabledBindings ) {
let binding = enabledBindings [ action ] ;
let priorityBinding = enabledBindings [ priorityAction ] ;
2021-01-29 12:36:02 +01:00
if ( this . checkIfBindingIsValid ( binding , clickType ) && ( ! enabledBindings [ priorityAction ] || binding . click > priorityBinding . click || binding . keycombo . length > priorityBinding . keycombo . length ) ) priorityAction = action ;
2020-09-19 20:49:33 +02:00
}
if ( priorityAction ) {
2021-01-29 17:14:29 +01:00
let messageDiv = BDFDB . DOMUtils . getParent ( BDFDB . dotCNC . message + BDFDB . dotCN . searchresultsmessage , event . target ) ;
2021-01-29 12:36:02 +01:00
if ( messageDiv ) {
BDFDB . ListenerUtils . stopEvent ( event ) ;
2020-11-20 10:30:29 +01:00
BDFDB . TimeUtils . clear ( clickTimeout ) ;
2020-09-19 20:49:33 +02:00
if ( ! this . hasDoubleClickOverwrite ( enabledBindings [ priorityAction ] ) ) {
2021-06-26 17:37:02 +02:00
BDFDB . TimeUtils . suppress ( _ => this . defaults . bindings [ priorityAction ] . func . apply ( this , [ { messageDiv , message } , priorityAction , event ] ) , "" , this ) ( ) ;
2020-09-19 20:49:33 +02:00
}
2020-11-20 10:30:29 +01:00
else clickTimeout = BDFDB . TimeUtils . timeout ( _ => {
2021-06-26 17:37:02 +02:00
BDFDB . TimeUtils . suppress ( _ => this . defaults . bindings [ priorityAction ] . func . apply ( this , [ { messageDiv , message } , priorityAction , event ] ) , "" , this ) ( ) ;
2020-09-19 20:49:33 +02:00
} , 500 ) ;
2020-02-04 08:20:40 +01:00
}
2019-09-28 10:27:59 +02:00
}
2021-06-26 17:37:02 +02:00
BDFDB . TimeUtils . timeout ( _ => BDFDB . ArrayUtils . remove ( firedEvents , type , true ) ) ;
2021-01-29 12:36:02 +01:00
}
}
onKeyDown ( event ) {
let type = event . type ;
if ( ! firedEvents . includes ( type ) ) {
if ( event . which == 27 && settings . clearOnEscape && ChannelTextAreaForm ) {
ChannelTextAreaForm . setState ( { textValue : "" , richValue : BDFDB . LibraryModules . SlateUtils . deserialize ( "" ) } ) ;
}
BDFDB . TimeUtils . timeout ( _ => { BDFDB . ArrayUtils . remove ( firedEvents , type , true ) } ) ;
2018-10-11 10:21:26 +02:00
}
}
2019-01-26 22:45:19 +01:00
2021-01-29 12:36:02 +01:00
checkIfBindingIsValid ( binding , clickType ) {
if ( binding . click != clickType ) return false ;
2020-09-19 20:49:33 +02:00
for ( let key of binding . keycombo ) if ( ! BDFDB . ListenerUtils . isPressed ( key ) ) return false ;
return true ;
}
2019-01-26 22:45:19 +01:00
2020-09-19 20:49:33 +02:00
hasDoubleClickOverwrite ( binding ) {
2021-01-29 12:36:02 +01:00
if ( binding . click == clickMap . DBLCLICK ) return false ;
let dblBindings = BDFDB . ObjectUtils . filter ( enabledBindings , bndg => bndg . click == clickMap . DBLCLICK ) ;
2020-09-19 20:49:33 +02:00
for ( let dblAction in dblBindings ) {
let dblBinding = dblBindings [ dblAction ] ;
let overwrite = true ;
if ( BDFDB . equals ( binding . keycombo , dblBinding . keycombo ) ) return true ;
}
return false ;
2020-02-04 08:20:40 +01:00
}
2019-09-28 10:27:59 +02:00
2021-06-26 17:37:02 +02:00
doDelete ( { messageDiv , message } , action , event ) {
2020-09-19 20:49:33 +02:00
let deleteLink = messageDiv . parentElement . querySelector ( BDFDB . dotCNS . messagelocalbotoperations + BDFDB . dotCN . anchor ) ;
if ( deleteLink ) deleteLink . click ( ) ;
2021-03-10 09:11:29 +01:00
else if ( BDFDB . DiscordConstants . MessageTypesDeletable [ message . type ] ) {
2020-09-19 20:49:33 +02:00
let channel = BDFDB . LibraryModules . ChannelStore . getChannel ( message . channel _id ) ;
2021-03-10 09:11:29 +01:00
if ( channel && ( BDFDB . UserUtils . can ( "MANAGE_MESSAGES" ) || message . author . id == BDFDB . UserUtils . me . id ) ) {
2021-01-29 12:36:02 +01:00
BDFDB . LibraryModules . MessageUtils . deleteMessage ( message . channel _id , message . id , message . state != BDFDB . DiscordConstants . MessageStates . SENT ) ;
if ( toasts [ action ] ) BDFDB . NotificationUtils . toast ( this . formatToast ( BDFDB . LanguageUtils . LanguageStrings . GUILD _SETTINGS _FOLLOWER _ANALYTICS _MESSAGE _DELETED ) , { type : "success" } ) ;
2020-09-19 20:49:33 +02:00
}
2020-02-04 08:20:40 +01:00
}
2019-03-01 21:25:48 +01:00
}
2019-01-26 22:45:19 +01:00
2021-06-26 17:37:02 +02:00
doEdit ( { messageDiv , message } , action , event ) {
2021-02-15 15:04:55 +01:00
if ( message . author . id == BDFDB . UserUtils . me . id && ! messageDiv . querySelector ( BDFDB . dotCN . messagechanneltextarea ) ) {
2020-09-19 20:49:33 +02:00
BDFDB . LibraryModules . MessageUtils . startEditMessage ( message . channel _id , message . id , message . content ) ;
2021-01-29 12:36:02 +01:00
if ( toasts [ action ] ) BDFDB . NotificationUtils . toast ( this . formatToast ( BDFDB . LanguageUtils . LanguageStrings . EDITING _MESSAGE ) , { type : "success" } ) ;
2020-09-19 20:49:33 +02:00
}
2020-02-04 08:20:40 +01:00
}
2019-01-26 22:45:19 +01:00
2021-06-26 17:37:02 +02:00
doOpenReact ( { messageDiv , message } , action , event ) {
2020-09-19 20:49:33 +02:00
let reactButton = messageDiv . querySelector ( ` ${ BDFDB . dotCN . messagetoolbarbutton } [aria-label=" ${ BDFDB . LanguageUtils . LanguageStrings . ADD _REACTION } "] ` ) ;
if ( reactButton ) {
reactButton . click ( ) ;
2021-01-29 12:36:02 +01:00
if ( toasts [ action ] ) BDFDB . NotificationUtils . toast ( this . formatToast ( BDFDB . LanguageUtils . LanguageStrings . ADD _REACTIONS ) , { type : "success" } ) ;
2020-09-19 20:49:33 +02:00
}
2020-02-04 08:20:40 +01:00
}
2019-01-26 22:45:19 +01:00
2021-06-26 17:37:02 +02:00
doPinUnPin ( { messageDiv , message } , action , event ) {
2021-01-29 12:36:02 +01:00
if ( message . state == BDFDB . DiscordConstants . MessageStates . SENT ) {
2020-09-19 20:49:33 +02:00
let channel = BDFDB . LibraryModules . ChannelStore . getChannel ( message . channel _id ) ;
2021-03-10 09:11:29 +01:00
if ( channel && ( BDFDB . DMUtils . isDMChannel ( channel . id ) || BDFDB . UserUtils . can ( "MANAGE_MESSAGES" ) ) && ( message . type == BDFDB . DiscordConstants . MessageTypes . DEFAULT || message . type == BDFDB . DiscordConstants . MessageTypes . REPLY ) ) {
2020-09-19 20:49:33 +02:00
if ( message . pinned ) {
BDFDB . LibraryModules . MessagePinUtils . unpinMessage ( channel , message . id ) ;
2021-01-29 12:36:02 +01:00
if ( toasts [ action ] ) BDFDB . NotificationUtils . toast ( this . formatToast ( BDFDB . LanguageUtils . LanguageStrings . MESSAGE _UNPINNED ) , { type : "danger" } ) ;
2020-09-19 20:49:33 +02:00
}
else {
BDFDB . LibraryModules . MessagePinUtils . pinMessage ( channel , message . id ) ;
2021-01-29 12:36:02 +01:00
if ( toasts [ action ] ) BDFDB . NotificationUtils . toast ( this . formatToast ( BDFDB . LanguageUtils . LanguageStrings . MESSAGE _PINNED ) , { type : "success" } ) ;
2020-09-19 20:49:33 +02:00
}
2020-02-04 08:20:40 +01:00
}
2019-09-26 20:09:46 +02:00
}
2019-03-01 21:25:48 +01:00
}
2020-11-23 17:55:46 +01:00
2021-06-26 17:37:02 +02:00
doReply ( { messageDiv , message } , action , event ) {
2021-01-29 12:36:02 +01:00
if ( message . state == BDFDB . DiscordConstants . MessageStates . SENT ) {
2020-11-23 17:55:46 +01:00
let channel = BDFDB . LibraryModules . ChannelStore . getChannel ( message . channel _id ) ;
2021-03-10 09:11:29 +01:00
if ( channel && ( BDFDB . DMUtils . isDMChannel ( channel . id ) || BDFDB . UserUtils . can ( "SEND_MESSAGES" ) ) && ( message . type == BDFDB . DiscordConstants . MessageTypes . DEFAULT || message . type == BDFDB . DiscordConstants . MessageTypes . REPLY ) ) {
2021-06-26 17:37:02 +02:00
BDFDB . LibraryModules . MessageManageUtils . replyToMessage ( channel , message , event ) ;
2021-01-29 12:36:02 +01:00
if ( toasts [ action ] ) BDFDB . NotificationUtils . toast ( this . formatToast ( BDFDB . LanguageUtils . LanguageStrings . NOTIFICATION _REPLY ) , { type : "success" } ) ;
2020-11-23 17:55:46 +01:00
}
}
}
2019-01-26 22:45:19 +01:00
2021-06-26 17:37:02 +02:00
doCopyRaw ( { messageDiv , message } , action , event ) {
2020-09-19 20:49:33 +02:00
if ( message . content ) {
2020-11-19 16:51:14 +01:00
BDFDB . LibraryRequires . electron . clipboard . write ( { text : message . content } ) ;
2021-01-29 12:36:02 +01:00
if ( toasts [ action ] ) BDFDB . NotificationUtils . toast ( this . formatToast ( BDFDB . LanguageUtils . LanguageStrings . COPIED _TEXT ) , { type : "success" } ) ;
2020-09-19 20:49:33 +02:00
}
2020-02-04 08:20:40 +01:00
}
2019-09-26 16:18:55 +02:00
2021-06-26 17:37:02 +02:00
doCopyLink ( { messageDiv , message } , action , event ) {
2020-09-19 20:49:33 +02:00
let channel = BDFDB . LibraryModules . ChannelStore . getChannel ( message . channel _id ) ;
if ( channel ) {
BDFDB . LibraryModules . MessageManageUtils . copyLink ( channel , message ) ;
2021-01-29 12:36:02 +01:00
if ( toasts [ action ] ) BDFDB . NotificationUtils . toast ( this . formatToast ( BDFDB . LanguageUtils . LanguageStrings . LINK _COPIED ) , { type : "success" } ) ;
2020-09-19 20:49:33 +02:00
}
2020-02-04 08:20:40 +01:00
}
2019-09-26 16:18:55 +02:00
2021-06-26 17:37:02 +02:00
doQuote ( { messageDiv , message } , action , event ) {
2020-11-23 17:55:46 +01:00
if ( BDFDB . BDUtils . isPluginEnabled ( this . defaults . bindings . _ _Quote _Message . plugin ) ) {
let channel = BDFDB . LibraryModules . ChannelStore . getChannel ( message . channel _id ) ;
if ( channel ) BDFDB . BDUtils . getPlugin ( this . defaults . bindings . _ _Quote _Message . plugin ) . quote ( channel , message ) ;
2020-09-19 20:49:33 +02:00
}
2020-02-04 08:20:40 +01:00
}
2020-01-07 11:09:56 +01:00
2021-06-26 17:37:02 +02:00
doNote ( { messageDiv , message } , action , event ) {
2020-09-19 20:49:33 +02:00
if ( BDFDB . BDUtils . isPluginEnabled ( this . defaults . bindings . _ _Note _Message . plugin ) ) {
let channel = BDFDB . LibraryModules . ChannelStore . getChannel ( message . channel _id ) ;
if ( channel ) BDFDB . BDUtils . getPlugin ( this . defaults . bindings . _ _Note _Message . plugin ) . addMessageToNotes ( message , channel ) ;
}
2020-02-04 08:20:40 +01:00
}
2019-01-26 22:45:19 +01:00
2021-06-26 17:37:02 +02:00
doTranslate ( { messageDiv , message } , action , event ) {
2020-09-19 20:49:33 +02:00
if ( BDFDB . BDUtils . isPluginEnabled ( this . defaults . bindings . _ _Translate _Message . plugin ) ) {
let channel = BDFDB . LibraryModules . ChannelStore . getChannel ( message . channel _id ) ;
if ( channel ) BDFDB . BDUtils . getPlugin ( this . defaults . bindings . _ _Translate _Message . plugin ) . translateMessage ( message , channel ) ;
}
2020-02-04 08:20:40 +01:00
}
2021-01-29 12:36:02 +01:00
formatToast ( string ) {
return typeof string == "string" ? ( string . endsWith ( "." ) || string . endsWith ( "!" ) ? string . slice ( 0 , - 1 ) : string ) : "" ;
2018-10-11 10:21:26 +02:00
}
2019-01-26 22:45:19 +01:00
2020-09-19 20:49:33 +02:00
getActiveShortcutString ( action ) {
if ( ! action ) return null ;
let str = [ ] ;
if ( settings . addHints && settings [ action ] && enabledBindings [ action ] ) {
if ( enabledBindings [ action ] . keycombo . length ) str . push ( BDFDB . LibraryModules . KeyCodeUtils . getString ( enabledBindings [ action ] . keycombo ) ) ;
2021-01-29 12:36:02 +01:00
str . push ( Object . keys ( clickMap ) . find ( type => clickMap [ type ] == enabledBindings [ action ] . click ) ) ;
2020-09-19 20:49:33 +02:00
}
return str . join ( "+" ) . replace ( / /g , "" ) ;
2018-12-29 11:32:07 +01:00
}
2020-09-19 20:49:33 +02:00
} ;
2020-10-09 21:09:35 +02:00
} ) ( window . BDFDB _Global . PluginUtils . buildPlugin ( config ) ) ;
2020-09-21 07:09:21 +02:00
} ) ( ) ;