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 03:44:04 +00:00
|
|
|
import ErrorBoundary from "@components/ErrorBoundary";
|
2022-11-28 12:37:55 +00:00
|
|
|
import { Devs } from "@utils/constants";
|
2024-03-22 12:42:19 +00:00
|
|
|
import { canonicalizeMatch } from "@utils/patches";
|
2022-11-28 12:37:55 +00:00
|
|
|
import definePlugin, { OptionType } from "@utils/types";
|
2024-05-03 02:18:12 +00:00
|
|
|
import { findByProps } from "@webpack";
|
2023-10-18 21:54:35 +00:00
|
|
|
|
2024-05-03 02:18:12 +00:00
|
|
|
const UserPopoutSectionCssClasses = findByProps("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
|
|
|
}
|
2023-10-18 21:54:35 +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,"
|
|
|
|
}
|
2023-10-18 21:54:35 +00:00
|
|
|
},
|
|
|
|
{
|
2024-03-22 12:42:19 +00:00
|
|
|
find: ".popularApplicationCommandIds,",
|
2023-10-18 21:54:35 +00:00
|
|
|
replacement: {
|
2024-03-22 12:42:19 +00:00
|
|
|
match: /lastSection:(!?\i)}\),/,
|
|
|
|
replace: "$&$self.patchPadding($1),"
|
2023-10-18 21:54:35 +00:00
|
|
|
}
|
2022-11-24 01:02:15 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
|
|
|
|
options: {
|
|
|
|
hide: {
|
|
|
|
type: OptionType.BOOLEAN,
|
|
|
|
description: "Hide notes",
|
2022-11-24 13:02:11 +00:00
|
|
|
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
|
|
|
|
}
|
2023-10-18 21:54:35 +00:00
|
|
|
},
|
|
|
|
|
2024-03-22 12:42:19 +00:00
|
|
|
patchPadding(lastSection: any) {
|
|
|
|
if (!lastSection) return;
|
2023-10-18 21:54:35 +00:00
|
|
|
return (
|
2024-05-09 03:44:04 +00:00
|
|
|
<ErrorBoundary noop>
|
|
|
|
<div className={UserPopoutSectionCssClasses.lastSection}></div>
|
|
|
|
</ErrorBoundary>
|
2023-10-18 21:54:35 +00:00
|
|
|
);
|
2022-11-24 01:02:15 +00:00
|
|
|
}
|
|
|
|
});
|