Skip to content
Snippets Groups Projects
Commit cd03a080 authored by Marte Fossum's avatar Marte Fossum
Browse files

GREG-341: Add access to edit comment and contact person

parent cdef42c9
No related branches found
No related tags found
1 merge request!399GREG-341: Add access to edit comment and contact person
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
"consentInfoHead": "Consent information", "consentInfoHead": "Consent information",
"choiceDate": "Choice date", "choiceDate": "Choice date",
"consentName": "Consent type", "consentName": "Consent type",
"periodChanged": "Period changed", "roleChanged": "Role information changed",
"invitationCancelled": "The invitation to {{name}} cancelled", "invitationCancelled": "The invitation to {{name}} cancelled",
"registeredInfo": "Registererd information on you", "registeredInfo": "Registererd information on you",
"registeredInfoExplanation": "Here is the contact information, roles and consent information that is registered on you.", "registeredInfoExplanation": "Here is the contact information, roles and consent information that is registered on you.",
...@@ -204,7 +204,7 @@ ...@@ -204,7 +204,7 @@
}, },
"error": { "error": {
"error": "Error", "error": "Error",
"changePeriodFailed": "Failed to change period", "changeRoleFailed": "Failed to change role information",
"invitationCancelFailed": "Failed to cancel invite", "invitationCancelFailed": "Failed to cancel invite",
"invitationCreationFailedHeader": "Failed to create invite", "invitationCreationFailedHeader": "Failed to create invite",
"errorStatusCode": "Status code: {{statusCode}} (<3>{{statusText}}</3>)", "errorStatusCode": "Status code: {{statusCode}} (<3>{{statusText}}</3>)",
......
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
"consentInfoHead": "Samtykkeinformasjon", "consentInfoHead": "Samtykkeinformasjon",
"choiceDate": "Valgdato", "choiceDate": "Valgdato",
"consentName": "Samtykketype", "consentName": "Samtykketype",
"periodChanged": "Rolleperiode endret", "roleChanged": "Rolleinformasjon endret",
"invitationCancelled": "Invitasjonen til {{name}} kansellert", "invitationCancelled": "Invitasjonen til {{name}} kansellert",
"registeredInfo": "Registrert informasjon om deg", "registeredInfo": "Registrert informasjon om deg",
"registeredInfoExplanation": "Her er en oversikt over kontaktinformasjon, roller og samtykker som er registrert om deg.", "registeredInfoExplanation": "Her er en oversikt over kontaktinformasjon, roller og samtykker som er registrert om deg.",
...@@ -204,7 +204,7 @@ ...@@ -204,7 +204,7 @@
}, },
"error": { "error": {
"error": "Feil", "error": "Feil",
"changePeriodFailed": "Kunne ikke endre periode", "changeRoleFailed": "Kunne ikke endre rolleinformasjon.",
"invitationCancelFailed": "Kunne ikke kansellere invitasjon", "invitationCancelFailed": "Kunne ikke kansellere invitasjon",
"invitationCreationFailedHeader": "Kunne ikke opprette invitasjon", "invitationCreationFailedHeader": "Kunne ikke opprette invitasjon",
"errorStatusCode": "Statuskode: {{statusCode}} (<3>{{statusText}}</3>)", "errorStatusCode": "Statuskode: {{statusCode}} (<3>{{statusText}}</3>)",
......
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
"consentInfoHead": "Samtykkeinformasjon", "consentInfoHead": "Samtykkeinformasjon",
"choiceDate": "Valdato", "choiceDate": "Valdato",
"consentName": "Samtykketype", "consentName": "Samtykketype",
"periodChanged": "Rolleperiode endra", "roleChanged": "Rolleinformasjon endra",
"invitationCancelled": "Invitasjonen til {{name}} kansellert", "invitationCancelled": "Invitasjonen til {{name}} kansellert",
"registeredInfo": "Registrert informasjon om deg", "registeredInfo": "Registrert informasjon om deg",
"registeredInfoExplanation": "Her er ei oversikt over kontaktinformasjon, roller og samtykke som er registrert om deg.", "registeredInfoExplanation": "Her er ei oversikt over kontaktinformasjon, roller og samtykke som er registrert om deg.",
...@@ -204,7 +204,7 @@ ...@@ -204,7 +204,7 @@
}, },
"error": { "error": {
"error": "Feil", "error": "Feil",
"changePeriodFailed": "Kunne ikkje endre periode", "changeRoleFailed": "Kunne ikkje endre rolleinformasjon",
"invitationCancelFailed": "Kunne ikkje kansellere invitasjon", "invitationCancelFailed": "Kunne ikkje kansellere invitasjon",
"invitationCreationFailedHeader": "Kunne ikkje opprette invitasjon", "invitationCreationFailedHeader": "Kunne ikkje opprette invitasjon",
"errorStatusCode": "Statuskode: {{statusCode}} (<3>{{statusText}}</3>)", "errorStatusCode": "Statuskode: {{statusCode}} (<3>{{statusText}}</3>)",
......
...@@ -69,6 +69,8 @@ type GuestRoleInfoParams = { ...@@ -69,6 +69,8 @@ type GuestRoleInfoParams = {
type RoleFormData = { type RoleFormData = {
start_date: Date start_date: Date
end_date: Date end_date: Date
comments: string
contact_person_unit: string
} }
const TableHeadCell = styled(TableCellMui)({ const TableHeadCell = styled(TableCellMui)({
fontWeight: 'bold', fontWeight: 'bold',
...@@ -120,8 +122,8 @@ export default function GuestRoleInfo({ ...@@ -120,8 +122,8 @@ export default function GuestRoleInfo({
const [t, i18n] = useTranslation('common') const [t, i18n] = useTranslation('common')
const { displayContactAtUnit, displayComment } = useFeatureContext() const { displayContactAtUnit, displayComment } = useFeatureContext()
const navigate = useNavigate() const navigate = useNavigate()
const [showPeriodChange, setShowPeriodChange] = useState<Boolean>(false) const [showRoleChange, setShowRoleChange] = useState<Boolean>(false)
const [showPeriodChangeFailed, setShowPeriodChangeFailed] = const [showRoleChangeFailed, setShowRoleChangeFailed] =
useState<Boolean>(false) useState<Boolean>(false)
const [badEndDate, setBadEndDate] = useState<Boolean>(false) const [badEndDate, setBadEndDate] = useState<Boolean>(false)
const [role, setRole] = useState<Role>({ const [role, setRole] = useState<Role>({
...@@ -150,8 +152,8 @@ export default function GuestRoleInfo({ ...@@ -150,8 +152,8 @@ export default function GuestRoleInfo({
const newEndDate = addDays(-1)(today) const newEndDate = addDays(-1)(today)
if (role.start_date !== undefined && role.start_date > newEndDate) { if (role.start_date !== undefined && role.start_date > newEndDate) {
setBadEndDate(true) setBadEndDate(true)
setShowPeriodChange(false) setShowRoleChange(false)
setShowPeriodChangeFailed(false) setShowRoleChangeFailed(false)
} else { } else {
role.end_date = newEndDate role.end_date = newEndDate
endPeriodPost(role_id, { end_date: newEndDate }, reloadGuests) endPeriodPost(role_id, { end_date: newEndDate }, reloadGuests)
...@@ -166,6 +168,7 @@ export default function GuestRoleInfo({ ...@@ -166,6 +168,7 @@ export default function GuestRoleInfo({
} }
const { const {
register,
control, control,
handleSubmit, handleSubmit,
setValue, setValue,
...@@ -182,9 +185,16 @@ export default function GuestRoleInfo({ ...@@ -182,9 +185,16 @@ export default function GuestRoleInfo({
// Submit function for the save button // Submit function for the save button
const submit: SubmitHandler<RoleFormData> = (data) => { const submit: SubmitHandler<RoleFormData> = (data) => {
const payload: { start_date?: string; end_date: string } = { const payload: {
start_date?: string
end_date: string
contact_person_unit?: string
comments?: string
} = {
end_date: format(data.end_date as Date, 'yyyy-MM-dd'), end_date: format(data.end_date as Date, 'yyyy-MM-dd'),
start_date: format(data.start_date as Date, 'yyyy-MM-dd'), start_date: format(data.start_date as Date, 'yyyy-MM-dd'),
contact_person_unit: data.contact_person_unit,
comments: data.comments,
} }
console.log('submitting', JSON.stringify(payload)) console.log('submitting', JSON.stringify(payload))
...@@ -197,13 +207,13 @@ export default function GuestRoleInfo({ ...@@ -197,13 +207,13 @@ export default function GuestRoleInfo({
}) })
.then((result) => { .then((result) => {
if (result !== null) { if (result !== null) {
setShowPeriodChange(true) setShowRoleChange(true)
setBadEndDate(false) setBadEndDate(false)
setShowPeriodChangeFailed(false) setShowRoleChangeFailed(false)
console.log('result', result) console.log('result', result)
} else { } else {
setShowPeriodChangeFailed(true) setShowRoleChangeFailed(true)
setShowPeriodChange(false) setShowRoleChange(false)
setBadEndDate(false) setBadEndDate(false)
} }
// Reload the guest so that the information on the overview page is updated // Reload the guest so that the information on the overview page is updated
...@@ -214,7 +224,7 @@ export default function GuestRoleInfo({ ...@@ -214,7 +224,7 @@ export default function GuestRoleInfo({
reset(data) reset(data)
}) })
.catch((error) => { .catch((error) => {
setShowPeriodChangeFailed(true) setShowRoleChangeFailed(true)
console.log('error', error) console.log('error', error)
}) })
} }
...@@ -256,14 +266,14 @@ export default function GuestRoleInfo({ ...@@ -256,14 +266,14 @@ export default function GuestRoleInfo({
</Typography> </Typography>
</> </>
)} )}
{showPeriodChange && ( {showRoleChange && (
<Alert severity="success" sx={{ marginBottom: '1rem' }}> <Alert severity="success" sx={{ marginBottom: '1rem' }}>
{t('guestInfo.periodChanged')} {t('guestInfo.roleChanged')}
</Alert> </Alert>
)} )}
{showPeriodChangeFailed && ( {showRoleChangeFailed && (
<Alert severity="error" sx={{ marginBottom: '1rem' }}> <Alert severity="error" sx={{ marginBottom: '1rem' }}>
{t('error.changePeriodFailed')} {t('error.changeRoleFailed')}
</Alert> </Alert>
)} )}
{badEndDate && ( {badEndDate && (
...@@ -348,7 +358,39 @@ export default function GuestRoleInfo({ ...@@ -348,7 +358,39 @@ export default function GuestRoleInfo({
<TableCell align="left">{role.sponsor_name}</TableCell> <TableCell align="left">{role.sponsor_name}</TableCell>
<TableCell align="left" /> <TableCell align="left" />
</TableRow> </TableRow>
{displayContactAtUnit && ( {allowEdit && displayContactAtUnit && (
<TableRow>
<TableCell align="left" sx={{ fontWeight: 'bold' }}>
{t('sponsor.contactPerson')}
</TableCell>
<TableCell>
<TextField
id="contact_person"
defaultValue={role.contact_person_unit}
label={`${t('input.contactPersonUnit')}`}
{...register(`contact_person_unit`)}
/>
</TableCell>
</TableRow>
)}
{allowEdit && displayComment && (
<TableRow>
<TableCell align="left" sx={{ fontWeight: 'bold' }}>
{t('input.comment')}
</TableCell>
<TableCell>
<TextField
id="comment"
label={`${t('input.comment')}`}
multiline
rows={2}
defaultValue={role.comments}
{...register(`comments`)}
/>
</TableCell>
</TableRow>
)}
{!allowEdit && displayContactAtUnit && (
<TableRow> <TableRow>
<TableCell align="left" sx={{ fontWeight: 'bold' }}> <TableCell align="left" sx={{ fontWeight: 'bold' }}>
{t('sponsor.contactPerson')} {t('sponsor.contactPerson')}
...@@ -357,7 +399,7 @@ export default function GuestRoleInfo({ ...@@ -357,7 +399,7 @@ export default function GuestRoleInfo({
<TableCell align="left" /> <TableCell align="left" />
</TableRow> </TableRow>
)} )}
{displayComment && ( {!allowEdit && displayComment && (
<TableRow> <TableRow>
<TableCell align="left" sx={{ fontWeight: 'bold' }}> <TableCell align="left" sx={{ fontWeight: 'bold' }}>
{t('input.comment')} {t('input.comment')}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment