From cf09dbc1acc5e88d3243eff6760178f10c89c577 Mon Sep 17 00:00:00 2001 From: aliernfrog <45766489+aliernfrog@users.noreply.github.com> Date: Mon, 24 Jul 2023 01:47:11 +0300 Subject: [PATCH] [UI] Fix You tab settings on 189.4+ (#118) * [UI] Fix You tab settings on 189.4+ * [UI > YouTab] Formatting --------- Co-authored-by: Beef --- src/ui/settings/index.ts | 3 +-- src/ui/settings/patches/you.tsx | 20 ++++++++++++++++---- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/src/ui/settings/index.ts b/src/ui/settings/index.ts index dc4e8e1..c4e32a3 100644 --- a/src/ui/settings/index.ts +++ b/src/ui/settings/index.ts @@ -1,11 +1,10 @@ -import { findByProps } from "@metro/filters"; import patchPanels from "@ui/settings/patches/panels"; import patchYou from "@ui/settings/patches/you"; export default function initSettings() { const patches = [ patchPanels(), - ...(findByProps("getSettingSearchListItems") ? [patchYou()] : []), + patchYou(), ] return () => patches.forEach(p => p()); diff --git a/src/ui/settings/patches/you.tsx b/src/ui/settings/patches/you.tsx index d09e9ce..627886d 100644 --- a/src/ui/settings/patches/you.tsx +++ b/src/ui/settings/patches/you.tsx @@ -5,10 +5,21 @@ import { getRenderableScreens, getScreens, getYouData } from "@ui/settings/data" const layoutModule = findByProps("useOverviewSettings"); const titleConfigModule = findByProps("getSettingTitleConfig"); -const gettersModule = findByProps("getSettingSearchListItems"); const miscModule = findByProps("SETTING_RELATIONSHIPS", "SETTING_RENDERER_CONFIGS"); +// Checks for 189.4 and above +// When dropping support for 189.3 and below, following can be done: (unless Discord changes things again) +// const gettersModule = findByProps("getSettingListItems"); +const OLD_GETTER_FUNCTION = "getSettingSearchListItems"; +const NEW_GETTER_FUNCTION = "getSettingListItems"; +const oldGettersModule = findByProps(OLD_GETTER_FUNCTION); +const usingNewGettersModule = !oldGettersModule; +const getterFunctionName = usingNewGettersModule ? NEW_GETTER_FUNCTION : OLD_GETTER_FUNCTION; +const gettersModule = oldGettersModule ?? findByProps(NEW_GETTER_FUNCTION); + export default function patchYou() { + if (!gettersModule) return; + const patches = new Array; const screens = getScreens(true); const renderableScreens = getRenderableScreens(true); @@ -29,7 +40,7 @@ export default function patchYou() { ...data.titleConfig, }))); - patches.push(after("getSettingSearchListItems", gettersModule, ([settings], ret) => [ + patches.push(after(getterFunctionName, gettersModule, ([settings], ret) => [ ...(renderableScreens.filter(s => settings.includes(s.key))).map(s => ({ type: "setting_search_result", ancestorRendererData: data.rendererConfigs[s.key], @@ -38,7 +49,8 @@ export default function patchYou() { breadcrumbs: ["Vendetta"], icon: data.rendererConfigs[s.key].icon, })), - ...ret.filter((i: any) => !screens.map(s => s.key).includes(i.setting)), + // .filter can be removed when dropping support for 189.3 and below (unless Discord changes things again) + ...ret.filter((i: any) => (usingNewGettersModule || !screens.map(s => s.key).includes(i.setting))) ].map((item, index, parent) => ({ ...item, index, total: parent.length })))); // TODO: We could use a proxy for these @@ -53,4 +65,4 @@ export default function patchYou() { miscModule.SETTING_RENDERER_CONFIGS = oldRendererConfigs; patches.forEach(p => p()); }; -} +} \ No newline at end of file