mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-11 08:24:38 +03:00
eded4d9bdd
error in role assignment # Description Please include a summary of the changes and the related issue. Please also include relevant motivation and context. ## Checklist before requesting a review Please delete options that are not relevant. - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged ## Screenshots (if appropriate):
73 lines
2.1 KiB
TypeScript
73 lines
2.1 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { MdOutlineRemoveCircle } from "react-icons/md";
|
|
|
|
import Field from "@/lib/components/ui/Field";
|
|
import { Select } from "@/lib/components/ui/Select";
|
|
|
|
import { BrainRoleAssignation, BrainRoleType } from "./BrainUsers/types";
|
|
import { userRoleToAssignableRoles } from "./ShareBrain/types";
|
|
|
|
type UserToInviteProps = {
|
|
onChange: (newRole: BrainRoleAssignation) => void;
|
|
removeCurrentInvitation?: () => void;
|
|
roleAssignation: BrainRoleAssignation;
|
|
};
|
|
|
|
export const UserToInvite = ({
|
|
onChange,
|
|
removeCurrentInvitation,
|
|
roleAssignation,
|
|
}: UserToInviteProps): JSX.Element => {
|
|
const { t } = useTranslation("translation");
|
|
const [selectedRole, setSelectedRole] = useState<BrainRoleType>(
|
|
roleAssignation.role
|
|
);
|
|
const [email, setEmail] = useState(roleAssignation.email);
|
|
|
|
useEffect(() => {
|
|
onChange({
|
|
...roleAssignation,
|
|
email,
|
|
role: selectedRole,
|
|
});
|
|
}, [email, onChange, roleAssignation, selectedRole]);
|
|
|
|
const assignableRoles = userRoleToAssignableRoles["Owner"];
|
|
const translatedOptions = assignableRoles.map((role) => ({
|
|
value: role.value,
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
label: t(role.value),
|
|
}));
|
|
|
|
return (
|
|
<div
|
|
data-testid="assignation-row"
|
|
className="flex flex-row align-center my-2 gap-3 items-center"
|
|
>
|
|
<div className="cursor-pointer" onClick={removeCurrentInvitation}>
|
|
<MdOutlineRemoveCircle />
|
|
</div>
|
|
<div className="flex flex-1">
|
|
<Field
|
|
name="email"
|
|
required
|
|
type="email"
|
|
placeholder={t("email")}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
value={email}
|
|
onBlur={() => email === "" && removeCurrentInvitation?.()}
|
|
data-testid="role-assignation-email-input"
|
|
/>
|
|
</div>
|
|
<Select
|
|
onChange={setSelectedRole}
|
|
value={selectedRole}
|
|
options={translatedOptions}
|
|
popoverSide="bottom"
|
|
popoverClassName="w-36"
|
|
/>
|
|
</div>
|
|
);
|
|
};
|