* fix: prevent workspace.byId validation errors when publicId is empty * fix: add keys to shortcut elements * fix: prevent card.byId validation errors when cardPublicId is empty * chore: remove invalid config option from next.config.js
59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
import { t } from "@lingui/core/macro";
|
|
import { useEffect, useState } from "react";
|
|
|
|
import Toggle from "~/components/Toggle";
|
|
import { api } from "~/utils/api";
|
|
|
|
export default function UpdateWorkspaceEmailVisibilityForm({
|
|
workspacePublicId,
|
|
showEmailsToMembers,
|
|
disabled = false,
|
|
}: {
|
|
workspacePublicId: string;
|
|
showEmailsToMembers: boolean;
|
|
disabled?: boolean;
|
|
}) {
|
|
const utils = api.useUtils();
|
|
const [isChecked, setIsChecked] = useState(showEmailsToMembers);
|
|
|
|
useEffect(() => {
|
|
setIsChecked(showEmailsToMembers);
|
|
}, [showEmailsToMembers]);
|
|
|
|
const updateWorkspace = api.workspace.update.useMutation({
|
|
onSuccess: () => {
|
|
if (workspacePublicId && workspacePublicId.length >= 12) {
|
|
void utils.workspace.byId.invalidate({
|
|
workspacePublicId,
|
|
});
|
|
}
|
|
},
|
|
});
|
|
|
|
const handleToggle = () => {
|
|
if (disabled) return;
|
|
const newValue = !isChecked;
|
|
setIsChecked(newValue);
|
|
updateWorkspace.mutate({
|
|
workspacePublicId,
|
|
showEmailsToMembers: newValue,
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div className="mb-8 flex items-center justify-between">
|
|
<div className="flex-1">
|
|
<p className="text-sm text-neutral-500 dark:text-dark-900">
|
|
{t`Allow workspace members to see each other's email addresses`}
|
|
</p>
|
|
</div>
|
|
<Toggle
|
|
isChecked={isChecked}
|
|
onChange={handleToggle}
|
|
label=""
|
|
disabled={disabled || updateWorkspace.isPending}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|