From c5a3472c463116f35e7feeaafb9f1b499034d6ce Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Wed, 8 May 2024 20:40:32 -0400 Subject: [PATCH] added FriendshipRanks --- src/userplugins/FriendshipRanks/index.tsx | 152 ++++++++++++++++++++++ 1 file changed, 152 insertions(+) create mode 100644 src/userplugins/FriendshipRanks/index.tsx diff --git a/src/userplugins/FriendshipRanks/index.tsx b/src/userplugins/FriendshipRanks/index.tsx new file mode 100644 index 00000000..824d4ebd --- /dev/null +++ b/src/userplugins/FriendshipRanks/index.tsx @@ -0,0 +1,152 @@ +/* + * Vencord, a Discord client mod + * Copyright (c) 2024 Vendicated and contributors + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +import { BadgeUserArgs, ProfileBadge } from "@api/Badges"; +import ErrorBoundary from "@components/ErrorBoundary"; +import { Devs } from "@utils/constants"; +import { Margins } from "@utils/margins"; +import { ModalSize, openModal } from "@utils/modal"; +import { Modals } from "@utils/modal"; +import definePlugin from "@utils/types"; +import { RelationshipStore } from "@webpack/common"; +import { Flex } from "@webpack/common"; +import { Forms } from "@webpack/common"; + +interface rankInfo { + title: string; + description: string; + requirement: number; + assetURL: string; +} + +function daysSince(dateString: string): number { + const date = new Date(dateString); + const currentDate = new Date(); + + const differenceInMs = currentDate.getTime() - date.getTime(); + + const days = differenceInMs / (1000 * 60 * 60 * 24); + + return Math.floor(days); +} + +const ranks: rankInfo[] = + [ + { + title: "Sprout", + description: "Your friendship is just starting", + requirement: 0, + assetURL: "https://files.catbox.moe/d6gis2.png" + }, + { + title: "Blooming", + description: "Your friendship is getting there! (1 Month)", + requirement: 30, + assetURL: "https://files.catbox.moe/z7fxjq.png" + }, + { + title: "Burning", + description: "Your friendship has reached terminal velocity :o (3 Months)", + requirement: 90, + assetURL: "https://files.catbox.moe/8oiu0o.png" + }, + { + title: "Star", + description: "Your friendship has been going on for a WHILE (1 Year)", + requirement: 365, + assetURL: "https://files.catbox.moe/7bpe7v.png" + }, + { + title: "Royal", + description: "Your friendship has gone through thick and thin- a whole 2 years!", + requirement: 730, + assetURL: "https://files.catbox.moe/0yp9mp.png" + }, + { + title: "Besties", + description: "How do you even manage this??? (5 Years)", + assetURL: "https://files.catbox.moe/qojb7d.webp", + requirement: 1826.25 + } + ]; + +function openRankModal(rank: rankInfo) { + openModal(props => ( + + + + + + Your friendship rank + + + + +
+ + {rank.title} + + + + {rank.description} + +
+
+
+
+ )); +} + +function getBadgesToApply() { + + const badgesToApply: ProfileBadge[] = ranks.map((rank, index, self) => { + return ( + { + description: rank.title, + image: rank.assetURL, + props: { + style: { + transform: "scale(0.8)" + } + }, + shouldShow: (info: BadgeUserArgs) => { + if (!RelationshipStore.isFriend(info.user.id)) { return false; } + + const days = daysSince(RelationshipStore.getSince(info.user.id)); + + if (self[index + 1] == null) { + return days > rank.requirement; + } + + return (days > rank.requirement && days < self[index + 1].requirement); + }, + onClick: () => openRankModal(rank) + }); + }); + return badgesToApply; +} + +export default definePlugin({ + name: "FriendshipRanks", + description: "Adds badges showcasing how long you have been friends with a user for", + authors: [ + Devs.Samwich + ], + start() { + getBadgesToApply().forEach(thing => Vencord.Api.Badges.addBadge(thing)); + + }, + stop() { + getBadgesToApply().forEach(thing => Vencord.Api.Badges.removeBadge(thing)); + }, +});