2020-10-20 23:25:34 +02:00
/ * *
* @ name PersonalPins
* @ authorId 278543574059057154
* @ invite Jx3TjNS
* @ donate https : //www.paypal.me/MircoWittrien
* @ patreon https : //www.patreon.com/MircoWittrien
* @ website https : //github.com/mwittrien/BetterDiscordAddons/tree/master/Plugins/PersonalPins
* @ source https : //raw.githubusercontent.com/mwittrien/BetterDiscordAddons/master/Plugins/PersonalPins/PersonalPins.plugin.js
2020-11-12 17:30:48 +01:00
* @ updateUrl https : //raw.githubusercontent.com/mwittrien/BetterDiscordAddons/master/Plugins/PersonalPins/PersonalPins.plugin.js
2020-10-20 23:25:34 +02:00
* /
2018-12-28 14:28:50 +01: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" : "PersonalPins" ,
"author" : "DevilBro" ,
2020-09-23 09:29:56 +02:00
"version" : "1.9.9" ,
2020-10-16 10:25:30 +02:00
"description" : "Similar to normal pins, save messages as notes for yourself"
2020-09-23 09:29:56 +02:00
} ,
"changeLog" : {
"improved" : {
"Quick Action" : "Added Icon to quick action bar. Holding shift while hovering a message shows the quick action bar"
}
2020-02-04 08:20:40 +01: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-07-11 23:28:30 +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 ;
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
const pinIconGeneral = ` <svg name="Note" width="24" height="24" viewBox="-1 -1.5 23 23"><mask/><g mask="url(#pinIconMask)"><path fill="currentColor" d="M 4.618, 0 c -0.316, 0 -0.573, 0.256 -0.573, 0.573 v 1.145 c 0, 0.316, 0.256, 0.573, 0.573, 0.573 s 0.573 -0.256, 0.573 -0.573 V 0.573 C 5.191, 0.256, 4.935, 0, 4.618, 0 z"/><path fill="currentColor" d="M 8.053, 0 c -0.316, 0 -0.573, 0.256 -0.573, 0.573 v 1.145 c 0, 0.316, 0.256, 0.573, 0.573, 0.573 s 0.573 -0.256, 0.573 -0.573 V 0.573 C 8.626, 0.256, 8.37, 0, 8.053, 0 z"/><path fill="currentColor" d="M 11.489, 0 c -0.316, 0 -0.573, 0.256 -0.573, 0.573 v 1.145 c 0, 0.316, 0.256, 0.573, 0.573, 0.573 c 0.316, 0, 0.573 -0.256, 0.573 -0.573 V 0.573 C 12.061, 0.256, 11.805, 0, 11.489, 0 z "/><path fill="currentColor" d="M 14.924, 0 c -0.316, 0 -0.573, 0.256 -0.573, 0.573 v 1.145 c 0, 0.316, 0.256, 0.573, 0.573, 0.573 c 0.316, 0, 0.573 -0.256, 0.573 -0.573 V 0.573 C 15.496, 0.256, 15.24, 0, 14.924, 0 z"/><path fill="currentColor" d="M 16.641, 1.25 V 1.718 c 0, 0.947 -0.77, 1.718 -1.718, 1.718 c -0.947, 0 -1.718 -0.77 -1.718 -1.718 c 0, 0.947 -0.77, 1.718 -1.718, 1.718 c -0.947, 0 -1.718 -0.77 -1.718 -1.718 c 0, 0.947 -0.77, 1.718 -1.718, 1.718 c -0.947, 0 -1.718 -0.77 -1.718 -1.718 c 0, 0.947 -0.77, 1.718 -1.718, 1.718 c -0.947, 0 -1.718 -0.77 -1.718 -1.718 V 1.25 C 2.236, 1.488, 1.756, 2.117, 1.756, 2.863 v 14.962 c 0, 0.947, 0.77, 1.718, 1.718, 1.718 h 12.595 c 0.947, 0, 1.718 -0.77, 1.718 -1.718 V 2.863 C 17.786, 2.117, 17.306, 1.488, 16.641, 1.25 z M 14.924, 16.679 H 4.618 c -0.316, 0 -0.573 -0.256 -0.573 -0.573 c 0 -0.316, 0.256 -0.573, 0.573 -0.573 h 10.305 c 0.316, 0, 0.573, 0.256, 0.573, 0.573 C 15.496, 16.423, 15.24, 16.679, 14.924, 16.679 z M 14.924, 13.244 H 4.618 c -0.316, 0 -0.573 -0.256 -0.573 -0.573 c 0 -0.316, 0.256 -0.573, 0.573 -0.573 h 10.305 c 0.316, 0, 0.573, 0.256, 0.573, 0.573 C 15.496, 12.988, 15.24, 13.244, 14.924, 13.244 z M 14.924, 9.733 H 4.618 c -0.316, 0 -0.573 -0.256 -0.573 -0.573 s 0.256 -0.573, 0.573 -0.573 h 10.305 c 0.316, 0, 0.573, 0.256, 0.573, 0.573 S 15.24, 9.733, 14.924, 9.733 z M 14.924, 6.298 H 4.618 c -0.316, 0 -0.573 -0.256 -0.573 -0.573 s 0.256 -0.573, 0.573 -0.573 h 10.305 c 0.316, 0, 0.573, 0.256, 0.573, 0.573 S 15.24, 6.298, 14.924, 6.298 z"/></g><extra/></svg> ` ;
const pinIconMask = ` <mask id="pinIconMask" fill="black"><path d="M 0 0 H 24 V 24 H 0 Z" fill="white"></path><path d="M24 12 H 12 V 24 H 24 Z" fill="black"></path></mask> ` ;
const pinIcon = pinIconGeneral . replace ( ` <extra/> ` , ` ` ) . replace ( ` <mask/> ` , ` ` ) . replace ( ` mask="url(#pinIconMask)" ` , ` ` ) ;
const pinIconDelete = pinIconGeneral . replace ( ` <extra/> ` , ` <path transform="translate(8, 8)" stroke="#f04747" stroke-width="2" fill="none" d="M 4 4 l 8.666 8.666 m 0 -8.667 l -8.667 8.666 Z"/> ` ) . replace ( ` <mask/> ` , pinIconMask ) ;
const pinIconUpdate = pinIconGeneral . replace ( ` <extra/> ` , ` <path transform="translate(10, 10)" fill="#43b581" d="M 11.374, 4.978 V 0 l -1.672, 1.671 C 8.675, 0.64, 7.256, 0, 5.685, 0 C 2.542, 0, 0.003, 2.546, 0.003, 5.688 s 2.538, 5.688, 5.681, 5.688 c 2.648, 0, 4.867 -1.814, 5.496 -4.267 h -1.48 c -0.587, 1.656 -2.158, 2.844 -4.018, 2.844 c -2.358, 0 -4.267 -1.91 -4.267 -4.267 s 1.909 -4.267, 4.266 -4.267 c 1.176, 0, 2.232, 0.49, 3.004, 1.262 l -2.294, 2.293 H 11.374 z"/> ` ) . replace ( ` <mask/> ` , pinIconMask ) ;
const filterKeys = [ "channel" , "server" , "all" ] ;
const sortKeys = [ "notetime" , "messagetime" ] ;
const orderKeys = [ "ascending" , "descending" ] ;
var choices = { } ;
2020-10-09 21:09:35 +02:00
return class PersonalPins extends Plugin {
2021-01-06 12:38:36 +01:00
onLoad ( ) {
2020-09-19 20:49:33 +02:00
this . defaults = {
choices : {
2020-11-19 16:51:14 +01:00
defaultFilter : { value : filterKeys [ 0 ] , options : filterKeys , type : "filter" , description : "Default choice tab" } ,
defaultSort : { value : sortKeys [ 0 ] , options : sortKeys , type : "sort" , description : "Default sort choice" } ,
defaultOrder : { value : orderKeys [ 0 ] , options : orderKeys , type : "order" , description : "Default order choice" } ,
2020-09-19 20:49:33 +02:00
}
} ;
2020-07-11 23:28:30 +02:00
2020-09-19 20:49:33 +02:00
this . patchedModules = {
after : {
HeaderBarContainer : "render"
}
} ;
}
2020-02-04 08:20:40 +01:00
2021-01-06 12:38:36 +01:00
onStart ( ) {
2020-09-19 20:49:33 +02:00
this . forceUpdateAll ( ) ;
2020-02-04 08:20:40 +01:00
}
2020-09-19 20:49:33 +02:00
2021-01-06 12:38:36 +01:00
onStop ( ) {
2020-07-11 23:28:30 +02:00
this . forceUpdateAll ( ) ;
2020-02-04 08:20:40 +01:00
}
2019-10-22 11:37:23 +02:00
2020-09-19 20:49:33 +02:00
getSettingsPanel ( collapseStates = { } ) {
let settingsPanel , settingsItems = [ ] ;
for ( let key in choices ) settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
type : "Select" ,
plugin : this ,
keys : [ "choices" , key ] ,
label : this . defaults . choices [ key ] . description ,
basis : "50%" ,
value : choices [ key ] ,
options : ( this . defaults . choices [ key ] . options || [ ] ) . map ( option => this . getValue ( option , this . defaults . choices [ key ] . type ) ) ,
searchable : true
} ) ) ;
2020-02-04 08:20:40 +01:00
2020-09-19 20:49:33 +02:00
settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsItem , {
type : "Button" ,
color : BDFDB . LibraryComponents . Button . Colors . RED ,
label : "Delete all notes" ,
onClick : _ => {
BDFDB . ModalUtils . confirm ( this , "Are you sure you want to delete all pinned notes?" , _ => {
BDFDB . DataUtils . remove ( this , "notes" ) ;
} ) ;
} ,
children : BDFDB . LanguageUtils . LanguageStrings . DELETE
} ) ) ;
return settingsPanel = BDFDB . PluginUtils . createSettingsPanel ( this , settingsItems ) ;
2020-02-04 08:20:40 +01: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
choices = BDFDB . DataUtils . get ( this , "choices" ) ;
BDFDB . PatchUtils . forceAllUpdates ( this ) ;
}
2019-01-26 22:45:19 +01:00
2020-09-19 20:49:33 +02:00
onMessageContextMenu ( e ) {
if ( e . instance . props . message && e . instance . props . channel ) {
let note = this . getNoteData ( e . instance . props . message , e . instance . props . channel ) ;
let hint = BDFDB . BDUtils . isPluginEnabled ( "MessageUtilities" ) ? BDFDB . BDUtils . getPlugin ( "MessageUtilities" ) . getActiveShortcutString ( "__Note_Message" ) : null ;
let [ children , index ] = BDFDB . ContextMenuUtils . findItem ( e . returnvalue , { id : [ "pin" , "unpin" ] } ) ;
if ( index == - 1 ) [ children , index ] = BDFDB . ContextMenuUtils . findItem ( e . returnvalue , { id : [ "edit" , "add-reaction" , "quote" ] } ) ;
children . splice ( index > - 1 ? index + 1 : 0 , 0 , BDFDB . ContextMenuUtils . createItem ( BDFDB . LibraryComponents . MenuItems . MenuItem , {
2020-12-21 19:56:36 +01:00
label : note ? this . labels . context _unpinoption : this . labels . context _pinoption ,
2020-09-19 20:49:33 +02:00
id : BDFDB . ContextMenuUtils . createItemId ( this . name , note ? "unpin-note" : "pin-note" ) ,
hint : hint && ( _ => {
return BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . MenuItems . MenuHint , {
hint : hint
} ) ;
} ) ,
action : _ => {
this . addMessageToNotes ( e . instance . props . message , e . instance . props . channel ) ;
}
} ) ) ;
if ( this . isNoteOutdated ( note , e . instance . props . message ) ) children . splice ( index > - 1 ? index + 1 : 0 , 0 , BDFDB . ContextMenuUtils . createItem ( BDFDB . LibraryComponents . MenuItems . MenuItem , {
2020-12-21 19:56:36 +01:00
label : this . labels . context _updateoption ,
2020-09-19 20:49:33 +02:00
id : BDFDB . ContextMenuUtils . createItemId ( this . name , "update-note" ) ,
action : _ => {
this . updateNoteData ( note , e . instance . props . message ) ;
}
} ) ) ;
}
}
onMessageOptionContextMenu ( e ) {
if ( e . instance . props . message && e . instance . props . channel ) {
let note = this . getNoteData ( e . instance . props . message , e . instance . props . channel ) ;
let [ children , index ] = BDFDB . ContextMenuUtils . findItem ( e . returnvalue , { id : [ "pin" , "unpin" ] } ) ;
children . splice ( index + 1 , 0 , BDFDB . ContextMenuUtils . createItem ( BDFDB . LibraryComponents . MenuItems . MenuItem , {
2020-12-21 19:56:36 +01:00
label : note ? this . labels . context _unpinoption : this . labels . context _pinoption ,
2020-09-19 20:49:33 +02:00
id : BDFDB . ContextMenuUtils . createItemId ( this . name , note ? "unpin-note" : "pin-note" ) ,
icon : _ => {
return BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . MenuItems . MenuIcon , {
icon : note ? pinIconDelete : pinIcon
} ) ;
} ,
action : _ => {
this . addMessageToNotes ( e . instance . props . message , e . instance . props . channel ) ;
}
} ) ) ;
if ( this . isNoteOutdated ( note , e . instance . props . message ) ) children . splice ( index + 1 , 0 , BDFDB . ContextMenuUtils . createItem ( BDFDB . LibraryComponents . MenuItems . MenuItem , {
2020-12-21 19:56:36 +01:00
label : this . labels . context _updateoption ,
2020-09-19 20:49:33 +02:00
id : "update-note" ,
icon : _ => {
return BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . MenuItems . MenuIcon , {
icon : pinIconUpdate
} ) ;
} ,
action : _ => {
this . updateNoteData ( note , e . instance . props . message ) ;
}
} ) ) ;
}
2020-07-11 23:28:30 +02:00
}
2020-09-23 09:29:56 +02:00
onMessageOptionToolbar ( e ) {
if ( e . instance . props . expanded && e . instance . props . message && e . instance . props . channel ) {
let note = this . getNoteData ( e . instance . props . message , e . instance . props . channel ) ;
e . returnvalue . props . children . unshift ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . TooltipContainer , {
key : note ? "unpin-note" : "pin-note" ,
2020-12-21 19:56:36 +01:00
text : note ? this . labels . context _unpinoption : this . labels . context _pinoption ,
2020-09-23 09:29:56 +02:00
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Clickable , {
className : BDFDB . disCN . messagetoolbarbutton ,
onClick : _ => {
this . addMessageToNotes ( e . instance . props . message , e . instance . props . channel ) ;
} ,
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SvgIcon , {
className : BDFDB . disCN . messagetoolbaricon ,
iconSVG : note ? pinIconDelete : pinIcon
} )
} )
} ) ) ;
if ( this . isNoteOutdated ( note , e . instance . props . message ) ) e . returnvalue . props . children . unshift ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . TooltipContainer , {
key : "update-note" ,
2020-12-21 19:56:36 +01:00
text : this . labels . context _updateoption ,
2020-09-23 09:29:56 +02:00
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Clickable , {
className : BDFDB . disCN . messagetoolbarbutton ,
onClick : _ => {
this . updateNoteData ( note , e . instance . props . message ) ;
} ,
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SvgIcon , {
className : BDFDB . disCN . messagetoolbaricon ,
iconSVG : pinIconUpdate
} )
} )
} ) ) ;
}
}
2020-07-11 23:28:30 +02:00
2020-09-19 20:49:33 +02:00
processHeaderBarContainer ( e ) {
let [ children , index ] = BDFDB . ReactUtils . findParent ( BDFDB . ObjectUtils . get ( e . returnvalue , "props.toolbar" ) , { name : "FluxContainer(Search)" } ) ;
if ( index > - 1 ) children . splice ( index , 0 , BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . PopoutContainer , {
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . TooltipContainer , {
2020-12-21 19:56:36 +01:00
text : this . labels . popout _note ,
2020-09-19 20:49:33 +02:00
tooltipConfig : { type : "bottom" } ,
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Clickable , {
className : BDFDB . disCNS . channelheadericonwrapper + BDFDB . disCN . channelheadericonclickable ,
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SvgIcon , {
className : BDFDB . disCNS . channelheadericon ,
iconSVG : pinIcon
} )
} )
2020-05-19 16:39:28 +02:00
} ) ,
2020-09-19 20:49:33 +02:00
popoutClassName : BDFDB . disCN . messagespopoutwrap ,
animation : BDFDB . LibraryComponents . PopoutContainer . Animation . SCALE ,
position : BDFDB . LibraryComponents . PopoutContainer . Positions . BOTTOM ,
align : BDFDB . LibraryComponents . PopoutContainer . Align . RIGHT ,
width : 650 ,
maxHeight : "calc(100vh - 100px)" ,
onClose : instance => {
BDFDB . DOMUtils . removeClass ( instance . domElementRef . current , BDFDB . disCN . channelheadericonselected ) ;
2020-05-14 17:33:14 +02:00
} ,
2020-09-19 20:49:33 +02:00
renderPopout : instance => {
BDFDB . DOMUtils . addClass ( instance . domElementRef . current , BDFDB . disCN . channelheadericonselected ) ;
return this . openNotesPopout ( instance ) ;
2020-02-04 08:20:40 +01:00
}
} ) ) ;
2018-12-28 14:28:50 +01:00
}
2020-09-19 20:49:33 +02:00
openNotesPopout ( buttonInstance ) {
buttonInstance . props . selectedFilter = buttonInstance . props . selectedFilter || this . getValue ( choices . defaultFilter || filterKeys [ 0 ] , "filter" ) ;
buttonInstance . props . selectedSort = buttonInstance . props . selectedSort || this . getValue ( choices . defaultSort || sortKeys [ 0 ] , "sort" ) ;
buttonInstance . props . selectedOrder = buttonInstance . props . selectedOrder || this . getValue ( choices . defaultOrder || orderKeys [ 0 ] , "order" ) ;
buttonInstance . props . searchKey = buttonInstance . props . searchKey || "" ;
let searchTimeout ;
return [
BDFDB . ReactUtils . createElement ( "div" , {
className : BDFDB . disCNS . messagespopouttabbarheader + BDFDB . disCN . messagespopoutheader ,
style : {
paddingBottom : 4
} ,
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex , {
direction : BDFDB . LibraryComponents . Flex . Direction . VERTICAL ,
children : [
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex , {
className : BDFDB . disCN . marginbottom4 ,
align : BDFDB . LibraryComponents . Flex . Align . CENTER ,
children : [
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex . Child , {
className : BDFDB . disCN . messagespopouttitle ,
2020-12-21 19:56:36 +01:00
children : this . labels . popout _note
2020-09-19 20:49:33 +02:00
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SearchBar , {
query : buttonInstance . props . searchKey ,
onChange : value => {
BDFDB . TimeUtils . clear ( searchTimeout ) ;
searchTimeout = BDFDB . TimeUtils . timeout ( _ => {
buttonInstance . props . searchKey = value ;
BDFDB . ReactUtils . forceUpdate ( buttonInstance . context . popout . _owner . stateNode ) ;
} , 1000 ) ;
} ,
onClear : _ => {
buttonInstance . props . searchKey = "" ;
BDFDB . ReactUtils . forceUpdate ( buttonInstance . context . popout . _owner . stateNode ) ;
}
} )
]
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex , {
align : BDFDB . LibraryComponents . Flex . Align . CENTER ,
children : [
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . TabBar , {
className : BDFDB . disCN . messagespopouttabbar ,
itemClassName : BDFDB . disCN . messagespopouttabbartab ,
itemSelectedClassName : BDFDB . disCN . messagespopouttabbartabactive ,
type : BDFDB . LibraryComponents . TabBar . Types . TOP _PILL ,
selectedItem : buttonInstance . props . selectedFilter . value ,
items : filterKeys . map ( option => this . getValue ( option , "filter" ) ) ,
onItemSelect : option => {
buttonInstance . props . selectedFilter = this . getValue ( option , "filter" ) ;
BDFDB . ReactUtils . forceUpdate ( buttonInstance . context . popout . _owner . stateNode ) ;
}
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . QuickSelect , {
label : BDFDB . LanguageUtils . LibraryStrings . sort _by + ":" ,
value : buttonInstance . props . selectedSort ,
options : sortKeys . map ( option => this . getValue ( option , "sort" ) ) ,
onChange : option => {
buttonInstance . props . selectedSort = this . getValue ( option , "sort" ) ;
BDFDB . ReactUtils . forceUpdate ( buttonInstance . context . popout . _owner . stateNode ) ;
}
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . QuickSelect , {
label : BDFDB . LanguageUtils . LibraryStrings . order + ":" ,
value : buttonInstance . props . selectedOrder ,
options : orderKeys . map ( option => this . getValue ( option , "order" ) ) ,
onChange : option => {
buttonInstance . props . selectedOrder = this . getValue ( option , "order" ) ;
BDFDB . ReactUtils . forceUpdate ( buttonInstance . context . popout . _owner . stateNode ) ;
}
} )
]
} )
]
2020-02-04 08:20:40 +01:00
} )
2020-09-19 20:49:33 +02:00
} ) ,
2020-09-20 08:19:20 +02:00
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Scrollers . Thin , {
2020-09-19 20:49:33 +02:00
className : BDFDB . disCN . messagespopout ,
children : this . filterMessages ( buttonInstance , buttonInstance . props . selectedFilter . value , buttonInstance . props . selectedSort . value , buttonInstance . props . selectedOrder . value == "descending" , buttonInstance . props . searchKey . toUpperCase ( ) )
2020-02-04 08:20:40 +01:00
} )
2020-09-19 20:49:33 +02:00
] ;
}
getValue ( key , type ) {
return {
2020-12-21 19:56:36 +01:00
label : type == "order" ? BDFDB . LanguageUtils . LibraryStrings [ key ] : this . labels [ ` popout_ ${ type } _ ${ key } ` ] ,
2020-09-19 20:49:33 +02:00
value : key
} ;
}
filterMessages ( buttonInstance , filter , sort , reverse , searchkey ) {
let lightTheme = BDFDB . DiscordUtils . getTheme ( ) == BDFDB . disCN . themelight ;
let messages = [ ] , notes = BDFDB . DataUtils . load ( this , "notes" ) , updateData = false ;
for ( let guild _id in notes ) for ( let channel _id in notes [ guild _id ] ) for ( let message _idPOS in notes [ guild _id ] [ channel _id ] ) {
let message = JSON . parse ( notes [ guild _id ] [ channel _id ] [ message _idPOS ] . message ) ;
message . author = new BDFDB . DiscordObjects . User ( message . author ) ;
message . timestamp = new BDFDB . DiscordObjects . Timestamp ( message . timestamp ) ;
message . editedTimestamp = message . editedTimestamp && new BDFDB . DiscordObjects . Timestamp ( message . editedTimestamp ) ;
if ( message . customRenderedContent && message . customRenderedContent . content . length ) message . customRenderedContent . content = BDFDB . ReactUtils . objectToReact ( message . customRenderedContent . content ) ;
for ( let embed of message . embeds ) {
embed . color = typeof embed . color != "string" ? null : embed . color ;
embed . timestamp = embed . timestamp && new BDFDB . DiscordObjects . Timestamp ( embed . timestamp ) ;
}
message . embeds = message . embeds . filter ( n => ! ( n && n . type == "gifv" ) ) ;
message . reactions = [ ] ;
message = new BDFDB . DiscordObjects . Message ( message ) ;
let channel = notes [ guild _id ] [ channel _id ] [ message _idPOS ] . channel && new BDFDB . DiscordObjects . Channel ( JSON . parse ( notes [ guild _id ] [ channel _id ] [ message _idPOS ] . channel ) ) ;
if ( ! channel ) {
channel = BDFDB . LibraryModules . ChannelStore . getChannel ( message . channel _id ) ;
if ( channel ) {
updateData = true ;
notes [ guild _id ] [ channel _id ] [ message _idPOS ] . channel = JSON . stringify ( channel ) ;
}
}
messages . push ( {
note : notes [ guild _id ] [ channel _id ] [ message _idPOS ] ,
channel _id ,
guild _id ,
message ,
channel ,
messagetime : notes [ guild _id ] [ channel _id ] [ message _idPOS ] . timestamp ,
notetime : notes [ guild _id ] [ channel _id ] [ message _idPOS ] . addedat
} ) ;
2020-02-04 08:20:40 +01:00
}
2020-09-19 20:49:33 +02:00
if ( updateData ) BDFDB . DataUtils . save ( notes , this , "notes" ) ;
let currentChannel = BDFDB . LibraryModules . ChannelStore . getChannel ( BDFDB . LibraryModules . LastChannelStore . getChannelId ( ) ) || { } ;
switch ( filter ) {
case "channel" :
messages = messages . filter ( messageData => messageData . channel _id == currentChannel . id ) ;
break ;
case "server" :
messages = messages . filter ( messageData => messageData . guild _id == ( currentChannel . guild _id || BDFDB . DiscordConstants . ME ) ) ;
break ;
case "allservers" :
messages = messages ;
break ;
2020-02-04 08:20:40 +01:00
}
2020-09-19 20:49:33 +02:00
if ( searchkey ) {
let searchValues = [ "content" , "author.username" , "rawDescription" , "author.name" ] ;
messages = messages . filter ( messageData => searchValues . some ( key => this . containsSearchkey ( messageData . message , key , searchkey ) || messageData . message . embeds . some ( embed => this . containsSearchkey ( embed , key , searchkey ) ) ) ) ;
2020-02-04 08:20:40 +01:00
}
2020-09-19 20:49:33 +02:00
BDFDB . ArrayUtils . keySort ( messages , sort ) ;
if ( ! reverse ) messages . reverse ( ) ;
return Object . keys ( messages ) . length ?
messages . map ( messageData => this . renderMessage ( buttonInstance , messageData . note , messageData . message , messageData . channel , filter ) ) . flat ( 10 ) . filter ( n => n ) :
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . MessagesPopoutComponents . EmptyStateCenter , {
msg : BDFDB . LanguageUtils . LanguageStrings . AUTOCOMPLETE _NO _RESULTS _HEADER ,
image : lightTheme ? "/assets/03c7541028afafafd1a9f6a81cb7f149.svg" : "/assets/6793e022dc1b065b21f12d6df02f91bd.svg"
} ) ;
2020-02-04 08:20:40 +01:00
}
2020-09-19 20:49:33 +02:00
containsSearchkey ( data , key , searchkey ) {
let value = BDFDB . ObjectUtils . get ( data , key ) ;
return value && value . toUpperCase ( ) . indexOf ( searchkey ) > - 1
2020-02-04 08:20:40 +01:00
}
2020-09-19 20:49:33 +02:00
renderMessage ( buttonInstance , note , message , channel , filter ) {
if ( ! message || ! channel ) return null ;
2020-10-06 12:40:59 +02:00
let channelName = channel . name ;
2020-09-19 20:49:33 +02:00
let guild = channel . guild _id && BDFDB . LibraryModules . GuildStore . getGuild ( channel . guild _id ) ;
let role = guild && BDFDB . LibraryModules . PermissionRoleUtils . getHighestRole ( guild , message . author . id ) ;
if ( role ) message . colorString = role . colorString ;
2020-10-06 12:40:59 +02:00
if ( filter != "channel" && ! channelName && channel . recipients . length > 0 ) {
2020-09-19 20:49:33 +02:00
for ( let dmuser _id of channel . recipients ) {
2020-10-06 12:40:59 +02:00
channelName = channelName ? channelName + ", @" : channelName ;
channelName = channelName + ( ( BDFDB . LibraryModules . UserStore . getUser ( dmuser _id ) || { } ) . username || BDFDB . LanguageUtils . LanguageStrings . UNKNOWN _USER ) ;
2020-09-19 20:49:33 +02:00
}
2020-02-04 08:20:40 +01:00
}
2020-09-19 20:49:33 +02:00
return [ filter == "channel" ? null : BDFDB . ReactUtils . createElement ( "div" , {
className : BDFDB . disCN . messagespopoutchannelseparator ,
children : [
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Clickable , {
tag : "span" ,
className : BDFDB . disCN . messagespopoutchannelname ,
onClick : _ => {
BDFDB . LibraryModules . SelectChannelUtils . selectChannel ( channel . guild _id , channel . id ) ;
} ,
2020-10-06 12:40:59 +02:00
children : channelName ? ( ( channel . guild _id ? "#" : "@" ) + channelName ) : "???"
2020-09-19 20:49:33 +02:00
} ) ,
filter == "all" ? BDFDB . ReactUtils . createElement ( "span" , {
className : BDFDB . disCN . messagespopoutguildname ,
children : channel . guild _id ? ( BDFDB . LibraryModules . GuildStore . getGuild ( channel . guild _id ) || { } ) . name || BDFDB . LanguageUtils . LanguageStrings . GUILD _UNAVAILABLE _HEADER : BDFDB . LanguageUtils . LanguageStrings . DIRECT _MESSAGES
} ) : null
]
} ) , BDFDB . ReactUtils . createElement ( "div" , {
className : BDFDB . disCN . messagespopoutgroupwrapper ,
key : message . id ,
children : [
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . MessageGroup , {
className : BDFDB . disCN . messagespopoutgroupcozy ,
message : message ,
2020-10-06 12:09:36 +02:00
channel : channel ,
onContextMenu : e => {
2020-10-06 12:40:59 +02:00
BDFDB . MessageUtils . openMenu ( message , e , true ) ;
2020-10-06 12:09:36 +02:00
}
2020-09-19 20:49:33 +02:00
} ) ,
BDFDB . ReactUtils . createElement ( "div" , {
className : BDFDB . disCN . messagespopoutactionbuttons ,
children : [
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Clickable , {
className : BDFDB . disCN . messagespopoutjumpbutton ,
onClick : _ => {
BDFDB . LibraryModules . SelectChannelUtils . selectChannel ( channel . guild _id , channel . id , message . id ) ;
} ,
children : BDFDB . ReactUtils . createElement ( "div" , {
children : BDFDB . LanguageUtils . LanguageStrings . JUMP
} )
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Clickable , {
className : BDFDB . disCN . messagespopoutjumpbutton ,
onClick : _ => {
if ( message . content || message . attachments . length > 1 ) {
let text = message . content || "" ;
for ( let attachment of message . attachments ) if ( attachment . url ) text += ( ( text ? "\n" : "" ) + attachment . url ) ;
BDFDB . LibraryRequires . electron . clipboard . write ( { text } ) ;
}
else if ( message . attachments . length == 1 && message . attachments [ 0 ] . url ) {
BDFDB . LibraryRequires . request ( { url : message . attachments [ 0 ] . url , encoding : null } , ( error , response , buffer ) => {
if ( buffer ) {
if ( BDFDB . LibraryRequires . process . platform === "win32" || BDFDB . LibraryRequires . process . platform === "darwin" ) {
BDFDB . LibraryRequires . electron . clipboard . write ( { image : BDFDB . LibraryRequires . electron . nativeImage . createFromBuffer ( buffer ) } ) ;
}
else {
let file = BDFDB . LibraryRequires . path . join ( BDFDB . LibraryRequires . process . env [ "HOME" ] , "personalpinstemp.png" ) ;
BDFDB . LibraryRequires . fs . writeFileSync ( file , buffer , { encoding : null } ) ;
BDFDB . LibraryRequires . electron . clipboard . write ( { image : file } ) ;
BDFDB . LibraryRequires . fs . unlinkSync ( file ) ;
}
2020-02-04 09:26:05 +01:00
}
2020-09-19 20:49:33 +02:00
} ) ;
}
} ,
children : BDFDB . ReactUtils . createElement ( "div" , {
children : BDFDB . LanguageUtils . LanguageStrings . COPY
} )
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Button , {
look : BDFDB . LibraryComponents . Button . Looks . BLANK ,
size : BDFDB . LibraryComponents . Button . Sizes . NONE ,
onClick : ( e , instance ) => {
this . removeNoteData ( note ) ;
BDFDB . ReactUtils . forceUpdate ( buttonInstance . context . popout . _owner . stateNode ) ;
} ,
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SvgIcon , {
className : BDFDB . disCN . messagespopoutclosebutton ,
name : BDFDB . LibraryComponents . SvgIcon . Names . CLOSE
} )
2020-02-04 09:26:05 +01:00
} )
2020-09-19 20:49:33 +02:00
]
} )
]
} ) ] ;
}
2019-01-26 22:45:19 +01:00
2020-09-19 20:49:33 +02:00
addMessageToNotes ( message , channel ) {
if ( ! message ) return ;
let notes = BDFDB . DataUtils . load ( this , "notes" ) ;
channel = channel || BDFDB . LibraryModules . ChannelStore . getChannel ( message . channel _id ) ;
let guild _id = channel . guild _id || BDFDB . DiscordConstants . ME ;
notes [ guild _id ] = notes [ guild _id ] || { } ;
notes [ guild _id ] [ channel . id ] = notes [ guild _id ] [ channel . id ] || { }
if ( ! notes [ guild _id ] [ channel . id ] [ message . id ] ) {
notes [ guild _id ] [ channel . id ] [ message . id ] = {
addedat : new Date ( ) . getTime ( ) ,
channel : JSON . stringify ( channel ) ,
id : message . id ,
message : JSON . stringify ( message ) ,
timestamp : message . timestamp . _i . getTime ( )
} ;
BDFDB . DataUtils . save ( notes , this , "notes" ) ;
2020-12-21 19:56:36 +01:00
BDFDB . NotificationUtils . toast ( this . labels . toast _noteadd , { type : "success" } ) ;
2020-09-19 20:49:33 +02:00
}
else this . removeNoteData ( notes [ guild _id ] [ channel . id ] [ message . id ] ) ;
}
isNoteOutdated ( note , message ) {
let notemessage = note && JSON . parse ( note . message ) , keys = [ "content" , "embeds" , "attachment" ] ;
return notemessage && ! BDFDB . equals ( BDFDB . ObjectUtils . extract ( notemessage , keys ) , BDFDB . ObjectUtils . extract ( message , keys ) ) ;
2020-02-04 08:20:40 +01:00
}
2019-11-09 12:53:04 +01:00
2020-09-19 20:49:33 +02:00
getNoteData ( message , channel ) {
if ( ! message ) return ;
channel = channel || BDFDB . LibraryModules . ChannelStore . getChannel ( message . channel _id ) ;
let guild _id = channel . guild _id || BDFDB . DiscordConstants . ME ;
let notes = BDFDB . DataUtils . load ( this , "notes" ) ;
return notes [ guild _id ] && notes [ guild _id ] [ channel . id ] && notes [ guild _id ] [ channel . id ] [ message . id ] ;
}
2019-01-26 22:45:19 +01:00
2020-09-19 20:49:33 +02:00
updateNoteData ( note , newmessage ) {
let message = JSON . parse ( note . message ) ;
let channel = JSON . parse ( note . channel ) ;
if ( ! message || ! channel ) return ;
let guild _id = channel . guild _id || BDFDB . DiscordConstants . ME ;
let notes = BDFDB . DataUtils . load ( this , "notes" ) ;
notes [ guild _id ] [ channel . id ] [ note . id ] . message = JSON . stringify ( newmessage ) ;
BDFDB . DataUtils . save ( notes , this , "notes" ) ;
2020-12-21 19:56:36 +01:00
BDFDB . NotificationUtils . toast ( this . labels . toast _noteupdate , { type : "info" } ) ;
2020-09-19 20:49:33 +02:00
}
2019-01-26 22:45:19 +01:00
2020-09-19 20:49:33 +02:00
removeNoteData ( note ) {
let message = JSON . parse ( note . message ) ;
let channel = JSON . parse ( note . channel ) ;
if ( ! message || ! channel ) return ;
let guild _id = channel . guild _id || BDFDB . DiscordConstants . ME ;
let notes = BDFDB . DataUtils . load ( this , "notes" ) ;
delete notes [ guild _id ] [ channel . id ] [ note . id ] ;
if ( BDFDB . ObjectUtils . isEmpty ( notes [ guild _id ] [ channel . id ] ) ) {
delete notes [ guild _id ] [ channel . id ] ;
if ( BDFDB . ObjectUtils . isEmpty ( notes [ guild _id ] ) ) delete notes [ guild _id ] ;
}
BDFDB . DataUtils . save ( notes , this , "notes" ) ;
2020-12-21 19:56:36 +01:00
BDFDB . NotificationUtils . toast ( this . labels . toast _noteremove , { type : "danger" } ) ;
2020-02-04 08:20:40 +01:00
}
2020-07-11 23:28:30 +02:00
2020-02-04 08:20:40 +01:00
2021-01-06 12:38:36 +01:00
setLabelsByLanguage ( ) {
2020-09-19 20:49:33 +02:00
switch ( BDFDB . LanguageUtils . getLanguage ( ) . id ) {
2020-12-21 19:56:36 +01:00
case "bg" : // Bulgarian
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Запишете съобщението" ,
context _unpinoption : "Премахване на бележката" ,
context _updateoption : "Бележка за актуализация" ,
popout _filter _all : "Всички сървъри" ,
popout _filter _channel : "Канал" ,
popout _filter _server : "Сървър" ,
popout _note : "Бележки" ,
popout _pinoption : "Забележка" ,
popout _sort _messagetime : "Дата на съобщението" ,
popout _sort _notetime : "Дата на бележка" ,
toast _noteadd : "Съобщението е добавено към бележника" ,
toast _noteremove : "Съобщението е премахнато от бележника" ,
toast _noteupdate : "Актуализира съобщението в бележника"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "da" : // Danish
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Skriv beskeden ned" ,
context _unpinoption : "Fjern noten" ,
context _updateoption : "Opdater note" ,
popout _filter _all : "Alle servere" ,
popout _filter _channel : "Kanal" ,
popout _filter _server : "Server" ,
popout _note : "Noter" ,
popout _pinoption : "Bemærk" ,
popout _sort _messagetime : "Meddelelsesdato" ,
popout _sort _notetime : "Bemærkdato" ,
toast _noteadd : "Besked føjet til notesbog" ,
toast _noteremove : "Besked fjernet fra notesbog" ,
toast _noteupdate : "Opdateret meddelelsen i notesbogen"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "de" : // German
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Nachricht notieren" ,
context _unpinoption : "Notiz entfernen" ,
context _updateoption : "Notiz aktualisieren" ,
popout _filter _all : "Alle Server" ,
popout _filter _channel : "Kanal" ,
popout _filter _server : "Server" ,
popout _note : "Notizen" ,
popout _pinoption : "Notieren" ,
popout _sort _messagetime : "Nachrichtendatum" ,
popout _sort _notetime : "Notizdatum" ,
toast _noteadd : "Nachricht zum Notizbuch hinzugefügt" ,
toast _noteremove : "Nachricht aus dem Notizbuch entfernt" ,
toast _noteupdate : "Nachricht im Notizbuch aktualisiert"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "el" : // Greek
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Γράψτε το μήνυμα" ,
context _unpinoption : "Αφαιρέστε τη σημείωση" ,
context _updateoption : "Ενημέρωση σημείωσης" ,
popout _filter _all : "Όλοι ο ι διακομιστές" ,
popout _filter _channel : "Κανάλι" ,
popout _filter _server : "Υπηρέτης" ,
popout _note : "Σημειώσεις" ,
popout _pinoption : "Σημείωση" ,
popout _sort _messagetime : "Ημερομηνία μηνύματος" ,
popout _sort _notetime : "Σημείωση ημερομηνίας" ,
toast _noteadd : "Τ ο μήνυμα προστέθηκε στο σημειωματάριο" ,
toast _noteremove : "Τ ο μήνυμα καταργήθηκε από το σημειωματάριο" ,
toast _noteupdate : "Ενημερώθηκε το μήνυμα στο σημειωματάριο"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "es" : // Spanish
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Escribe el mensaje" ,
context _unpinoption : "Eliminar nota" ,
context _updateoption : "Nota de actualización" ,
popout _filter _all : "Todos los servidores" ,
popout _filter _channel : "Canal" ,
popout _filter _server : "Servidor" ,
popout _note : "Notas" ,
popout _pinoption : "Nota" ,
popout _sort _messagetime : "Fecha del mensaje" ,
popout _sort _notetime : "Fecha della nota" ,
toast _noteadd : "Mensaje agregado al cuaderno" ,
toast _noteremove : "Mensaje eliminado de la libreta" ,
toast _noteupdate : "Se actualizó el mensaje en el cuaderno."
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "fi" : // Finnish
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Kirjoita viesti muistiin" ,
context _unpinoption : "Poista muistiinpano" ,
context _updateoption : "Päivitä muistiinpano" ,
popout _filter _all : "Kaikki palvelimet" ,
popout _filter _channel : "Kanava" ,
popout _filter _server : "Palvelin" ,
popout _note : "Muistiinpanoja" ,
popout _pinoption : "Merkintä" ,
popout _sort _messagetime : "Viestin päivämäärä" ,
popout _sort _notetime : "Muistiinpanon päivämäärä" ,
toast _noteadd : "Viesti lisättiin muistikirjaan" ,
toast _noteremove : "Viesti poistettu muistikirjasta" ,
toast _noteupdate : "Päivitetty muistikirjan viesti"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "fr" : // French
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Écrivez le message" ,
context _unpinoption : "Supprimer la note" ,
context _updateoption : "Mettre à jour la note" ,
popout _filter _all : "Tous les serveurs" ,
popout _filter _channel : "Salon" ,
popout _filter _server : "Serveur" ,
popout _note : "Remarques" ,
popout _pinoption : "Remarque" ,
popout _sort _messagetime : "Date du message" ,
popout _sort _notetime : "Date de la note" ,
toast _noteadd : "Message ajouté au notebook" ,
toast _noteremove : "Message supprimé du notebook" ,
toast _noteupdate : "Mise à jour du message dans le cahier"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "hr" : // Croatian
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Zapišite poruku" ,
context _unpinoption : "Ukloni bilješku" ,
context _updateoption : "Napomena o ažuriranju" ,
popout _filter _all : "Svi poslužitelji" ,
popout _filter _channel : "Kanal" ,
popout _filter _server : "Poslužitelju" ,
popout _note : "Bilješke" ,
popout _pinoption : "Bilješka" ,
popout _sort _messagetime : "Datum poruke" ,
popout _sort _notetime : "Datum bilješke" ,
toast _noteadd : "Poruka dodana u bilježnicu" ,
toast _noteremove : "Poruka uklonjena iz bilježnice" ,
toast _noteupdate : "Ažurirana je poruka u bilježnici"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "hu" : // Hungarian
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Írja le az üzenetet" ,
context _unpinoption : "Megjegyzés eltávolítása" ,
context _updateoption : "Frissítse a jegyzetet" ,
popout _filter _all : "Minden szerver" ,
popout _filter _channel : "Csatorna" ,
popout _filter _server : "Szerver" ,
popout _note : "Jegyzetek" ,
popout _pinoption : "Jegyzet" ,
popout _sort _messagetime : "Üzenet dátuma" ,
popout _sort _notetime : "Jegyzet dátuma" ,
toast _noteadd : "Üzenet hozzáadva a jegyzetfüzethez" ,
toast _noteremove : "Üzenet eltávolítva a jegyzetfüzetből" ,
toast _noteupdate : "Frissítette az üzenetet a jegyzetfüzetben"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "it" : // Italian
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Annota il messaggio" ,
context _unpinoption : "Rimuovi nota" ,
context _updateoption : "Aggiorna nota" ,
popout _filter _all : "Tutti i server" ,
popout _filter _channel : "Canale" ,
popout _filter _server : "Server" ,
popout _note : "Appunti" ,
popout _pinoption : "Nota" ,
popout _sort _messagetime : "Messaggio data" ,
popout _sort _notetime : "Nota data" ,
toast _noteadd : "Messaggio aggiunto al taccuino" ,
toast _noteremove : "Messaggio rimosso dal taccuino" ,
toast _noteupdate : "Aggiornato il messaggio nel taccuino"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "ja" : // Japanese
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "メッセージを書き留めます" ,
context _unpinoption : "メモを削除" ,
context _updateoption : "更新メモ" ,
popout _filter _all : "すべてのサーバー" ,
popout _filter _channel : "チャネル" ,
popout _filter _server : "サーバ" ,
popout _note : "ノート" ,
popout _pinoption : "注意" ,
popout _sort _messagetime : "メッセージの日付" ,
popout _sort _notetime : "メモ日" ,
toast _noteadd : "ノートブックにメッセージを追加" ,
toast _noteremove : "ノートブックからメッセージが削除されました" ,
toast _noteupdate : "ノートブックのメッセージを更新しました"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "ko" : // Korean
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "메시지를 적어" ,
context _unpinoption : "메모 제거" ,
context _updateoption : "메모 업데이트" ,
popout _filter _all : "모든 서버" ,
popout _filter _channel : "채널" ,
popout _filter _server : "섬기는 사람" ,
popout _note : "메모" ,
popout _pinoption : "노트" ,
popout _sort _messagetime : "메시지 날짜" ,
popout _sort _notetime : "메모 날짜" ,
toast _noteadd : "노트북에 추가 된 메시지" ,
toast _noteremove : "노트북에서 메시지가 제거되었습니다." ,
toast _noteupdate : "노트북의 메시지를 업데이트했습니다."
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "lt" : // Lithuanian
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Užrašykite žinutę" ,
context _unpinoption : "Pašalinti užrašą" ,
context _updateoption : "Atnaujinti pastabą" ,
popout _filter _all : "Visi serveriai" ,
popout _filter _channel : "Kanalą" ,
popout _filter _server : "Serverio" ,
popout _note : "Pastabos" ,
popout _pinoption : "Pastaba" ,
popout _sort _messagetime : "Pranešimo data" ,
popout _sort _notetime : "Užrašo data" ,
toast _noteadd : "Pranešimas pridėtas prie užrašų knygelės" ,
toast _noteremove : "Pranešimas pašalintas iš užrašų knygelės" ,
toast _noteupdate : "Atnaujino pranešimą užrašų knygutėje"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "nl" : // Dutch
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Schrijf het bericht op" ,
context _unpinoption : "Notitie verwijderen" ,
context _updateoption : "Update notitie" ,
popout _filter _all : "Alle servers" ,
popout _filter _channel : "Kanaal" ,
popout _filter _server : "Server" ,
popout _note : "Notities" ,
popout _pinoption : "Notitie" ,
popout _sort _messagetime : "Datum bericht" ,
popout _sort _notetime : "Datum notitie" ,
toast _noteadd : "Bericht toegevoegd aan notitieblok" ,
toast _noteremove : "Bericht verwijderd uit notitieblok" ,
toast _noteupdate : "Het bericht in het notitieblok bijgewerkt"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "no" : // Norwegian
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Skriv ned meldingen" ,
context _unpinoption : "Fjern notatet" ,
context _updateoption : "Oppdateringsnotat" ,
popout _filter _all : "Alle servere" ,
popout _filter _channel : "Kanal" ,
popout _filter _server : "Server" ,
popout _note : "Notater" ,
popout _pinoption : "Merk" ,
popout _sort _messagetime : "Meldingsdato" ,
popout _sort _notetime : "Merkdato" ,
toast _noteadd : "Melding lagt til notatbok" ,
toast _noteremove : "Melding fjernet fra notatblokken" ,
toast _noteupdate : "Oppdaterte meldingen i notatboken"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "pl" : // Polish
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Zapisz wiadomość" ,
context _unpinoption : "Usuń notatkę" ,
context _updateoption : "Uwaga dotycząca aktualizacji" ,
popout _filter _all : "Wszystkie serwery" ,
popout _filter _channel : "Kanał" ,
popout _filter _server : "Serwer" ,
popout _note : "Notatki" ,
popout _pinoption : "Uwaga" ,
popout _sort _messagetime : "Data wiadomości" ,
popout _sort _notetime : "Data notatki" ,
toast _noteadd : "Wiadomość dodana do notatnika" ,
toast _noteremove : "Wiadomość została usunięta z notatnika" ,
toast _noteupdate : "Zaktualizowano wiadomość w notatniku"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "pt-BR" : // Portuguese (Brazil)
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Escreva a mensagem" ,
context _unpinoption : "Remover nota" ,
context _updateoption : "Atualizar nota" ,
popout _filter _all : "Todos os servidores" ,
popout _filter _channel : "Canal" ,
popout _filter _server : "Servidor" ,
popout _note : "Notas" ,
popout _pinoption : "Nota" ,
popout _sort _messagetime : "Data da mensagem" ,
popout _sort _notetime : "Data da nota" ,
toast _noteadd : "Mensagem adicionada ao caderno" ,
toast _noteremove : "Mensagem removida do bloco de notas" ,
toast _noteupdate : "Atualizou a mensagem no notebook"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "ro" : // Romanian
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Notează mesajul" ,
context _unpinoption : "Eliminați nota" ,
context _updateoption : "Notă de actualizare" ,
popout _filter _all : "Toate serverele" ,
popout _filter _channel : "Canal" ,
popout _filter _server : "Server" ,
popout _note : "Note" ,
popout _pinoption : "Notă" ,
popout _sort _messagetime : "Mesajului data" ,
popout _sort _notetime : "Notați data" ,
toast _noteadd : "Mesaj adăugat în caiet" ,
toast _noteremove : "Mesaj eliminat din caiet" ,
toast _noteupdate : "Am actualizat mesajul din caiet"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "ru" : // Russian
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Запишите сообщение" ,
context _unpinoption : "Удалить заметку" ,
context _updateoption : "Обновить примечание" ,
popout _filter _all : "В с е серверы" ,
popout _filter _channel : "Канал" ,
popout _filter _server : "Сервер" ,
popout _note : "Ноты" ,
popout _pinoption : "Запись" ,
popout _sort _messagetime : "Дата сообщения" ,
popout _sort _notetime : "Дата записи" ,
toast _noteadd : "Сообщение добавлено в блокнот" ,
toast _noteremove : "Сообщение удалено из записной книжки" ,
toast _noteupdate : "Обновил сообщение в блокноте"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "sv" : // Swedish
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "Skriv ner meddelandet" ,
context _unpinoption : "Ta bort anteckningen" ,
context _updateoption : "Uppdatera anteckning" ,
popout _filter _all : "Alla servrar" ,
popout _filter _channel : "Kanal" ,
popout _filter _server : "Server" ,
popout _note : "Anteckningar" ,
popout _pinoption : "Notera" ,
popout _sort _messagetime : "Meddelandedatum" ,
popout _sort _notetime : "Noteradatum" ,
toast _noteadd : "Meddelande tillagt anteckningsbok" ,
toast _noteremove : "Meddelandet har tagits bort från anteckningsboken" ,
toast _noteupdate : "Uppdaterat meddelandet i anteckningsboken"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "th" : // Thai
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
context _pinoption : "จดข้อความ" ,
context _unpinoption : "ลบบันทึก" ,
context _updateoption : "อัปเดตบันทึก" ,
popout _filter _all : "เซิร์ฟเวอร์ทั้งหมด" ,
popout _filter _channel : "ช่อง" ,
popout _filter _server : "เซิร์ฟเวอร์" ,
popout _note : "หมายเหตุ" ,
popout _pinoption : "บันทึก" ,
popout _sort _messagetime : "วันที่ส่งข้อความ" ,
popout _sort _notetime : "วันที่หมายเหตุ" ,
toast _noteadd : "เพิ่มข้อความในสมุดบันทึกแล้ว" ,
toast _noteremove : "ข้อความถูกลบออกจากสมุดบันทึก" ,
toast _noteupdate : "อัปเดตข้อความในสมุดบันทึก"
} ;
case "tr" : // Turkish
return {
context _pinoption : "Mesajı yazı n" ,
context _unpinoption : "Notu kaldı r" ,
context _updateoption : "Notu güncelle" ,
popout _filter _all : "Tüm sunucular" ,
popout _filter _channel : "Kanal" ,
popout _filter _server : "Sunucu" ,
popout _note : "Notlar" ,
popout _pinoption : "Not" ,
popout _sort _messagetime : "Mesaj tarihi" ,
popout _sort _notetime : "Not tarihi" ,
toast _noteadd : "Not defterine mesaj eklendi" ,
toast _noteremove : "Mesaj not defterinden kaldı rı ldı " ,
toast _noteupdate : "Defterdeki mesaj güncellendi"
} ;
case "uk" : // Ukrainian
return {
context _pinoption : "Запишіть повідомлення" ,
context _unpinoption : "Вилучити примітку" ,
context _updateoption : "Примітка до оновлення" ,
popout _filter _all : "У с і сервери" ,
popout _filter _channel : "Каналу" ,
popout _filter _server : "Сервер" ,
popout _note : "Нотатки" ,
popout _pinoption : "Примітка" ,
popout _sort _messagetime : "Дата повідомлення" ,
popout _sort _notetime : "Дата примітки" ,
toast _noteadd : "Повідомлення додано до блокнота" ,
toast _noteremove : "Повідомлення видалено з блокнота" ,
toast _noteupdate : "Оновлено повідомлення в блокноті"
} ;
case "vi" : // Vietnamese
return {
context _pinoption : "Viết lại tin nhắn" ,
context _unpinoption : "Xóa ghi chú" ,
context _updateoption : "Cập nhật ghi chú" ,
popout _filter _all : "Tất cả các máy chủ" ,
popout _filter _channel : "Kênh" ,
popout _filter _server : "Người phục vụ" ,
popout _note : "Ghi chú" ,
popout _pinoption : "Ghi chú" ,
popout _sort _messagetime : "Ngày nhắn tin" ,
popout _sort _notetime : "Ghi chú ngày" ,
toast _noteadd : "Đã thêm tin nhắn vào sổ tay" ,
toast _noteremove : "Đã xóa tin nhắn khỏi sổ ghi chép" ,
toast _noteupdate : "Đã cập nhật tin nhắn trong sổ tay"
} ;
case "zh" : // Chinese
return {
context _pinoption : "写下消息" ,
context _unpinoption : "删除笔记" ,
context _updateoption : "更新说明" ,
popout _filter _all : "所有服务器" ,
popout _filter _channel : "渠道" ,
popout _filter _server : "服务器" ,
popout _note : "笔记" ,
popout _pinoption : "注意" ,
popout _sort _messagetime : "留言日期" ,
popout _sort _notetime : "备注日期" ,
toast _noteadd : "邮件已添加到笔记本" ,
toast _noteremove : "邮件已从笔记本中删除" ,
toast _noteupdate : "更新了笔记本中的消息"
} ;
case "zh-TW" : // Chinese (Traditional)
return {
context _pinoption : "寫下消息" ,
context _unpinoption : "刪除筆記" ,
context _updateoption : "更新說明" ,
popout _filter _all : "所有服務器" ,
popout _filter _channel : "渠道" ,
popout _filter _server : "服務器" ,
popout _note : "筆記" ,
popout _pinoption : "注意" ,
popout _sort _messagetime : "留言日期" ,
popout _sort _notetime : "備註日期" ,
toast _noteadd : "郵件已添加到筆記本" ,
toast _noteremove : "郵件已從筆記本中刪除" ,
toast _noteupdate : "更新了筆記本中的消息"
} ;
default : // English
return {
context _pinoption : "Note Message" ,
context _unpinoption : "Remove Note" ,
context _updateoption : "Update Note" ,
popout _filter _all : "All Servers" ,
popout _filter _channel : "Channel" ,
popout _filter _server : "Server" ,
popout _note : "Notes" ,
popout _pinoption : "Note" ,
popout _sort _messagetime : "Message Date" ,
popout _sort _notetime : "Note Date" ,
toast _noteadd : "Message added to Notebook" ,
toast _noteremove : "Message removed from Notebook" ,
toast _noteupdate : "Message updated in the Notebook"
2020-09-19 20:49:33 +02:00
} ;
}
2020-02-04 08:20:40 +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-19 20:49:33 +02:00
} ) ( ) ;