mirror of
https://github.com/docmost/docmost.git
synced 2026-05-15 05:04:06 +08:00
d7a5fda53c
* feat: feature flag upgrade * fix translations * refactor * fix * fix
77 lines
2.2 KiB
TypeScript
77 lines
2.2 KiB
TypeScript
import {
|
|
Group,
|
|
Text,
|
|
Switch,
|
|
MantineSize,
|
|
Title,
|
|
Tooltip,
|
|
} from "@mantine/core";
|
|
import { useAtom } from "jotai";
|
|
import { workspaceAtom } from "@/features/user/atoms/current-user-atom.ts";
|
|
import React, { 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.ts";
|
|
import { Feature } from "@/ee/features.ts";
|
|
import { useUpgradeLabel } from "@/ee/hooks/use-upgrade-label.ts";
|
|
|
|
export default function EnforceMfa() {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<Group justify="space-between" wrap="nowrap" gap="xl">
|
|
<div>
|
|
<Text size="md">{t("Enforce two-factor authentication")}</Text>
|
|
<Text size="sm" c="dimmed">
|
|
{t(
|
|
"Once enforced, all members must enable two-factor authentication to access the workspace.",
|
|
)}
|
|
</Text>
|
|
</div>
|
|
|
|
<EnforceMfaToggle />
|
|
</Group>
|
|
);
|
|
}
|
|
|
|
interface EnforceMfaToggleProps {
|
|
size?: MantineSize;
|
|
label?: string;
|
|
}
|
|
export function EnforceMfaToggle({ size, label }: EnforceMfaToggleProps) {
|
|
const { t } = useTranslation();
|
|
const [workspace, setWorkspace] = useAtom(workspaceAtom);
|
|
const [checked, setChecked] = useState(workspace?.enforceMfa);
|
|
const hasAccess = useHasFeature(Feature.MFA);
|
|
const upgradeLabel = useUpgradeLabel();
|
|
|
|
const handleChange = async (event: React.ChangeEvent<HTMLInputElement>) => {
|
|
const value = event.currentTarget.checked;
|
|
try {
|
|
const updatedWorkspace = await updateWorkspace({ enforceMfa: value });
|
|
setChecked(value);
|
|
setWorkspace(updatedWorkspace);
|
|
} catch (err) {
|
|
notifications.show({
|
|
message: err?.response?.data?.message,
|
|
color: "red",
|
|
});
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Tooltip label={upgradeLabel} disabled={hasAccess} refProp="rootRef">
|
|
<Switch
|
|
size={size}
|
|
label={label}
|
|
labelPosition="left"
|
|
defaultChecked={checked}
|
|
onChange={handleChange}
|
|
disabled={!hasAccess}
|
|
aria-label={t("Toggle MFA enforcement")}
|
|
/>
|
|
</Tooltip>
|
|
);
|
|
}
|