mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-16 18:07:02 -04:00
Add more eslint rules
This commit is contained in:
parent
0109381a4f
commit
dea34503ef
13 changed files with 33 additions and 21 deletions
|
@ -26,7 +26,7 @@ export default definePlugin({
|
|||
],
|
||||
|
||||
altify(props: any) {
|
||||
if (props.alt !== "GIF") return;
|
||||
if (props.alt !== "GIF") return props.alt;
|
||||
|
||||
let url: string = props.original || props.src;
|
||||
try {
|
||||
|
|
|
@ -55,7 +55,7 @@ export default definePlugin({
|
|||
}
|
||||
|
||||
this.preSend = addPreSendListener((_, messageObj) => {
|
||||
const guildId = this.guildId;
|
||||
const { guildId } = this;
|
||||
for (const emoji of messageObj.validNonShortcutEmojis) {
|
||||
if (!emoji.require_colons) continue;
|
||||
if (emoji.guildId === guildId && !emoji.animated) continue;
|
||||
|
@ -69,7 +69,7 @@ export default definePlugin({
|
|||
});
|
||||
|
||||
this.preEdit = addPreEditListener((_, __, messageObj) => {
|
||||
const guildId = this.guildId;
|
||||
const { guildId } = this;
|
||||
|
||||
for (const [emojiStr, _, emojiId] of messageObj.content.matchAll(/(?<!\\)<a?:(\w+):(\d+)>/ig)) {
|
||||
const emoji = getCustomEmojiById(emojiId);
|
||||
|
|
|
@ -15,21 +15,21 @@ export default definePlugin({
|
|||
|
||||
start() {
|
||||
Dispatcher.subscribe("DELETE_PENDING_REPLY", onDeletePendingReply);
|
||||
document.addEventListener("keydown", keydown);
|
||||
document.addEventListener("keydown", onKeydown);
|
||||
},
|
||||
|
||||
stop() {
|
||||
Dispatcher.unsubscribe("DELETE_PENDING_REPLY", onDeletePendingReply);
|
||||
document.removeEventListener("keydown", keydown);
|
||||
document.removeEventListener("keydown", onKeydown);
|
||||
},
|
||||
});
|
||||
|
||||
let idx = -1;
|
||||
const onDeletePendingReply = () => {
|
||||
function onDeletePendingReply() {
|
||||
idx = -1;
|
||||
};
|
||||
}
|
||||
|
||||
const keydown = e => {
|
||||
function onKeydown(e: KeyboardEvent) {
|
||||
if (
|
||||
(!e.ctrlKey && !e.metaKey) ||
|
||||
(e.key !== "ArrowUp" && e.key !== "ArrowDown")
|
||||
|
@ -46,7 +46,7 @@ const keydown = e => {
|
|||
|
||||
if (idx > messages.length) idx = messages.length;
|
||||
if (idx < 0) {
|
||||
return Dispatcher.dispatch({
|
||||
return void Dispatcher.dispatch({
|
||||
type: "DELETE_PENDING_REPLY",
|
||||
channelId,
|
||||
});
|
||||
|
@ -58,4 +58,4 @@ const keydown = e => {
|
|||
message: messages[idx],
|
||||
showMentionToggle: channel.guild_id !== null,
|
||||
});
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue