mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 06:23:06 +08:00
d42091ccb1
* feat: favorites and templates(ee) * rename migrations * fix sidebar * cleanup tabs * fix * turn off templates * cleanup * uuid validation
71 lines
2.1 KiB
TypeScript
71 lines
2.1 KiB
TypeScript
import { Group, Text, Switch, Tooltip } from "@mantine/core";
|
|
import { useAtom } from "jotai";
|
|
import { workspaceAtom } from "@/features/user/atoms/current-user-atom.ts";
|
|
import { useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { updateWorkspace } from "@/features/workspace/services/workspace-service.ts";
|
|
import { notifications } from "@mantine/notifications";
|
|
import { useHasFeature } from "@/ee/hooks/use-feature";
|
|
import { Feature } from "@/ee/features";
|
|
import { useUpgradeLabel } from "@/ee/hooks/use-upgrade-label.ts";
|
|
|
|
export default function AllowMemberTemplates() {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<Group justify="space-between" wrap="nowrap" gap="xl">
|
|
<div>
|
|
<Text size="md">{t("Allow members to create templates")}</Text>
|
|
<Text size="sm" c="dimmed">
|
|
{t(
|
|
"Allow non-admin members to create and manage templates in their spaces.",
|
|
)}
|
|
</Text>
|
|
</div>
|
|
|
|
<AllowMemberTemplatesToggle />
|
|
</Group>
|
|
);
|
|
}
|
|
|
|
function AllowMemberTemplatesToggle() {
|
|
const { t } = useTranslation();
|
|
const [workspace, setWorkspace] = useAtom(workspaceAtom);
|
|
const [checked, setChecked] = useState(
|
|
workspace?.settings?.templates?.allowMemberTemplates === true,
|
|
);
|
|
const hasSecuritySettings = useHasFeature(Feature.SECURITY_SETTINGS);
|
|
const upgradeLabel = useUpgradeLabel();
|
|
|
|
const handleChange = async (event: React.ChangeEvent<HTMLInputElement>) => {
|
|
const value = event.currentTarget.checked;
|
|
try {
|
|
const updatedWorkspace = await updateWorkspace({
|
|
allowMemberTemplates: value,
|
|
});
|
|
setChecked(value);
|
|
setWorkspace(updatedWorkspace);
|
|
} catch (err) {
|
|
notifications.show({
|
|
message: err?.response?.data?.message,
|
|
color: "red",
|
|
});
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Tooltip
|
|
label={upgradeLabel}
|
|
disabled={hasSecuritySettings}
|
|
refProp="rootRef"
|
|
>
|
|
<Switch
|
|
checked={checked}
|
|
onChange={handleChange}
|
|
disabled={!hasSecuritySettings}
|
|
aria-label={t("Toggle allow members to create templates")}
|
|
/>
|
|
</Tooltip>
|
|
);
|
|
}
|