Skip to content
Snippets Groups Projects
Commit c5f10a4e authored by Andrei Cioromila's avatar Andrei Cioromila
Browse files

Merge branch 'HIN-1066' of gitlab.coko.foundation:xpub/xpub-faraday into HIN-1066

parents ceda0de4 9d9b8308
No related branches found
No related tags found
2 merge requests!136Sprint 22 features (updates),!125HIN-1066
......@@ -78,7 +78,7 @@ const Root = styled.div`
${marginHelper};
${paddingHelper};
height: max-content;
height: ${props => (props.height ? `${props.height}px` : 'max-content')};
width: max-content;
& span {
......
......@@ -24,6 +24,7 @@ import { OpenModal } from './modals'
const ManuscriptCard = ({
onDelete,
canDelete,
isFetching,
onCardClick,
canViewReports,
fragment = {},
......@@ -87,16 +88,17 @@ const ManuscriptCard = ({
<Item justify="flex-end" onClick={e => e.stopPropagation()}>
<OpenModal
confirmText="Delete"
isFetching={isFetching}
modalKey={`delete-${collId}`}
onConfirm={onDelete}
title="Are you sure you want to delete this submission?"
>
{onClickEvent => (
{showModal => (
<ActionLink
height={16}
icon="trash"
onClick={onClickEvent}
onClick={showModal}
size="small"
style={{ height: 16 }}
>
Delete
</ActionLink>
......
......@@ -90,6 +90,4 @@ const Root = styled.div`
padding: calc(${th('gridUnit')} * 2);
`
export default reduxForm({ form: 'revision', destroyOnUnmount: false })(
SubmitRevision,
)
export default reduxForm({ form: 'revision' })(SubmitRevision)
......@@ -4,12 +4,13 @@ import { compose, withProps } from 'recompose'
import { DashboardItems, DashboardFilters } from './'
const Dashboard = ({
deleteProject,
journal,
isFetching,
dashboardItems,
deleteCollection,
getFilterOptions,
changeFilterValue,
getDefaultFilterValue,
journal,
}) => (
<Fragment>
<DashboardFilters
......@@ -17,7 +18,11 @@ const Dashboard = ({
getDefaultFilterValue={getDefaultFilterValue}
getFilterOptions={getFilterOptions}
/>
<DashboardItems deleteProject={deleteProject} list={dashboardItems} />
<DashboardItems
deleteCollection={deleteCollection}
isFetching={isFetching}
list={dashboardItems}
/>
</Fragment>
)
......
......@@ -5,9 +5,9 @@ import { connect } from 'react-redux'
import styled from 'styled-components'
import { th } from '@pubsweet/ui-toolkit'
import { withRouter } from 'react-router-dom'
import { compose, setDisplayName, withHandlers, withProps } from 'recompose'
import { ManuscriptCard, Row } from 'pubsweet-component-faraday-ui'
import { canViewReports } from 'pubsweet-component-faraday-selectors'
import { compose, setDisplayName, withHandlers, withProps } from 'recompose'
const DashboardItem = compose(
connect((state, { collection }) => ({
......@@ -18,7 +18,13 @@ const DashboardItem = compose(
})),
)(ManuscriptCard)
const DashboardItems = ({ list, onClick, deleteProject, canViewReports }) => (
const DashboardItems = ({
list,
onClick,
isFetching,
canViewReports,
deleteCollection,
}) => (
<Root data-test-id="dashboard-list-items">
{!list.length ? (
<Row justify="center" mt={4}>
......@@ -29,9 +35,10 @@ const DashboardItems = ({ list, onClick, deleteProject, canViewReports }) => (
<HideLoading key={collection.id}>
<DashboardItem
collection={collection}
isFetching={isFetching}
key={collection.id}
onClick={onClick}
onDelete={() => deleteProject(collection)}
onDelete={deleteCollection(collection)}
/>
</HideLoading>
))
......
......@@ -4,8 +4,9 @@ import { actions } from 'pubsweet-client'
import { withJournal } from 'xpub-journal'
import { ConnectPage } from 'xpub-connect'
import { withRouter } from 'react-router-dom'
import { compose, withContext } from 'recompose'
import { selectCurrentUser } from 'xpub-selectors'
import { compose, withHandlers, withContext } from 'recompose'
import { handleError, withFetching } from 'pubsweet-component-faraday-ui'
import {
getUserPermissions,
......@@ -32,13 +33,13 @@ export default compose(
userPermissions,
}
},
dispatch => ({
deleteProject: collection =>
dispatch(actions.deleteCollection(collection)),
}),
{
deleteCollection: actions.deleteCollection,
},
),
withRouter,
withJournal,
withFetching,
withFiltersHOC({
priority: priorityFilter,
order: orderFilter,
......@@ -50,4 +51,23 @@ export default compose(
},
({ journal, currentUser }) => ({ journal, currentUser }),
),
withHandlers({
deleteCollection: ({ setFetching, deleteCollection }) => collection => ({
hideModal,
setModalError,
}) => {
setFetching(true)
deleteCollection(collection)
.then(() => {
setFetching(false)
hideModal()
})
// again, the error is not being thrown from deleteCollection action and
// the catch is never run
.catch(err => {
setFetching(false)
handleError(setModalError)(err)
})
},
}),
)(Dashboard)
......@@ -4,7 +4,6 @@ import { reduxForm } from 'redux-form'
import { get, isUndefined } from 'lodash'
import { required as requiredValidator } from 'xpub-validators'
import { Menu, Button, Checkbox, TextField, ValidatedField } from '@pubsweet/ui'
import styled from 'styled-components'
import {
Row,
......@@ -27,9 +26,6 @@ const AgreeCheckbox = ({ value, onChange }) => (
</Text>
</Row>
)
const ValidationRow = styled(Row)`
justify-content: left;
`
const Step0 = ({
type,
......@@ -102,13 +98,13 @@ const Step0 = ({
</Item>
</Row>
<ValidationRow data-test-id="sign-up-agree-TC" mb={2}>
<Row data-test-id="sign-up-agree-TC" justify="flex-start" mb={2}>
<ValidatedField
component={AgreeCheckbox}
name="agreeTC"
validate={[requiredValidator]}
/>
</ValidationRow>
</Row>
<Row>
<Text secondary small>
......@@ -127,6 +123,7 @@ const Step0 = ({
data-test-id="sign-up-proceed-to-set-email-and-password"
mt={4}
onClick={handleSubmit}
primary
>
PROCEED TO SET {type === 'signup' && 'EMAIL AND'} PASSWORD
</Button>
......
......@@ -99,7 +99,7 @@ const Step1 = ({
{type === 'forgotPassword' && <ForgotEmailForm />}
{type === 'invite' && <InviteForm />}
{error && (
<Row justify="flex-start" mb={1}>
<Row justify="flex-start" mb={2}>
<Text error>{error}</Text>
</Row>
)}
......
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