mirror of
https://github.com/Equicord/Equicord.git
synced 2025-01-18 13:23:28 -05:00
Fix StatusPresets
This commit is contained in:
parent
7c5af82621
commit
cc4266cbf2
2 changed files with 11 additions and 4 deletions
|
@ -18,7 +18,7 @@
|
|||
|
||||
import "./style.css";
|
||||
|
||||
import { definePluginSettings } from "@api/Settings";
|
||||
import { definePluginSettings, Settings } from "@api/Settings";
|
||||
import { getUserSettingLazy } from "@api/UserSettings";
|
||||
import ErrorBoundary from "@components/ErrorBoundary";
|
||||
import { EquicordDevs } from "@utils/constants";
|
||||
|
@ -123,16 +123,23 @@ const RenderStatusMenuItem = ({ status, update, disabled }: { status: DiscordSta
|
|||
|
||||
|
||||
const StatusSubMenuComponent = () => {
|
||||
let premiumType;
|
||||
if (Settings.plugins.NoNitroUpsell.enabled) {
|
||||
// @ts-ignore
|
||||
premiumType = UserStore?.getCurrentUser()?._realPremiumType ?? UserStore?.getCurrentUser()?.premiumType ?? 0;
|
||||
} else {
|
||||
premiumType = UserStore?.getCurrentUser()?.premiumType ?? 0;
|
||||
}
|
||||
const update = useForceUpdater();
|
||||
return <Menu.Menu navId="sp-custom-status-submenu" onClose={() => { }}>
|
||||
{Object.entries((settings.store.StatusPresets as { [k: string]: DiscordStatus | undefined; })).map(([index, status]) => status != null ? <Menu.MenuItem
|
||||
id={"status-presets-" + index}
|
||||
label={status.status}
|
||||
action={() => (status.emojiInfo?.id != null && UserStore.getCurrentUser().hasPremiumPerks || status.emojiInfo?.id == null) && setStatus(status)}
|
||||
action={() => (status.emojiInfo?.id != null && premiumType > 0 || status.emojiInfo?.id == null) && setStatus(status)}
|
||||
render={() => <RenderStatusMenuItem
|
||||
status={status}
|
||||
update={update}
|
||||
disabled={status.emojiInfo?.id != null && !UserStore.getCurrentUser().hasPremiumPerks}
|
||||
disabled={status.emojiInfo?.id != null && premiumType === 0}
|
||||
/>}
|
||||
/> : null)}
|
||||
</Menu.Menu>;
|
||||
|
|
|
@ -31,7 +31,7 @@ import { applyPalette, GIFEncoder, quantize } from "gifenc";
|
|||
import type { ReactElement, ReactNode } from "react";
|
||||
|
||||
let premiumType;
|
||||
if (Settings.plugins?.NoNitroUpsell?.enabled) {
|
||||
if (Settings.plugins.NoNitroUpsell.enabled) {
|
||||
// @ts-ignore
|
||||
premiumType = UserStore?.getCurrentUser()?._realPremiumType ?? UserStore?.getCurrentUser()?.premiumType ?? 0;
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue