forked from Inve1951/BetterDiscordStuff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclearInputOnEsc.plugin.js
54 lines (46 loc) · 2.05 KB
/
clearInputOnEsc.plugin.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//META{"name":"clearInputOnEsc"}*//
var clearInputOnEsc = (function(){
var getInternalInstance, getOwnerInstance, listener;
class clearInputOnEsc {
getName(){return "Clear-Input-on-Escape"}
getDescription(){return "Clears the chat input when you hit escape inside it."}
getVersion(){return "1.1.1"}
getAuthor(){return "square"}
load(){}
start(){
document.addEventListener("keydown", listener)
}
stop(){
document.removeEventListener("keydown", listener);
}
}
listener = function(e){
if("Escape" !== e.key || document.activeElement !== document.querySelector(".content textarea")) return;
try {
getOwnerInstance(document.activeElement, {include: "ChannelTextAreaForm"}).setState({textValue:""});
} catch(e){console.error(e)}
};
({getInternalInstance, getOwnerInstance} = (function(){
// code in this closure by noodlebox & samogot
// https://github.com/samogot/betterdiscord-plugins/blob/master/v1/1lib_discord_internals.plugin.js
const getInternalInstance = e => e[Object.keys(e).find(k => k.startsWith("__reactInternalInstance"))];
function getOwnerInstance(e, {include, exclude = ["Popout", "Tooltip", "Scroller", "BackgroundFlash"]} = {}) {
if (e === undefined) {return undefined;}
const excluding = include === undefined;
const filter = excluding ? exclude : include;
function getDisplayName(owner) {
const type = owner.type;
const constructor = owner.stateNode && owner.stateNode.constructor;
return type && type.displayName || constructor && constructor.displayName || null;}
function classFilter(owner) {
const name = getDisplayName(owner);
return (name !== null && !!(filter.includes(name) ^ excluding));}
let curr = getInternalInstance(e);
while (curr) {
if (classFilter(curr)) {return curr.stateNode;}
curr = curr.return;}
return null;}
getOwnerInstance.displayName = "getOwnerInstance";
return {getInternalInstance, getOwnerInstance};})());
return clearInputOnEsc;
})();