Skip to content
Snippets Groups Projects
Commit 16b386c0 authored by Mihail Hagiu's avatar Mihail Hagiu
Browse files

docs(InviteHandlingEditor+InviteReviewer): Changed prop list to table and...

docs(InviteHandlingEditor+InviteReviewer): Changed prop list to table and renamed files to README.md
parent fc87c773
No related branches found
No related tags found
3 merge requests!222Sprint #26,!217Sprint #26,!191Hin 1116 documentation
## Hindawi Handling Editor Invite HOC.
Injects `assignHE`, `revokeHE` and `onHEResponse` handlers as props.
### withInviteHandlingEditor props
`inviteHandlingEditor` namespace contains the following fields:
Name|Type|Description
---|---|---
assignHE |`(email, modalProps) => any`|sends an invitation to the handling editor
revokeHE |`(invitationId, modalProps) => any`|revokes a sent invitation to the handling editor
onHEResponse |`(reduxFormValues, modalProps) => any`|handles the handling editor's response
_Note: The functions must be used withing a modal_
```javascript
const EditorInChiefPanel = ({ assignHE, revokeHE }) => (
<Modal>
<span>Handlin d'Editor</span>
<button onClick={() => assignHE(email, { ...modalProps, setFetching })}>
Resend Invitation
</button>
<button
onClick={() => revokeHE(invitationId, { ...modalProps, setFetching })}
>
Cancel Invitation
</button>
</Modal>
)
const HandlingEditorPanel = ({ onHeResponse }) => (
<Modal>
<span>Accept invitation?</span>
<button
onClick={() => onHeResponse(reduxFormValues, { ...modalProps, setFetching })}
>
Yes
</button>
<button
onClick={() => onHeResponse(reduxFormValues, { ...modalProps, setFetching })}
>
No
</button>
</Modal>
)
```
## Hindawi Handling Editor Invite HOC.
Injects `assignHE`, `revokeHE` and `onHEResponse` handlers as props.
### withInviteHandlingEditor props
* `inviteHandlingEditor: object`: namespace containing the following fields:
* `assignHE: function`: sends an invitation to the handling editor.
* `revokeHE: function`: revokes a sent invitation to the handling editor.
* `onHeResponse: function`: handles the handling editor's response.
```javascript
const EditorInChiefPanel = ({ assignHE, revokeHE }) => (
<Modal>
<span>Handlin d'Editor</span>
<button onClick={() => assignHE(email, {...modalProps, setFetching})}>Resend Invitation</button>
<button onClick={() => revokeHE(invitationId, {...modalProps, setFetching})}>Cancel Invitation</button>
</Modal>
)
const HandlingEditorPanel = ({ onHeResponse }) => (
<Modal>
<span>Accept invitation?</span>
<button onClick={() => onHeResponse(values, {...modalProps, setFetching})}>Yes</button>
<button onClick={() => onHeResponse(values, {...modalProps, setFetching})}>No</button>
</Modal>
)
```
...@@ -4,12 +4,16 @@ Injects `onInviteReviewer`, `onInvitePublonReviewer`, `onResendInviteReviewer`, ...@@ -4,12 +4,16 @@ Injects `onInviteReviewer`, `onInvitePublonReviewer`, `onResendInviteReviewer`,
### withInviteReviewer props ### withInviteReviewer props
* `inviteReviewer: object`: namespace containing the following fields: `inviteReviewer` namespace contains the following fields:
* `onInviteReviewer: function`: sends an invitation to the reviewer. Name|Type|Description
* `onInvitePublonReviewer: function`: sends an invitation to a Publon reviewer. ---|---|---
* `onResendInviteReviewer: function`: resends an invitation to an already invited reviewer. onInviteReviewer|`(reduxFormValues, modalProps) => any`|sends an invitation to the reviewer
* `onRevokeInviteReviewer: function`: cancels an invitation to an invited reviewer. onInvitePublonReviewer|`(reduxFormValues, modalProps) => any`|sends an invitation to a Publon reviewer
* `onReviewerResponse: function`: handles the reviewer response to the invitation. onResendInviteReviewer|`(email, modalProps) => any`|resends an invitation to an already invited reviewer
onRevokeInviteReviewer|`(invitationId, modalProps) => any`|cancels an invitation to an invited reviewer
onReviewerResponse|`(reduxFormValues, modalProps) => any`|handles the reviewer response to the invitation
_Note: The functions must be used withing a modal_
```javascript ```javascript
const InviteReviewer = ({ const InviteReviewer = ({
...@@ -62,12 +66,16 @@ const Invitation = ({ onReviewerResponse }) => ( ...@@ -62,12 +66,16 @@ const Invitation = ({ onReviewerResponse }) => (
<Modal> <Modal>
<span>Accept invitation?</span> <span>Accept invitation?</span>
<button <button
onClick={() => onReviewerResponse(values, { ...modalProps, setFetching })} onClick={() =>
onReviewerResponse(reduxFormValues, { ...modalProps, setFetching })
}
> >
Yes Yes
</button> </button>
<button <button
onClick={() => onReviewerResponse(values, { ...modalProps, setFetching })} onClick={() =>
onReviewerResponse(reduxFormValues, { ...modalProps, setFetching })
}
> >
No No
</button> </button>
......
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