|
|
@ -20,10 +20,12 @@ import { definePluginSettings } from "@api/Settings";
|
|
|
|
import ErrorBoundary from "@components/ErrorBoundary";
|
|
|
|
import ErrorBoundary from "@components/ErrorBoundary";
|
|
|
|
import { ErrorCard } from "@components/ErrorCard";
|
|
|
|
import { ErrorCard } from "@components/ErrorCard";
|
|
|
|
import { Devs } from "@utils/constants";
|
|
|
|
import { Devs } from "@utils/constants";
|
|
|
|
|
|
|
|
import { Logger } from "@utils/Logger";
|
|
|
|
import { Margins } from "@utils/margins";
|
|
|
|
import { Margins } from "@utils/margins";
|
|
|
|
import definePlugin, { OptionType } from "@utils/types";
|
|
|
|
import definePlugin, { OptionType } from "@utils/types";
|
|
|
|
import { findByPropsLazy } from "@webpack";
|
|
|
|
import { findByPropsLazy } from "@webpack";
|
|
|
|
import { Forms, React } from "@webpack/common";
|
|
|
|
import { Forms, React, UserStore } from "@webpack/common";
|
|
|
|
|
|
|
|
import { User } from "discord-types/general";
|
|
|
|
|
|
|
|
|
|
|
|
const KbdStyles = findByPropsLazy("key", "removeBuildOverride");
|
|
|
|
const KbdStyles = findByPropsLazy("key", "removeBuildOverride");
|
|
|
|
|
|
|
|
|
|
|
@ -68,8 +70,8 @@ export default definePlugin({
|
|
|
|
predicate: () => settings.store.enableIsStaff,
|
|
|
|
predicate: () => settings.store.enableIsStaff,
|
|
|
|
replacement: [
|
|
|
|
replacement: [
|
|
|
|
{
|
|
|
|
{
|
|
|
|
match: /=>*?(\i)\.hasFlag\((\i\.\i)\.STAFF\)}/,
|
|
|
|
match: /(?<=>)(\i)\.hasFlag\((\i\.\i)\.STAFF\)(?=})/,
|
|
|
|
replace: (_, user, flags) => `=>Vencord.Webpack.Common.UserStore.getCurrentUser()?.id===${user}.id||${user}.hasFlag(${flags}.STAFF)}`
|
|
|
|
replace: (_, user, flags) => `$self.isStaff(${user},${flags})`
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
match: /hasFreePremium\(\){return this.isStaff\(\)\s*?\|\|/,
|
|
|
|
match: /hasFreePremium\(\){return this.isStaff\(\)\s*?\|\|/,
|
|
|
@ -86,6 +88,15 @@ export default definePlugin({
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
isStaff(user: User, flags: any) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
return UserStore.getCurrentUser()?.id === user.id || user.hasFlag(flags.STAFF);
|
|
|
|
|
|
|
|
} catch (err) {
|
|
|
|
|
|
|
|
new Logger("Experiments").error(err);
|
|
|
|
|
|
|
|
return user.hasFlag(flags.STAFF);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
settingsAboutComponent: () => {
|
|
|
|
settingsAboutComponent: () => {
|
|
|
|
const isMacOS = navigator.platform.includes("Mac");
|
|
|
|
const isMacOS = navigator.platform.includes("Mac");
|
|
|
|
const modKey = isMacOS ? "cmd" : "ctrl";
|
|
|
|
const modKey = isMacOS ? "cmd" : "ctrl";
|
|
|
|