217 lines
6.2 KiB
TypeScript
217 lines
6.2 KiB
TypeScript
import {
|
|
EmailIcon,
|
|
ProfileIcon,
|
|
PadlockIcon,
|
|
CodeIcon,
|
|
UserIcon,
|
|
GroupIcon,
|
|
GlobeIcon,
|
|
TeamIcon,
|
|
BeakerIcon,
|
|
BuildingBlocksIcon,
|
|
SettingsIcon,
|
|
ExportIcon,
|
|
ImportIcon,
|
|
ShapesIcon,
|
|
Icon,
|
|
} from "outline-icons";
|
|
import React, { ComponentProps } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { integrationSettingsPath } from "@shared/utils/routeHelpers";
|
|
import ZapierIcon from "~/components/Icons/ZapierIcon";
|
|
import { Hook, PluginManager } from "~/utils/PluginManager";
|
|
import isCloudHosted from "~/utils/isCloudHosted";
|
|
import lazy from "~/utils/lazyWithRetry";
|
|
import { settingsPath } from "~/utils/routeHelpers";
|
|
import { useComputed } from "./useComputed";
|
|
import useCurrentTeam from "./useCurrentTeam";
|
|
import useCurrentUser from "./useCurrentUser";
|
|
import usePolicy from "./usePolicy";
|
|
|
|
const ApiKeys = lazy(() => import("~/scenes/Settings/ApiKeys"));
|
|
const Details = lazy(() => import("~/scenes/Settings/Details"));
|
|
const Export = lazy(() => import("~/scenes/Settings/Export"));
|
|
const Features = lazy(() => import("~/scenes/Settings/Features"));
|
|
const Groups = lazy(() => import("~/scenes/Settings/Groups"));
|
|
const Import = lazy(() => import("~/scenes/Settings/Import"));
|
|
const Members = lazy(() => import("~/scenes/Settings/Members"));
|
|
const Notifications = lazy(() => import("~/scenes/Settings/Notifications"));
|
|
const Preferences = lazy(() => import("~/scenes/Settings/Preferences"));
|
|
const Profile = lazy(() => import("~/scenes/Settings/Profile"));
|
|
const Security = lazy(() => import("~/scenes/Settings/Security"));
|
|
const SelfHosted = lazy(() => import("~/scenes/Settings/SelfHosted"));
|
|
const Shares = lazy(() => import("~/scenes/Settings/Shares"));
|
|
const Templates = lazy(() => import("~/scenes/Settings/Templates"));
|
|
const Zapier = lazy(() => import("~/scenes/Settings/Zapier"));
|
|
|
|
export type ConfigItem = {
|
|
name: string;
|
|
path: string;
|
|
icon: React.FC<ComponentProps<typeof Icon>>;
|
|
component: React.ComponentType;
|
|
enabled: boolean;
|
|
group: string;
|
|
};
|
|
|
|
const useSettingsConfig = () => {
|
|
const user = useCurrentUser();
|
|
const team = useCurrentTeam();
|
|
const can = usePolicy(team);
|
|
const { t } = useTranslation();
|
|
|
|
const config = useComputed(() => {
|
|
const items: ConfigItem[] = [
|
|
// Account
|
|
{
|
|
name: t("Profile"),
|
|
path: settingsPath(),
|
|
component: Profile,
|
|
enabled: true,
|
|
group: t("Account"),
|
|
icon: ProfileIcon,
|
|
},
|
|
{
|
|
name: t("Preferences"),
|
|
path: settingsPath("preferences"),
|
|
component: Preferences,
|
|
enabled: true,
|
|
group: t("Account"),
|
|
icon: SettingsIcon,
|
|
},
|
|
{
|
|
name: t("Notifications"),
|
|
path: settingsPath("notifications"),
|
|
component: Notifications,
|
|
enabled: true,
|
|
group: t("Account"),
|
|
icon: EmailIcon,
|
|
},
|
|
{
|
|
name: t("API"),
|
|
path: settingsPath("tokens"),
|
|
component: ApiKeys,
|
|
enabled: can.createApiKey,
|
|
group: t("Account"),
|
|
icon: CodeIcon,
|
|
},
|
|
// Workspace
|
|
{
|
|
name: t("Details"),
|
|
path: settingsPath("details"),
|
|
component: Details,
|
|
enabled: can.update,
|
|
group: t("Workspace"),
|
|
icon: TeamIcon,
|
|
},
|
|
{
|
|
name: t("Security"),
|
|
path: settingsPath("security"),
|
|
component: Security,
|
|
enabled: can.update,
|
|
group: t("Workspace"),
|
|
icon: PadlockIcon,
|
|
},
|
|
{
|
|
name: t("Features"),
|
|
path: settingsPath("features"),
|
|
component: Features,
|
|
enabled: can.update,
|
|
group: t("Workspace"),
|
|
icon: BeakerIcon,
|
|
},
|
|
{
|
|
name: t("Members"),
|
|
path: settingsPath("members"),
|
|
component: Members,
|
|
enabled: can.listUsers,
|
|
group: t("Workspace"),
|
|
icon: UserIcon,
|
|
},
|
|
{
|
|
name: t("Groups"),
|
|
path: settingsPath("groups"),
|
|
component: Groups,
|
|
enabled: can.listGroups,
|
|
group: t("Workspace"),
|
|
icon: GroupIcon,
|
|
},
|
|
{
|
|
name: t("Templates"),
|
|
path: settingsPath("templates"),
|
|
component: Templates,
|
|
enabled: can.update,
|
|
group: t("Workspace"),
|
|
icon: ShapesIcon,
|
|
},
|
|
{
|
|
name: t("Shared Links"),
|
|
path: settingsPath("shares"),
|
|
component: Shares,
|
|
enabled: can.listShares,
|
|
group: t("Workspace"),
|
|
icon: GlobeIcon,
|
|
},
|
|
{
|
|
name: t("Import"),
|
|
path: settingsPath("import"),
|
|
component: Import,
|
|
enabled: can.createImport,
|
|
group: t("Workspace"),
|
|
icon: ImportIcon,
|
|
},
|
|
{
|
|
name: t("Export"),
|
|
path: settingsPath("export"),
|
|
component: Export,
|
|
enabled: can.createExport,
|
|
group: t("Workspace"),
|
|
icon: ExportIcon,
|
|
},
|
|
// Integrations
|
|
{
|
|
name: t("Self Hosted"),
|
|
path: integrationSettingsPath("self-hosted"),
|
|
component: SelfHosted,
|
|
enabled: can.update && !isCloudHosted,
|
|
group: t("Integrations"),
|
|
icon: BuildingBlocksIcon,
|
|
},
|
|
{
|
|
name: "Zapier",
|
|
path: integrationSettingsPath("zapier"),
|
|
component: Zapier,
|
|
enabled: can.update && isCloudHosted,
|
|
group: t("Integrations"),
|
|
icon: ZapierIcon,
|
|
},
|
|
];
|
|
|
|
// Plugins
|
|
PluginManager.getHooks(Hook.Settings).forEach((plugin) => {
|
|
const group = plugin.value.group ?? "Integrations";
|
|
const insertIndex = plugin.value.after
|
|
? items.findIndex((i) => i.name === t(plugin.value.after!)) + 1
|
|
: items.findIndex((i) => i.group === t(group));
|
|
items.splice(insertIndex, 0, {
|
|
name: t(plugin.name),
|
|
path:
|
|
group === "Integrations"
|
|
? integrationSettingsPath(plugin.id)
|
|
: settingsPath(plugin.id),
|
|
group: t(group),
|
|
component: plugin.value.component,
|
|
enabled: plugin.value.enabled
|
|
? plugin.value.enabled(team, user)
|
|
: can.update,
|
|
icon: plugin.value.icon,
|
|
} as ConfigItem);
|
|
});
|
|
|
|
return items;
|
|
}, [t, can.createApiKey, can.update, can.createImport, can.createExport]);
|
|
|
|
return config.filter((item) => item.enabled);
|
|
};
|
|
|
|
export default useSettingsConfig;
|