diff options
Diffstat (limited to 'src/plugins/pronoundb')
5 files changed, 18 insertions, 15 deletions
diff --git a/src/plugins/pronoundb/components/PronounsAboutComponent.tsx b/src/plugins/pronoundb/components/PronounsAboutComponent.tsx index 3f288d5..255c6d3 100644 --- a/src/plugins/pronoundb/components/PronounsAboutComponent.tsx +++ b/src/plugins/pronoundb/components/PronounsAboutComponent.tsx @@ -16,8 +16,8 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import { Link } from "../../../components/Link"; -import { Forms, React } from "../../../webpack/common"; +import { Link } from "@components/Link"; +import { Forms, React } from "@webpack/common"; export default function PronounsAboutComponent() { return ( diff --git a/src/plugins/pronoundb/components/PronounsChatComponent.tsx b/src/plugins/pronoundb/components/PronounsChatComponent.tsx index 57033cc..9225fc5 100644 --- a/src/plugins/pronoundb/components/PronounsChatComponent.tsx +++ b/src/plugins/pronoundb/components/PronounsChatComponent.tsx @@ -16,16 +16,16 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ +import { Settings } from "@api/settings"; +import { classes, useAwaiter } from "@utils/misc"; +import { findByPropsLazy } from "@webpack"; +import { UserStore } from "@webpack/common"; import { Message } from "discord-types/general"; -import { classes, lazyWebpack, useAwaiter } from "../../../utils/misc"; -import { Settings } from "../../../Vencord"; -import { filters } from "../../../webpack"; -import { UserStore } from "../../../webpack/common"; import { fetchPronouns, formatPronouns } from "../pronoundbUtils"; import { PronounMapping } from "../types"; -const styles: Record<string, string> = lazyWebpack(filters.byProps("timestampInline")); +const styles: Record<string, string> = findByPropsLazy("timestampInline"); export default function PronounsChatComponentWrapper({ message }: { message: Message; }) { // Don't bother fetching bot or system users diff --git a/src/plugins/pronoundb/components/PronounsProfileWrapper.tsx b/src/plugins/pronoundb/components/PronounsProfileWrapper.tsx index b39f4ed..9540bb9 100644 --- a/src/plugins/pronoundb/components/PronounsProfileWrapper.tsx +++ b/src/plugins/pronoundb/components/PronounsProfileWrapper.tsx @@ -16,9 +16,10 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import { useAwaiter } from "../../../utils/misc"; -import { Settings } from "../../../Vencord"; -import { UserStore } from "../../../webpack/common"; +import { Settings } from "@api/settings"; +import { useAwaiter } from "@utils/misc"; +import { UserStore } from "@webpack/common"; + import { fetchPronouns, formatPronouns } from "../pronoundbUtils"; import { PronounMapping, UserProfilePronounsProps, UserProfileProps } from "../types"; diff --git a/src/plugins/pronoundb/index.ts b/src/plugins/pronoundb/index.ts index 39637e2..49b25f7 100644 --- a/src/plugins/pronoundb/index.ts +++ b/src/plugins/pronoundb/index.ts @@ -16,8 +16,9 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import { Devs } from "../../utils/constants"; -import definePlugin, { OptionType } from "../../utils/types"; +import { Devs } from "@utils/constants"; +import definePlugin, { OptionType } from "@utils/types"; + import PronounsAboutComponent from "./components/PronounsAboutComponent"; import PronounsChatComponent from "./components/PronounsChatComponent"; import PronounsProfileWrapper from "./components/PronounsProfileWrapper"; diff --git a/src/plugins/pronoundb/pronoundbUtils.ts b/src/plugins/pronoundb/pronoundbUtils.ts index 73ec7b6..afeea95 100644 --- a/src/plugins/pronoundb/pronoundbUtils.ts +++ b/src/plugins/pronoundb/pronoundbUtils.ts @@ -16,9 +16,10 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import { VENCORD_USER_AGENT } from "../../utils/constants"; -import { debounce } from "../../utils/debounce"; -import { Settings } from "../../Vencord"; +import { Settings } from "@api/settings"; +import { VENCORD_USER_AGENT } from "@utils/constants"; +import { debounce } from "@utils/debounce"; + import { PronounsFormat } from "."; import { PronounCode, PronounMapping, PronounsResponse } from "./types"; |