-
Notifications
You must be signed in to change notification settings - Fork 62
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
Changes from all commits
e13dea2
afc8484
91f35ae
9c2c519
823a7aa
f980b81
bb73433
8cc6a86
4faa20b
063bce7
d922c37
59cf677
7030702
5383626
346e07f
48b7f52
a0ce68c
9ae4b04
073c618
ce2c8a2
16272b5
eb67ddf
438098a
08ff0d1
d5eda3b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,128 @@ | ||
// Copyright (c) 2014 - 2023 UNICEF. All rights reserved. | ||
|
||
import { useEffect, useState } from "react"; | ||
import { useDispatch } from "react-redux"; | ||
import PropTypes from "prop-types"; | ||
import { ListItemText } from "@material-ui/core"; | ||
import { ListItemText, Button } from "@material-ui/core"; | ||
import { useParams } from "react-router-dom"; | ||
import { KeyboardDatePicker, MuiPickersUtilsProvider } from "@material-ui/pickers"; | ||
import DateFnsUtils from "@date-io/date-fns"; | ||
|
||
import ActionDialog from "../../../../../../action-dialog"; | ||
import ViolationTitle from "../violation-title"; | ||
import css from "../../../styles.css"; | ||
import { saveRecord } from "../../../../../../records"; | ||
import { usePermissions } from "../../../../../../permissions"; | ||
import { RECORD_ACTION_ABILITIES } from "../../../../../../record-actions/constants"; | ||
import { useI18n } from "../../../../../../i18n"; | ||
import { toServerDateFormat } from "../../../../../../../libs"; | ||
|
||
import { NAME } from "./constants"; | ||
import VerifySelect from "./select"; | ||
import { getViolationTallyLabel } from "./utils"; | ||
import { NAME } from "./constants"; | ||
|
||
const Component = ({ fields, values, locale, displayName, index, collapsedFieldValues }) => { | ||
const Component = ({ fields, values, locale, displayName, index, collapsedFieldValues, mode }) => { | ||
const currentValues = values[index]; | ||
const verifyParams = useParams(); | ||
const i18n = useI18n(); | ||
const DATE_FORMAT = "dd-MMM-yyyy"; | ||
|
||
// State variables | ||
const dispatch = useDispatch(); | ||
const [verifyModal, setVerifyModal] = useState(false); | ||
const [verificationValue, setVerificationValue] = useState(currentValues?.ctfmr_verified || ""); | ||
const [selectedDate, setSelectedDate] = useState(new Date()); | ||
const [validationError, setValidationError] = useState(""); | ||
const maxDate = new Date(); | ||
|
||
useEffect(() => { | ||
// Changing dropdown select value when backend data updated | ||
setVerificationValue(currentValues?.ctfmr_verified); | ||
}, [currentValues?.ctfmr_verified]); | ||
|
||
const handleDropdownDate = date => { | ||
if (selectedDate) { | ||
setSelectedDate(date); | ||
} else { | ||
setValidationError("date should not be null"); | ||
setSelectedDate(null); | ||
} | ||
}; | ||
|
||
const handleOpenVerifyModal = (idx, event) => { | ||
// To open verify dialog confirmation popup | ||
event.stopPropagation(); | ||
setVerifyModal(true); | ||
}; | ||
|
||
const cancelVerifyHandler = () => { | ||
// To close verify dialog popup | ||
setVerifyModal(false); | ||
}; | ||
|
||
const { canVerify } = usePermissions("incidents", RECORD_ACTION_ABILITIES); // check permission to verify violations | ||
const violationTally = getViolationTallyLabel(fields, currentValues, locale); | ||
|
||
const handleOk = () => { | ||
// To update the verify status to Verified | ||
|
||
dispatch( | ||
saveRecord( | ||
verifyParams.recordType, | ||
"update", | ||
{ | ||
data: { | ||
[currentValues.type]: [ | ||
{ | ||
unique_id: currentValues.unique_id, | ||
ctfmr_verified: verificationValue, | ||
ctfmr_verified_date: toServerDateFormat(selectedDate) | ||
} | ||
] | ||
} | ||
}, // Save API Call | ||
verifyParams.id, | ||
"Updated successfully", | ||
"", | ||
false, | ||
false | ||
) | ||
); | ||
// close(); | ||
}; | ||
|
||
// Define VerifySelect component | ||
const VerifySelectComponent = ( | ||
<VerifySelect selectedValue={verificationValue} setSelectedValue={setVerificationValue} /> | ||
); | ||
|
||
const keyboardDatePickerInputStyles = { | ||
borderColor: validationError ? "red" : undefined, | ||
marginLeft: "5px" // Add left margin here | ||
}; | ||
|
||
// Define MuiPickersUtilsProvider component | ||
const MuiPickersUtilsProviderComponent = ( | ||
<MuiPickersUtilsProvider utils={DateFnsUtils}> | ||
<div className={css.keyboardDatePickerWrapper}> | ||
<KeyboardDatePicker | ||
variant="inline" | ||
format={DATE_FORMAT} | ||
margin="normal" | ||
id="date-picker-inline" | ||
value={selectedDate} | ||
onChange={handleDropdownDate} | ||
error={!!validationError} | ||
maxDate={maxDate} // Disable future dates | ||
InputProps={{ | ||
style: keyboardDatePickerInputStyles | ||
}} | ||
KeyboardButtonProps={{ | ||
"aria-label": i18n.t("key_performance_indicators.date_range_dialog.aria-labels.from") | ||
}} | ||
/> | ||
</div> | ||
</MuiPickersUtilsProvider> | ||
); | ||
|
||
return ( | ||
<ListItemText | ||
id="subform-header-button" | ||
|
@@ -26,7 +135,32 @@ const Component = ({ fields, values, locale, displayName, index, collapsedFieldV | |
</div> | ||
} | ||
> | ||
{canVerify && mode.isShow ? ( | ||
<Button | ||
onClick={event => handleOpenVerifyModal(index, event)} | ||
id={`verify-button-${index}`} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i18n.t is fine |
||
className={css.verifiedSpan} | ||
color="primary" | ||
variant="contained" | ||
size="small" | ||
disableElevation | ||
> | ||
{i18n.t("incidents.change_status")} | ||
</Button> | ||
) : null} | ||
<ViolationTitle title={displayName?.[locale]} values={currentValues} fields={fields} /> | ||
|
||
<ActionDialog | ||
open={verifyModal} | ||
successHandler={handleOk} | ||
cancelHandler={cancelVerifyHandler} | ||
dialogTitle={i18n.t("incidents.change_status")} | ||
confirmButtonLabel={i18n.t("buttons.update")} | ||
maxSize="xs" | ||
> | ||
{VerifySelectComponent} | ||
{verificationValue === "verified" ? MuiPickersUtilsProviderComponent : null} | ||
</ActionDialog> | ||
</ListItemText> | ||
); | ||
}; | ||
|
@@ -37,6 +171,7 @@ Component.propTypes = { | |
fields: PropTypes.array.isRequired, | ||
index: PropTypes.number.isRequired, | ||
locale: PropTypes.string.isRequired, | ||
mode: PropTypes.object.isRequired, | ||
values: PropTypes.array.isRequired | ||
}; | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import { Box, FormControl, MenuItem, Select } from "@material-ui/core"; | ||
import useOptions from "../../../../../../form/use-options"; | ||
import { LOOKUPS } from "../../../../../../../config"; | ||
import css from "./styles.css" | ||
import PropTypes from "prop-types"; | ||
|
||
const MENU_PROPS = { | ||
getContentAnchorEl: null, | ||
anchorOrigin: { | ||
vertical: "bottom", | ||
horizontal: 'left' | ||
}, | ||
transformOrigin: { | ||
vertical: "top", | ||
horizontal: 'left' | ||
} | ||
} | ||
|
||
const Component = ({ selectedValue, setSelectedValue }) => { | ||
|
||
const verificationStatus = useOptions({ source: LOOKUPS.verification_status }); | ||
|
||
const handleChange = (event) => { // Change dropdown value | ||
setSelectedValue(event.target.value); | ||
}; | ||
|
||
const onSel = true; | ||
|
||
return ( | ||
<Box className={css.selectWrapper}> | ||
<FormControl fullWidth classes={{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Make value of classes a var |
||
root: css.verifyFormControlRoot | ||
}}> | ||
<Select | ||
value={selectedValue} | ||
onChange={handleChange} | ||
onSel={onSel} | ||
MenuProps={MENU_PROPS} | ||
classes={{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Make value a var |
||
root: css.verifySelectComponent, | ||
select: css.verifySelectComponentSelect | ||
}} | ||
variant="outlined" | ||
fullWidth | ||
> | ||
{ | ||
verificationStatus.map((option) => ( | ||
<MenuItem key={option.id} value={option.id} style={{ display: option.id === (selectedValue) ? 'none' : 'block' }}>{option.display_text}</MenuItem> | ||
)) | ||
} | ||
</Select> | ||
</FormControl> | ||
</Box> | ||
); | ||
} | ||
Component.propTypes = { | ||
selectedValue: PropTypes.string, | ||
setSelectedValue: PropTypes.string | ||
}; | ||
|
||
Component.displayName = "VerifySelect"; | ||
|
||
export default Component; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
.verifyFormControlRoot { | ||
padding: 4px; | ||
} | ||
|
||
.verifySelectComponent { | ||
padding: 12px !important; | ||
border-radius: 4px; | ||
border-bottom: none; | ||
} | ||
|
||
.verifySelectComponentSelect, .verifySelectComponentSelect:focus { | ||
border-radius: 4px; | ||
} | ||
|
||
.verifySelectComponent[aria-expanded="true"], .verifySelectComponent:focus { | ||
outline: 4px solid var(--c-light-blue-rgba); | ||
} | ||
|
||
.selectWrapper { | ||
min-width: 150px; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make value a var
There was a problem hiding this comment.
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