diff options
author | V <vendicated@riseup.net> | 2023-04-05 22:45:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-05 22:45:14 +0200 |
commit | 814302e2727e1925c8c5253e5efc4de2f4de0c2b (patch) | |
tree | 7070da73b2b1768790f5edd89743e3f026964cde /src | |
parent | 72ba83924cbf0b74df035f559e4144c6b82a5b1d (diff) | |
download | Vencord-814302e2727e1925c8c5253e5efc4de2f4de0c2b.tar.gz Vencord-814302e2727e1925c8c5253e5efc4de2f4de0c2b.tar.bz2 Vencord-814302e2727e1925c8c5253e5efc4de2f4de0c2b.zip |
Fix Badges (#801)
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/apiBadges.tsx | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/src/plugins/apiBadges.tsx b/src/plugins/apiBadges.tsx index 4e1ea2b..975a7d6 100644 --- a/src/plugins/apiBadges.tsx +++ b/src/plugins/apiBadges.tsx @@ -16,7 +16,7 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import { BadgePosition, ProfileBadge } from "@api/Badges"; +import { BadgePosition, BadgeUserArgs, ProfileBadge } from "@api/Badges"; import DonateButton from "@components/DonateButton"; import ErrorBoundary from "@components/ErrorBoundary"; import { Flex } from "@components/Flex"; @@ -53,14 +53,14 @@ const DonorBadges = {} as Record<string, Pick<ProfileBadge, "image" | "tooltip"> export default definePlugin({ name: "BadgeAPI", description: "API to add badges to users.", - authors: [Devs.Megu], + authors: [Devs.Megu, Devs.Ven, Devs.TheSun], required: true, patches: [ /* Patch the badges array */ { - find: "PREMIUM_GUILD_SUBSCRIPTION_TOOLTIP.format({date:", + find: "Messages.PROFILE_USER_BADGES,", replacement: { - match: /&&((\w{1,3})\.push\({tooltip:\w{1,3}\.\w{1,3}\.Messages\.PREMIUM_GUILD_SUBSCRIPTION_TOOLTIP\.format.+?;)(?:return\s\w{1,3};?})/, + match: /&&((\i)\.push\({tooltip:\i\.\i\.Messages\.PREMIUM_GUILD_SUBSCRIPTION_TOOLTIP\.format.+?;)(?:return\s\i;?})/, replace: (_, m, badgeArray) => `&&${m} return Vencord.Api.Badges.inject(${badgeArray}, arguments[0]);}`, } }, @@ -69,21 +69,23 @@ export default definePlugin({ find: "Messages.PROFILE_USER_BADGES,role:", replacement: [ { - match: /src:(\w{1,3})\[(\w{1,3})\.key\],/, + match: /src:(\i)\[(\i)\.key\],/g, // <img src={badge.image ?? imageMap[badge.key]} {...badge.props} /> replace: (_, imageMap, badge) => `src: ${badge}.image ?? ${imageMap}[${badge}.key], ...${badge}.props,` }, { - match: /spacing:(\d{1,2}),children:(.{1,40}(\i)\.jsx.+?(\i)\.onClick.+?\)})},/, - // if the badge provides it's own component, render that instead of an image - // the badge also includes info about the user that has it (type BadgeUserArgs), which is why it's passed as props - replace: (_, s, origBadgeComponent, React, badge) => - `spacing:${s},children:${badge}.component ? () => (0,${React}.jsx)(${badge}.component, { ...${badge} }) : ${origBadgeComponent}},` + match: /children:function(?<=(\i)\.(?:tooltip|description),spacing:\d.+?)/g, + replace: "children:$1.component ? () => $self.renderBadgeComponent($1) : function" } ] } ], + renderBadgeComponent: ErrorBoundary.wrap((badge: ProfileBadge & BadgeUserArgs) => { + const Component = badge.component!; + return <Component {...badge} />; + }, { noop: true }), + async start() { Vencord.Api.Badges.addBadge(ContributorBadge); const badges = await fetch("https://gist.githubusercontent.com/Vendicated/51a3dd775f6920429ec6e9b735ca7f01/raw/badges.csv").then(r => r.text()); |