1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-10 18:06:22 +00:00
Vencord/src/plugins/betterNotes/index.tsx

91 lines
3.1 KiB
TypeScript
Raw Normal View History

2022-11-24 01:02:15 +00:00
/*
* Vencord, a modification for Discord's desktop app
* Copyright (c) 2022 Vendicated and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2023-05-05 23:36:00 +00:00
import { Settings } from "@api/Settings";
2024-05-09 06:14:20 +00:00
import ErrorBoundary from "@components/ErrorBoundary";
import { Devs } from "@utils/constants";
2024-03-22 12:42:19 +00:00
import { canonicalizeMatch } from "@utils/patches";
import definePlugin, { OptionType } from "@utils/types";
import { findByPropsLazy } from "@webpack";
const UserPopoutSectionCssClasses = findByPropsLazy("section", "lastSection");
2022-11-24 01:02:15 +00:00
export default definePlugin({
name: "BetterNotesBox",
description: "Hide notes or disable spellcheck (Configure in settings!!)",
authors: [Devs.Ven],
patches: [
{
find: "hideNote:",
all: true,
2023-10-26 18:07:44 +00:00
// Some modules match the find but the replacement is returned untouched
noWarn: true,
2023-05-05 23:36:00 +00:00
predicate: () => Vencord.Settings.plugins.BetterNotesBox.hide,
2022-11-24 01:02:15 +00:00
replacement: {
2023-10-26 18:07:44 +00:00
match: /hideNote:.+?(?=([,}].*?\)))/g,
replace: (m, rest) => {
const destructuringMatch = rest.match(/}=.+/);
2024-03-22 12:42:19 +00:00
if (destructuringMatch) {
const defaultValueMatch = m.match(canonicalizeMatch(/hideNote:(\i)=!?\d/));
return defaultValueMatch ? `hideNote:${defaultValueMatch[1]}=!0` : m;
}
return "hideNote:!0";
2023-10-26 18:07:44 +00:00
}
2022-11-24 01:02:15 +00:00
}
},
{
2022-11-24 01:02:15 +00:00
find: "Messages.NOTE_PLACEHOLDER",
replacement: {
match: /\.NOTE_PLACEHOLDER,/,
replace: "$&spellCheck:!Vencord.Settings.plugins.BetterNotesBox.noSpellCheck,"
}
},
{
2024-03-22 12:42:19 +00:00
find: ".popularApplicationCommandIds,",
replacement: {
2024-03-22 12:42:19 +00:00
match: /lastSection:(!?\i)}\),/,
2024-05-14 01:45:57 +00:00
replace: "$&$self.patchPadding({lastSection:$1}),"
}
2022-11-24 01:02:15 +00:00
}
],
options: {
hide: {
type: OptionType.BOOLEAN,
description: "Hide notes",
default: false,
restartNeeded: true
2022-11-24 01:02:15 +00:00
},
noSpellCheck: {
type: OptionType.BOOLEAN,
description: "Disable spellcheck in notes",
disabled: () => Settings.plugins.BetterNotesBox.hide,
default: false
}
},
2024-05-14 01:45:57 +00:00
patchPadding: ErrorBoundary.wrap(({ lastSection }) => {
if (!lastSection) return null;
return (
2024-05-14 01:45:57 +00:00
<div className={UserPopoutSectionCssClasses.lastSection} ></div>
);
2024-05-14 01:45:57 +00:00
})
2022-11-24 01:02:15 +00:00
});