Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop verify for mrm #359

Merged
merged 25 commits into from
Mar 7, 2024

Conversation

ajit3190
Copy link
Contributor

@ajit3190 ajit3190 commented Feb 7, 2024

No description provided.


const Component = ({ fields, values, locale, displayName, index, collapsedFieldValues, mode }) => {
const currentValues = values[index];
const [selectedIndex, setSelectedIndex] = useState(null);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Group the useState vars together

);
close();
};
const i18n = useI18n();
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Move this hook towards the top of component with other hooks


const Component = ({ fields, values, locale, displayName, index, collapsedFieldValues, mode }) => {
const currentValues = values[index];
const [selectedIndex, setSelectedIndex] = useState(null);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Group the useState vars together

@@ -26,7 +108,57 @@ const Component = ({ fields, values, locale, displayName, index, collapsedFieldV
</div>
}
>
{canVerify && mode.isShow ? (
<Button
onClick={event => handleOpenVerifyModal(index, event)}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Props that are objects, calculated, functions should be in a var and referenced as the value of the prop. Leaving an object in a prop causes unnecessary re-renders. Need to change in a number of places

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i18n.t is fine

<VerifySelect selectedValue={verificationValue} setSelectedValue={setVeficationValue} />
{verificationValue === "verified" ?
<MuiPickersUtilsProvider utils={DateFnsUtils}>
<div style={{ display: "flex", justifyContent: "space-between" }}>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Example of what should be var

value={selectedDate}
onChange={handleDropdownDate}
error={!!validationError}
maxDate={new Date()} // Disable future dates
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These too

value={selectedValue}
onChange={handleChange}
onSel
MenuProps={{
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here

// Define MuiPickersUtilsProvider component
const MuiPickersUtilsProviderComponent = (
<MuiPickersUtilsProvider utils={DateFnsUtils}>
<div style={{ display: "flex", justifyContent: "space-between" }}>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still have some props that are objects. Styles like this can be move into a css file and referenced with the className prop.

onChange={handleDropdownDate}
error={!!validationError}
maxDate={new Date()} // Disable future dates
InputProps={{
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Make value a var

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was this made a variable? Its hard for me to tell

value={selectedValue}
onChange={handleChange}
onSel
MenuProps={{
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Make value a var


return (
<Box sx={{ minWidth: 150 }} >
<FormControl fullWidth classes={{
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Make value of classes a var

horizontal: 'left'
}
}}
classes={{
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Make value a var

}
};

const handleOpenVerifyModal = (index, event) => {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't need index argument here since its declared above. Its causing lint errors

{canVerify && mode.isShow ? (
<Button
onClick={(event) => handleOpenVerifyModal(index, event)}
id={`verify-button-${name}-${index}`}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is name defined somewhere? There is a lint error related to name somewhere

@jtoliver-quoin jtoliver-quoin merged commit b66d188 into primeroIMS:main Mar 7, 2024
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants