Skip to content
Snippets Groups Projects
Commit a39b12f1 authored by Bogdan Cochior's avatar Bogdan Cochior
Browse files

feat(HE): add button for HE in heAssigned status

parent 5c32f1b3
No related branches found
No related tags found
2 merge requests!34Sprint 17 features,!24feat(HE): add button for HE in heAssigned status
......@@ -7,10 +7,12 @@ export const isHEToManuscript = (state, collectionId) => {
return get(collection, 'handlingEditor.id') === currentUserId
}
const canMakeRecommendationStatuses = ['reviewCompleted', 'heAssigned']
export const canMakeRecommendation = (state, collection, fragment = {}) => {
if (fragment.id !== last(collection.fragments)) return false
const isHE = isHEToManuscript(state, collection.id)
return isHE && get(collection, 'status') === 'reviewCompleted'
const status = get(collection, 'status')
return isHE && canMakeRecommendationStatuses.includes(status)
}
export const currentUserIs = ({ currentUser: { user } }, role) => {
......
......@@ -24,6 +24,7 @@ import {
import { AuthorList, Files } from 'pubsweet-components-faraday/src/components'
import { submitRevision } from 'pubsweet-component-wizard/src/redux/conversion'
import AutosaveIndicator from 'pubsweet-component-wizard/src/components/AutosaveIndicator'
import { selectReviewRecommendations } from 'pubsweet-components-faraday/src/redux/recommendations'
import {
toClass,
compose,
......@@ -60,6 +61,7 @@ const SubmitRevision = ({
removeFile,
handleSubmit,
responseFiles,
reviews = [],
submitFailed,
}) => (
<Root>
......@@ -108,39 +110,41 @@ const SubmitRevision = ({
/>
</CustomValidatedField>
</Expandable>
<Expandable label="RESPONSE TO REVIEWER COMMENTS" startExpanded>
<Title>Reply text*</Title>
<Row>
<FullWidth className="full-width">
<ValidatedField
component={TextAreaField}
name="commentsToReviewers"
validate={
isEmpty(get(formValues, 'files.responseToReviewers'))
? [required]
: []
}
/>
</FullWidth>
</Row>
<Row left>
{responseFiles.map(file => (
<FileItem
compact
id={file.id}
key={file.id}
{...file}
removeFile={removeFile}
/>
))}
</Row>
<FilePicker
allowedFileExtensions={['pdf', 'doc', 'docx']}
onUpload={addFile}
>
<ActionText left={12}>Upload file</ActionText>
</FilePicker>
</Expandable>
{!isEmpty(reviews) && (
<Expandable label="RESPONSE TO REVIEWER COMMENTS" startExpanded>
<Title>Reply text*</Title>
<Row>
<FullWidth className="full-width">
<ValidatedField
component={TextAreaField}
name="commentsToReviewers"
validate={
isEmpty(get(formValues, 'files.responseToReviewers'))
? [required]
: []
}
/>
</FullWidth>
</Row>
<Row left>
{responseFiles.map(file => (
<FileItem
compact
id={file.id}
key={file.id}
{...file}
removeFile={removeFile}
/>
))}
</Row>
<FilePicker
allowedFileExtensions={['pdf', 'doc', 'docx']}
onUpload={addFile}
>
<ActionText left={12}>Upload file</ActionText>
</FilePicker>
</Expandable>
)}
<SubmitContainer>
{submitFailed &&
formError && <Error>There are some errors above.</Error>}
......@@ -169,8 +173,9 @@ export default compose(
modalComponent: ConfirmationModal,
})),
connect(
state => ({
(state, { version }) => ({
fileFetching: getRequestStatus(state),
reviews: selectReviewRecommendations(state, version.id),
formValues: getFormValues('revision')(state),
formError: getFormSyncErrors('revision')(state),
}),
......
......@@ -74,6 +74,7 @@ const DashboardCard = ({
collectionId={project.id}
fragmentId={version.id}
modalKey={`recommend-${version.id}`}
status={project.status}
/>
)}
<ZipFiles
......
......@@ -30,12 +30,14 @@ export default compose(
})),
withHandlers({
showFirstStep: ({
status,
showModal,
hideModal,
fragmentId,
collectionId,
}) => () => {
showModal({
status,
hideModal,
fragmentId,
collectionId,
......
......@@ -7,7 +7,7 @@ import { FormItems } from '../UIComponents'
const { Row, Title, RowItem, RootContainer, CustomRadioGroup } = FormItems
const StepOne = ({ hideModal, disabled, onSubmit }) => (
const StepOne = ({ hideModal, disabled, onSubmit, status }) => (
<RootContainer>
<Title>Recommendation for Next Phase</Title>
<Row>
......@@ -20,7 +20,11 @@ const StepOne = ({ hideModal, disabled, onSubmit }) => (
>
<RadioGroup
name="decision"
options={utils.recommendationOptions}
options={
status === 'reviewCompleted'
? utils.recommendationOptions
: utils.recommendationOptions.slice(1)
}
{...input}
/>
</CustomRadioGroup>
......
import { omit } from 'lodash'
export const recommendationOptions = [
{ value: 'reject', label: 'Reject' },
{ value: 'publish', label: 'Publish' },
{ value: 'reject', label: 'Reject' },
{ value: 'revise', label: 'Request revision' },
]
......
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