Skip to content
Snippets Groups Projects
Commit 2de114fb authored by Alexandru Munteanu's avatar Alexandru Munteanu
Browse files

feat(submission-flow): correctly set corresponding author

parent 27c56d44
No related branches found
No related tags found
1 merge request!43Sprint #19
Preview file in browser if possible Preview file in browser if possible
```js ```js
const file = {}; const file = {
name: 'cocojambo.pdf'
};
<PreviewFile file={file} /> <PreviewFile file={file} />
``` ```
import React, { Fragment } from 'react' import React, { Fragment } from 'react'
import { omit } from 'lodash'
import styled from 'styled-components' import styled from 'styled-components'
import { omit, isBoolean } from 'lodash'
import { th } from '@pubsweet/ui-toolkit' import { th } from '@pubsweet/ui-toolkit'
import { compose, withState, withHandlers } from 'recompose' import { compose, withState, withHandlers } from 'recompose'
...@@ -15,6 +15,27 @@ import { ...@@ -15,6 +15,27 @@ import {
SortableList, SortableList,
} from './' } from './'
const castToBool = author => ({
...author,
isCorresponding: isBoolean(author.isCorresponding) && author.isCorresponding,
})
const parseEditedAuthors = (editedAuthor, authors) => {
const newAuthor = castToBool(editedAuthor)
return authors.map(
a =>
a.id === newAuthor.id
? newAuthor
: {
...a,
isCorresponding: newAuthor.isCorresponding
? false
: a.isCorresponding,
},
)
}
const WizardAuthors = ({ const WizardAuthors = ({
error, error,
moveAuthor, moveAuthor,
...@@ -94,9 +115,8 @@ export default compose( ...@@ -94,9 +115,8 @@ export default compose(
setFormAuthors([...authors.filter(a => a.id !== 'newAuthor'), author]) setFormAuthors([...authors.filter(a => a.id !== 'newAuthor'), author])
}, },
editExistingAuthor: ({ authors, setFormAuthors }) => editedAuthor => { editExistingAuthor: ({ authors, setFormAuthors }) => editedAuthor => {
setFormAuthors( const newAuthors = parseEditedAuthors(editedAuthor, authors)
authors.map(a => (a.id === editedAuthor.id ? editedAuthor : a)), setFormAuthors(newAuthors)
)
}, },
}), }),
withHandlers({ withHandlers({
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment