Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import { get } from 'lodash'
import { compose, withHandlers, withProps } from 'recompose'
import {
uploadFile,
deleteFile,
} from 'pubsweet-components-faraday/src/redux/files'
import { onChange, onSubmit, getInitialValues } from './utils'
export default compose(
withHandlers({
addResponseFile: ({ fragment, changeForm }) => file =>
uploadFile({
file,
fragment,
type: 'responseToReviewers',
}).then(f => {
changeForm('revision', 'responseToReviewers.file', f)
}),
deleteFile: ({ changeForm }) => file =>
deleteFile(file.id, 'responseToReviewers').then(r => {
changeForm('revision', 'responseToReviewers.file', null)
}),
}),
withProps(
({
journal,
fragment,
deleteFile,
collection,
currentUser,
getSignedUrl,
addResponseFile,
formValues: { revision },
}) => ({
submitRevision: {
journal,
onChange,
fragment,
onSubmit,
collection,
deleteFile,
currentUser,
getSignedUrl,
addResponseFile,
initialValues: getInitialValues(fragment),
responseFile: get(revision, 'responseToReviewers.file', null),
},
}),
),
)