2022-09-01 19:41:00 +00:00
|
|
|
import { humanFriendlyJoin, useAwaiter } from "../utils/misc";
|
2022-08-31 02:07:16 +00:00
|
|
|
import Plugins from 'plugins';
|
|
|
|
import { useSettings } from "../api/settings";
|
|
|
|
import IpcEvents from "../utils/IpcEvents";
|
|
|
|
|
2022-09-01 19:41:00 +00:00
|
|
|
import { Button, ButtonProps, Flex, Switch, Forms, React } from "../webpack/common";
|
2022-08-31 18:47:07 +00:00
|
|
|
import ErrorBoundary from "./ErrorBoundary";
|
2022-08-31 20:08:05 +00:00
|
|
|
import { startPlugin } from "../plugins";
|
|
|
|
import { stopPlugin } from '../plugins/index';
|
2022-08-31 02:07:16 +00:00
|
|
|
|
2022-08-31 18:47:07 +00:00
|
|
|
export default ErrorBoundary.wrap(function Settings(props) {
|
|
|
|
const [settingsDir, , settingsDirPending] = useAwaiter(() => VencordNative.ipc.invoke<string>(IpcEvents.GET_SETTINGS_DIR), "Loading...");
|
2022-08-31 02:07:16 +00:00
|
|
|
const settings = useSettings();
|
|
|
|
|
2022-09-01 19:41:00 +00:00
|
|
|
const depMap = React.useMemo(() => {
|
|
|
|
const o = {} as Record<string, string[]>;
|
|
|
|
for (const plugin in Plugins) {
|
|
|
|
const deps = Plugins[plugin].dependencies;
|
|
|
|
if (deps) {
|
|
|
|
for (const dep of deps) {
|
|
|
|
o[dep] ??= [];
|
|
|
|
o[dep].push(plugin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return o;
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
console.log(depMap);
|
|
|
|
|
2022-08-31 02:07:16 +00:00
|
|
|
return (
|
|
|
|
<Forms.FormSection tag="h1" title="Vencord">
|
|
|
|
<Forms.FormText>SettingsDir: {settingsDir}</Forms.FormText>
|
2022-08-31 18:47:07 +00:00
|
|
|
<Flex style={{ marginTop: "8px", marginBottom: "8px" }}>
|
|
|
|
<Flex.Child>
|
2022-08-31 02:07:16 +00:00
|
|
|
<Button
|
|
|
|
onClick={() => VencordNative.ipc.invoke(IpcEvents.OPEN_PATH, settingsDir)}
|
2022-08-31 18:47:07 +00:00
|
|
|
size={ButtonProps.ButtonSizes.SMALL}
|
|
|
|
disabled={settingsDirPending}
|
2022-08-31 02:07:16 +00:00
|
|
|
>
|
|
|
|
Launch Directory
|
|
|
|
</Button>
|
2022-08-31 18:47:07 +00:00
|
|
|
</Flex.Child>
|
|
|
|
<Flex.Child>
|
2022-08-31 02:07:16 +00:00
|
|
|
<Button
|
|
|
|
onClick={() => VencordNative.ipc.invoke(IpcEvents.OPEN_PATH, settingsDir + "/quickCss.css")}
|
2022-08-31 18:47:07 +00:00
|
|
|
size={ButtonProps.ButtonSizes.SMALL}
|
2022-08-31 02:07:16 +00:00
|
|
|
disabled={settingsDir === "Loading..."}
|
|
|
|
>
|
|
|
|
Open QuickCSS File
|
|
|
|
</Button>
|
2022-08-31 18:47:07 +00:00
|
|
|
</Flex.Child>
|
2022-08-31 02:07:16 +00:00
|
|
|
</Flex>
|
|
|
|
<Forms.FormTitle tag="h5">Settings</Forms.FormTitle>
|
2022-08-31 18:47:07 +00:00
|
|
|
<Switch
|
2022-08-31 02:07:16 +00:00
|
|
|
value={settings.unsafeRequire}
|
|
|
|
onChange={v => settings.unsafeRequire = v}
|
|
|
|
note="Enables VencordNative.require. Useful for testing, very bad for security. Leave this off unless you need it."
|
|
|
|
>
|
|
|
|
Enable Ensafe Require
|
2022-08-31 18:47:07 +00:00
|
|
|
</Switch>
|
2022-08-31 02:07:16 +00:00
|
|
|
<Forms.FormDivider />
|
|
|
|
<Forms.FormTitle tag="h5">Plugins</Forms.FormTitle>
|
2022-09-01 19:41:00 +00:00
|
|
|
{Object.values(Plugins).map(p => {
|
|
|
|
const enabledDependants = depMap[p.name]?.filter(d => settings.plugins[d].enabled);
|
|
|
|
const dependency = enabledDependants?.length;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Switch
|
|
|
|
disabled={p.required || dependency}
|
|
|
|
key={p.name}
|
|
|
|
value={settings.plugins[p.name].enabled || p.required || dependency}
|
|
|
|
onChange={v => {
|
|
|
|
settings.plugins[p.name].enabled = v;
|
|
|
|
if (v) {
|
|
|
|
p.dependencies?.forEach(d => {
|
|
|
|
settings.plugins[d].enabled = true;
|
|
|
|
if (!Plugins[d].started && !stopPlugin) {
|
|
|
|
// TODO show notification
|
|
|
|
settings.plugins[p.name].enabled = false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (!p.started && !startPlugin(p)) {
|
|
|
|
// TODO show notification
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (p.started && !stopPlugin(p)) {
|
2022-08-31 21:04:18 +00:00
|
|
|
// TODO show notification
|
|
|
|
}
|
2022-08-31 20:08:05 +00:00
|
|
|
}
|
2022-09-01 19:41:00 +00:00
|
|
|
if (p.patches) {
|
2022-08-31 20:08:05 +00:00
|
|
|
// TODO show notification
|
|
|
|
}
|
2022-09-01 19:41:00 +00:00
|
|
|
}}
|
|
|
|
note={p.description}
|
|
|
|
tooltipNote={
|
|
|
|
p.required ?
|
|
|
|
"This plugin is required. Thus you cannot disable it."
|
|
|
|
: dependency ?
|
|
|
|
`${humanFriendlyJoin(enabledDependants)} ${enabledDependants.length === 1 ? "depends" : "depend"} on this plugin. Thus you cannot disable it.`
|
|
|
|
: ""
|
2022-08-31 20:08:05 +00:00
|
|
|
}
|
2022-09-01 19:41:00 +00:00
|
|
|
>
|
|
|
|
{p.name}
|
|
|
|
</Switch>
|
|
|
|
);
|
|
|
|
})
|
2022-08-31 02:07:16 +00:00
|
|
|
}
|
|
|
|
</Forms.FormSection >
|
|
|
|
);
|
2022-08-31 18:47:07 +00:00
|
|
|
});
|