mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-18 02:47:03 -04:00
Unindent, plugins is now an object instead of []
This commit is contained in:
parent
b2f762fda8
commit
7ce37f858c
8 changed files with 65 additions and 14 deletions
|
@ -8,7 +8,7 @@ const logger = new Logger("PluginManager", "#a6d189");
|
|||
export const plugins = Plugins;
|
||||
export const patches = [] as Patch[];
|
||||
|
||||
for (const plugin of Plugins) if (plugin.patches && Settings.plugins[plugin.name].enabled) {
|
||||
for (const plugin of Object.values(Plugins)) if (plugin.patches && Settings.plugins[plugin.name].enabled) {
|
||||
for (const patch of plugin.patches) {
|
||||
patch.plugin = plugin.name;
|
||||
if (!Array.isArray(patch.replacement)) patch.replacement = [patch.replacement];
|
||||
|
@ -17,8 +17,8 @@ for (const plugin of Plugins) if (plugin.patches && Settings.plugins[plugin.name
|
|||
}
|
||||
|
||||
export function startAll() {
|
||||
for (const plugin of plugins) if (Settings.plugins[plugin.name].enabled) {
|
||||
startPlugin(plugin);
|
||||
for (const plugin in Plugins) if (Settings.plugins[plugin].enabled) {
|
||||
startPlugin(Plugins[plugin]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
47
src/plugins/unindent.ts
Normal file
47
src/plugins/unindent.ts
Normal file
|
@ -0,0 +1,47 @@
|
|||
import definePlugin from "../utils/types";
|
||||
import { addPreSendListener, addPreEditListener, MessageObject, removePreSendListener, removePreEditListener } from '../api/MessageEvents';
|
||||
|
||||
export default definePlugin({
|
||||
name: "Unindent",
|
||||
description: "Trims leading indentation from codeblocks",
|
||||
author: "Vendicated",
|
||||
patches: [
|
||||
{
|
||||
find: "inQuote:",
|
||||
replacement: {
|
||||
match: /,content:([^,]+),inQuote/,
|
||||
replace: (_, content) => `,content:Vencord.Plugins.plugins.Unindent.unindent(${content}),inQuote`
|
||||
}
|
||||
}
|
||||
],
|
||||
|
||||
unindent(str: string) {
|
||||
// Users cannot send tabs, they get converted to spaces. However, a bot may send tabs, so convert them to 4 spaces first
|
||||
str = str.replace(/\t/g, " ");
|
||||
const minIndent = str.match(/^ *(?=\S)/gm)
|
||||
?.reduce((prev, curr) => Math.min(prev, curr.length), Infinity) ?? 0;
|
||||
|
||||
if (!minIndent) return str;
|
||||
return str.replace(new RegExp(`^ {${minIndent}}`, "gm"), "");
|
||||
},
|
||||
|
||||
unindentMsg(msg: MessageObject) {
|
||||
msg.content = msg.content.replace(/```(.|\n)*?```/g, m => {
|
||||
const lines = m.split("\n");
|
||||
if (lines.length < 2) return m; // Do not affect inline codeblocks
|
||||
let suffix = "";
|
||||
if (lines[lines.length - 1] === "```") suffix = lines.pop()!;
|
||||
return `${lines[0]}\n${this.unindent(lines.slice(1).join("\n"))}\n${suffix}`;
|
||||
});
|
||||
},
|
||||
|
||||
start() {
|
||||
this.preSend = addPreSendListener((_, msg) => this.unindentMsg(msg));
|
||||
this.preEdit = addPreEditListener((_cid, _mid, msg) => this.unindentMsg(msg));
|
||||
},
|
||||
|
||||
stop() {
|
||||
removePreSendListener(this.preSend);
|
||||
removePreEditListener(this.preEdit);
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue