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

feat(handling-editor-response): add fetching functionality and change some wording

parent 20060352
No related branches found
No related tags found
1 merge request!43Sprint #19
import React from 'react' import React from 'react'
import { get, has } from 'lodash'
import { reduxForm } from 'redux-form' import { reduxForm } from 'redux-form'
import { get, has, capitalize } from 'lodash'
import { compose, withProps } from 'recompose' import { compose, withProps } from 'recompose'
import { Button, RadioGroup, ValidatedField } from '@pubsweet/ui' import { Button, RadioGroup, ValidatedField } from '@pubsweet/ui'
...@@ -13,6 +13,7 @@ import { ...@@ -13,6 +13,7 @@ import {
OpenModal, OpenModal,
ContextualBox, ContextualBox,
RowOverrideAlert, RowOverrideAlert,
withFetching,
} from '../' } from '../'
const options = [ const options = [
...@@ -22,6 +23,8 @@ const options = [ ...@@ -22,6 +23,8 @@ const options = [
const HandlingEditorAnswer = ({ const HandlingEditorAnswer = ({
disabled, disabled,
decision,
isFetching,
handleSubmit, handleSubmit,
shouldShowComments, shouldShowComments,
}) => ( }) => (
...@@ -56,8 +59,11 @@ const HandlingEditorAnswer = ({ ...@@ -56,8 +59,11 @@ const HandlingEditorAnswer = ({
<Row justify="flex-end" mb={1} pr={1}> <Row justify="flex-end" mb={1} pr={1}>
<OpenModal <OpenModal
cancelText="Close"
confirmText={decision}
isFetching={isFetching}
onConfirm={modalProps => handleSubmit()(modalProps)} onConfirm={modalProps => handleSubmit()(modalProps)}
title="Are you sure?" title={`${decision} this invitation?`}
> >
{showModal => ( {showModal => (
<Button disabled={disabled} onClick={showModal} primary size="medium"> <Button disabled={disabled} onClick={showModal} primary size="medium">
...@@ -70,14 +76,16 @@ const HandlingEditorAnswer = ({ ...@@ -70,14 +76,16 @@ const HandlingEditorAnswer = ({
) )
export default compose( export default compose(
withFetching,
withProps(({ formValues }) => ({ withProps(({ formValues }) => ({
disabled: !has(formValues, 'decision'), disabled: !has(formValues, 'decision'),
decision: capitalize(get(formValues, 'decision')),
shouldShowComments: get(formValues, 'decision', 'agree') === 'decline', shouldShowComments: get(formValues, 'decision', 'agree') === 'decline',
})), })),
reduxForm({ reduxForm({
form: 'he-answer-invitation', form: 'he-answer-invitation',
onSubmit: (values, dispatch, { onResponse }) => modalProps => { onSubmit: (values, dispatch, { onResponse, setFetching }) => modalProps => {
onResponse(values, modalProps) onResponse(values, { ...modalProps, setFetching })
}, },
}), }),
)(HandlingEditorAnswer) )(HandlingEditorAnswer)
...@@ -3,13 +3,12 @@ Handling Editor answer invitation. ...@@ -3,13 +3,12 @@ Handling Editor answer invitation.
```js ```js
const formValues = { const formValues = {
decision: 'decline', decision: 'decline',
}; }
<HandlingEditorAnswer ;<HandlingEditorAnswer
formValues={formValues} formValues={formValues}
onResponse={(values, modalProps) => { onResponse={(values, { setFetching }) => {
console.log('se da surmit', values, modalProps) setFetching(true)
modalProps.setModalError('bine coite')
}} }}
/> />
``` ```
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