64 lines
1.8 KiB
JavaScript
64 lines
1.8 KiB
JavaScript
import React from 'react';
|
|
import { useFormContext } from 'react-hook-form';
|
|
import PropTypes from 'prop-types';
|
|
import ControlledCheckbox from 'components/ControlledCheckbox';
|
|
|
|
const AllEntitiesPermissions = ({
|
|
action,
|
|
subject,
|
|
disabled,
|
|
name,
|
|
syncIsCreator,
|
|
}) => {
|
|
const { getValues, formState, resetField } = useFormContext();
|
|
|
|
const fieldName = `${name}.${subject.key}.${action.key}.allEntities`;
|
|
const defaultValue =
|
|
formState.defaultValues?.[name]?.[subject.key]?.[action.key].allEntities;
|
|
const ownEntitiesFieldName = `${name}.${subject.key}.${action.key}.ownEntities`;
|
|
const ownEntitiesFieldTouched =
|
|
formState.touchedFields?.[name]?.[subject.key]?.[action.key]
|
|
?.ownEntities === true;
|
|
|
|
const currentValue = getValues(fieldName);
|
|
|
|
React.useEffect(() => {
|
|
if (currentValue === true) {
|
|
resetField(ownEntitiesFieldName, { defaultValue: true });
|
|
}
|
|
}, [ownEntitiesFieldName, currentValue]);
|
|
|
|
const handleSyncIsCreator = (newValue) => {
|
|
if (syncIsCreator && defaultValue === false && !ownEntitiesFieldTouched) {
|
|
resetField(ownEntitiesFieldName, { defaultValue: newValue });
|
|
}
|
|
|
|
if (newValue === true) {
|
|
resetField(ownEntitiesFieldName, { defaultValue: true });
|
|
}
|
|
};
|
|
|
|
return (
|
|
<ControlledCheckbox
|
|
disabled={disabled}
|
|
name={fieldName}
|
|
dataTest={`${action.key.toLowerCase()}-checkbox`}
|
|
/>
|
|
);
|
|
};
|
|
|
|
AllEntitiesPermissions.propTypes = {
|
|
action: PropTypes.shape({
|
|
key: PropTypes.string.isRequired,
|
|
subjects: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
}),
|
|
subject: PropTypes.shape({
|
|
key: PropTypes.string.isRequired,
|
|
}).isRequired,
|
|
disabled: PropTypes.bool,
|
|
name: PropTypes.string.isRequired,
|
|
syncIsCreator: PropTypes.bool,
|
|
};
|
|
|
|
export default AllEntitiesPermissions;
|