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

chore(dashboard): various improvements

parent 84d79b63
No related branches found
No related tags found
1 merge request!10Sprint #12
Showing
with 108 additions and 122 deletions
import React from 'react' import React from 'react'
import { required } from 'xpub-validators' import { required } from 'xpub-validators'
import styled, { withTheme, css } from 'styled-components' import styled, { css } from 'styled-components'
import { TextField, Menu, ValidatedField, Icon } from '@pubsweet/ui' import { TextField, Menu, ValidatedField, Icon, th } from '@pubsweet/ui'
export const ValidatedTextField = ({ export const ValidatedTextField = ({
label, label,
...@@ -36,21 +36,21 @@ export const Label = ({ label, value }) => ( ...@@ -36,21 +36,21 @@ export const Label = ({ label, value }) => (
</LabelRoot> </LabelRoot>
) )
export const DragHandle = withTheme(({ theme }) => ( export const DragHandle = () => (
<DragHandleRoot> <DragHandleRoot>
<Icon color={theme.colorPrimary}>chevron_up</Icon> <Icon primary>chevron_up</Icon>
<Icon color={theme.colorPrimary} size={3}> <Icon primary size={3}>
menu menu
</Icon> </Icon>
<Icon color={theme.colorPrimary}>chevron_down</Icon> <Icon primary>chevron_down</Icon>
</DragHandleRoot> </DragHandleRoot>
)) )
// #region styled-components // #region styled-components
const defaultText = css` const defaultText = css`
color: ${({ theme }) => theme.colorText}; color: ${th('colorText')};
font-size: ${({ theme }) => theme.fontSizeBaseSmall}; font-size: ${th('fontSizeBaseSmall')};
font-family: ${({ theme }) => theme.fontReading}; font-family: ${th('fontReading')};
` `
const ValidatedTextFieldRoot = styled.div` const ValidatedTextFieldRoot = styled.div`
...@@ -70,7 +70,7 @@ const StyledLabel = styled.span` ...@@ -70,7 +70,7 @@ const StyledLabel = styled.span`
const DragHandleRoot = styled.div` const DragHandleRoot = styled.div`
align-items: center; align-items: center;
border-right: ${({ theme }) => theme.borderDefault}; border-right: ${th('borderDefault')};
cursor: move; cursor: move;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
...@@ -81,7 +81,7 @@ const LabelRoot = styled.div` ...@@ -81,7 +81,7 @@ const LabelRoot = styled.div`
display: flex; display: flex;
flex: 1; flex: 1;
flex-direction: column; flex-direction: column;
margin: 5px; margin: ${th('subGridUnit')};
width: ${({ width }) => `${width || 150}px`}; width: ${({ width }) => `${width || 150}px`};
span:first-child { span:first-child {
......
import React from 'react' import React from 'react'
import { get } from 'lodash' import { get } from 'lodash'
import { Icon } from '@pubsweet/ui' import { Icon, th } from '@pubsweet/ui'
import styled, { css, withTheme } from 'styled-components' import styled, { css } from 'styled-components'
const AbstractModal = ({ metadata, hideModal, theme }) => ( const AbstractModal = ({ metadata, hideModal }) => (
<Root> <Root>
<CloseIcon onClick={hideModal}> <CloseIcon onClick={hideModal}>
<Icon color={theme.colorPrimary}>x</Icon> <Icon primary>x</Icon>
</CloseIcon> </CloseIcon>
<Title dangerouslySetInnerHTML={{ __html: get(metadata, 'title') }} /> <Title dangerouslySetInnerHTML={{ __html: get(metadata, 'title') }} />
<Subtitle>Abstract</Subtitle> <Subtitle>Abstract</Subtitle>
...@@ -14,28 +14,29 @@ const AbstractModal = ({ metadata, hideModal, theme }) => ( ...@@ -14,28 +14,29 @@ const AbstractModal = ({ metadata, hideModal, theme }) => (
</Root> </Root>
) )
export default withTheme(AbstractModal) export default AbstractModal
// #region styled-components // #region styled-components
const defaultText = css` const defaultText = css`
color: ${({ theme }) => theme.colorText}; color: ${th('colorText')};
font-family: ${({ theme }) => theme.fontReading}; font-family: ${th('fontReading')};
font-size: ${({ theme }) => theme.fontSizeBaseSmall}; font-size: ${th('fontSizeBaseSmall')};
` `
const Root = styled.div` const Root = styled.div`
background-color: ${({ theme }) => theme.backgroundColor}; background-color: ${th('backgroundColor')};
padding: 50px 32px 32px 32px; border: ${th('borderDefault')};
border: ${({ theme }) => theme.borderDefault};
position: relative;
width: 600px;
max-height: 500px; max-height: 500px;
padding: ${th('gridUnit')};
padding-top: calc(${th('gridUnit')} * 2);
position: relative;
overflow-y: scroll; overflow-y: scroll;
width: 600px;
` `
const Title = styled.div` const Title = styled.div`
${defaultText}; ${defaultText};
font-size: ${({ theme }) => theme.fontSizeBase}; font-size: ${th('fontSizeBase')};
text-align: left; text-align: left;
` `
...@@ -43,21 +44,21 @@ const Subtitle = styled.div` ...@@ -43,21 +44,21 @@ const Subtitle = styled.div`
${defaultText}; ${defaultText};
font-weight: bold; font-weight: bold;
line-height: 1.57; line-height: 1.57;
margin-bottom: 8px; margin-bottom: ${th('subGridUnit')};
text-align: left; text-align: left;
` `
const Content = styled.div` const Content = styled.div`
${defaultText}; ${defaultText};
line-height: 1.57; line-height: 1.57;
margin-top: 10px; margin-top: calc(${th('subGridUnit')} * 2);
text-align: left; text-align: left;
` `
const CloseIcon = styled.div` const CloseIcon = styled.div`
cursor: pointer; cursor: pointer;
position: absolute; position: absolute;
top: 5px; top: ${th('subGridUnit')};
right: 5px; right: ${th('subGridUnit')};
` `
// #endregion // #endregion
...@@ -4,14 +4,14 @@ import React from 'react' ...@@ -4,14 +4,14 @@ import React from 'react'
import { get } from 'lodash' import { get } from 'lodash'
import { compose } from 'recompose' import { compose } from 'recompose'
import { connect } from 'react-redux' import { connect } from 'react-redux'
import styled from 'styled-components'
import { actions } from 'pubsweet-client' import { actions } from 'pubsweet-client'
import { th, Icon, Spinner } from '@pubsweet/ui' import { th, Icon, Spinner } from '@pubsweet/ui'
import styled, { withTheme } from 'styled-components'
import { import {
selectHandlingEditors,
selectFetching, selectFetching,
assignHandlingEditor, assignHandlingEditor,
selectHandlingEditors,
} from '../../redux/editors' } from '../../redux/editors'
class AssignHEModal extends React.Component { class AssignHEModal extends React.Component {
...@@ -34,21 +34,21 @@ class AssignHEModal extends React.Component { ...@@ -34,21 +34,21 @@ class AssignHEModal extends React.Component {
assignEditor = email => () => { assignEditor = email => () => {
const { const {
assignHandlingEditor,
collectionId,
showModal, showModal,
hideModal, hideModal,
collectionId,
setModalError, setModalError,
getCollections, getCollections,
assignHandlingEditor,
} = this.props } = this.props
assignHandlingEditor(email, collectionId).then( assignHandlingEditor(email, collectionId).then(
() => { () => {
getCollections() getCollections()
hideModal() hideModal()
showModal({ showModal({
cancelText: 'OK',
type: 'confirmation', type: 'confirmation',
title: 'Assignation Sent', title: 'Assignation Sent',
cancelText: 'OK',
}) })
}, },
e => { e => {
...@@ -61,12 +61,12 @@ class AssignHEModal extends React.Component { ...@@ -61,12 +61,12 @@ class AssignHEModal extends React.Component {
render() { render() {
const { searchInput } = this.state const { searchInput } = this.state
const { editors, hideModal, theme, isFetching } = this.props const { editors, hideModal, isFetching } = this.props
const filteredEditors = this.filterEditors(editors) const filteredEditors = this.filterEditors(editors)
return ( return (
<RootModal> <RootModal>
<CloseIcon data-test="icon-modal-hide" onClick={hideModal}> <CloseIcon data-test="icon-modal-hide" onClick={hideModal}>
<Icon color={theme.colorPrimary}>x</Icon> <Icon primary>x</Icon>
</CloseIcon> </CloseIcon>
<ModalTitle>Assign Handling Editor</ModalTitle> <ModalTitle>Assign Handling Editor</ModalTitle>
<ModalHeader> <ModalHeader>
...@@ -118,11 +118,10 @@ export default compose( ...@@ -118,11 +118,10 @@ export default compose(
}), }),
{ {
assignHandlingEditor, assignHandlingEditor,
updateCollection: actions.updateCollection,
getCollections: actions.getCollections, getCollections: actions.getCollections,
updateCollection: actions.updateCollection,
}, },
), ),
withTheme,
)(AssignHEModal) )(AssignHEModal)
// #region styled-components // #region styled-components
...@@ -141,8 +140,8 @@ const SubtitleRow = styled.div` ...@@ -141,8 +140,8 @@ const SubtitleRow = styled.div`
const CloseIcon = styled.div` const CloseIcon = styled.div`
cursor: pointer; cursor: pointer;
position: absolute; position: absolute;
top: 5px; top: ${th('subGridUnit')};
right: 5px; right: ${th('subGridUnit')};
` `
const EditorDetails = styled.div` const EditorDetails = styled.div`
......
import React from 'react' import React from 'react'
import { Button } from '@pubsweet/ui'
import styled from 'styled-components' import styled from 'styled-components'
import { Button, th } from '@pubsweet/ui'
import { compose, withHandlers } from 'recompose' import { compose, withHandlers } from 'recompose'
import DashboardItems from './DashboardItems' import { DashboardItems, DashboardFilters } from './'
import DashboardFilters from './DashboardFilters'
const Dashboard = ({ const Dashboard = ({
createDraftSubmission,
currentUser,
dashboard,
deleteProject,
filters, filters,
getItems, getItems,
dashboard,
currentUser,
filterItems,
filterValues,
deleteProject,
getFilterOptions, getFilterOptions,
changeFilterValue, changeFilterValue,
filterValues,
filterItems,
showAbstractModal, showAbstractModal,
createDraftSubmission,
...rest ...rest
}) => ( }) => (
<Root> <Root>
...@@ -55,10 +54,10 @@ export default compose( ...@@ -55,10 +54,10 @@ export default compose(
}, },
getItems: ({ getItems: ({
filters, filters,
filterValues = {},
currentUser,
dashboard, dashboard,
currentUser,
filterItems, filterItems,
filterValues = {},
}) => () => }) => () =>
filterItems(dashboard.all).sort((a, b) => { filterItems(dashboard.all).sort((a, b) => {
if (filterValues.order === 'newest') return a.created - b.created < 0 if (filterValues.order === 'newest') return a.created - b.created < 0
...@@ -68,7 +67,6 @@ export default compose( ...@@ -68,7 +67,6 @@ export default compose(
)(Dashboard) )(Dashboard)
// #region styles // #region styles
const Root = styled.div` const Root = styled.div`
display: flex; display: flex;
flex-direction: column; flex-direction: column;
...@@ -82,7 +80,7 @@ const Header = styled.div` ...@@ -82,7 +80,7 @@ const Header = styled.div`
` `
const Heading = styled.div` const Heading = styled.div`
color: ${({ theme }) => theme.colorPrimary}; color: ${th('colorPrimary')};
font-size: 1.6em; font-size: 1.6em;
text-transform: uppercase; text-transform: uppercase;
` `
...@@ -90,5 +88,4 @@ const Heading = styled.div` ...@@ -90,5 +88,4 @@ const Heading = styled.div`
const HeaderButtons = styled.div` const HeaderButtons = styled.div`
display: flex; display: flex;
` `
// #endregion // #endregion
...@@ -167,18 +167,6 @@ const DashboardCard = ({ ...@@ -167,18 +167,6 @@ const DashboardCard = ({
) : null ) : null
} }
// const isHEToManuscript = (state, collectionId) => {
// const currentUserId = get(state, 'currentUser.user.id')
// const collections = get(state, 'collections') || []
// const collection = collections.find(c => c.id === collectionId) || {}
// const collectionInvitations = get(collection, 'invitations') || []
// const userInvitation = collectionInvitations.find(
// i => i.role === 'handlingEditor' && i.userId === currentUserId,
// )
// return userInvitation ? userInvitation.isAccepted : false
// }
export default compose( export default compose(
getContext({ journal: PropTypes.object, currentUser: PropTypes.object }), getContext({ journal: PropTypes.object, currentUser: PropTypes.object }),
withTheme, withTheme,
...@@ -209,8 +197,8 @@ export default compose( ...@@ -209,8 +197,8 @@ export default compose(
project, project,
}) => () => { }) => () => {
showModal({ showModal({
title: 'Are you sure you want to delete this submission?',
confirmText: 'Delete', confirmText: 'Delete',
title: 'Are you sure you want to delete this submission?',
onConfirm: () => { onConfirm: () => {
deleteProject(project).then(hideModal, e => { deleteProject(project).then(hideModal, e => {
setModalError( setModalError(
...@@ -243,25 +231,25 @@ const ActionButtons = styled(Button)` ...@@ -243,25 +231,25 @@ const ActionButtons = styled(Button)`
background-color: ${th('colorPrimary')}; background-color: ${th('colorPrimary')};
color: ${th('colorTextReverse')}; color: ${th('colorTextReverse')};
display: flex; display: flex;
padding: 4px 8px; height: calc(${th('subGridUnit')} * 5);
padding: calc(${th('subGridUnit')} / 2) ${th('subGridUnit')};
text-align: center; text-align: center;
height: calc(${th('subGridUnit')}*5);
` `
const LeftDetails = styled.div` const LeftDetails = styled.div`
align-items: center;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
justify-content: flex-start; justify-content: flex-start;
align-items: center;
flex: ${({ flex }) => flex || 1}; flex: ${({ flex }) => flex || 1};
flex-wrap: wrap; flex-wrap: wrap;
` `
const RightDetails = styled.div` const RightDetails = styled.div`
align-items: center;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
justify-content: flex-end; justify-content: flex-end;
align-items: center;
flex: ${({ flex }) => flex || 1}; flex: ${({ flex }) => flex || 1};
flex-wrap: wrap; flex-wrap: wrap;
` `
...@@ -285,7 +273,7 @@ const ListView = styled.div` ...@@ -285,7 +273,7 @@ const ListView = styled.div`
const ManuscriptId = styled.div` const ManuscriptId = styled.div`
${defaultText}; ${defaultText};
margin-right: 8px; margin-right: ${th('subGridUnit')};
text-align: left; text-align: left;
text-transform: uppercase; text-transform: uppercase;
white-space: nowrap; white-space: nowrap;
...@@ -297,7 +285,7 @@ const Details = styled.div` ...@@ -297,7 +285,7 @@ const Details = styled.div`
cursor: pointer; cursor: pointer;
display: flex; display: flex;
${defaultText}; ${defaultText};
margin-left: 16px; margin-left: calc(${th('subGridUnit')} * 2);
text-decoration: underline; text-decoration: underline;
text-align: center; text-align: center;
text-transform: uppercase; text-transform: uppercase;
...@@ -306,7 +294,7 @@ const Details = styled.div` ...@@ -306,7 +294,7 @@ const Details = styled.div`
const ClickableIcon = styled.div` const ClickableIcon = styled.div`
cursor: ${({ disabled }) => (disabled ? 'not-allowed' : 'pointer')}; cursor: ${({ disabled }) => (disabled ? 'not-allowed' : 'pointer')};
margin: 0 7px; margin: 0 ${th('subGridUnit')};
svg { svg {
stroke: ${({ disabled, theme }) => stroke: ${({ disabled, theme }) =>
...@@ -320,7 +308,7 @@ const Card = styled.div` ...@@ -320,7 +308,7 @@ const Card = styled.div`
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: flex-start; justify-content: flex-start;
margin-bottom: 10px; margin-bottom: calc(${th('subGridUnit')} * 2);
background-color: ${th('backgroundColorReverse')}; background-color: ${th('backgroundColorReverse')};
` `
...@@ -328,31 +316,32 @@ const Top = styled.div` ...@@ -328,31 +316,32 @@ const Top = styled.div`
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
padding: 10px; padding: calc(${th('subGridUnit')} * 2);
width: 100%; width: 100%;
box-sizing: border-box; box-sizing: border-box;
flex-wrap: wrap; flex-wrap: wrap;
` `
const Bottom = styled.div` const Bottom = styled.div`
box-sizing: border-box;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
padding: 0 10px 10px 10px;
width: 100%;
box-sizing: border-box;
justify-content: space-between;
flex-wrap: wrap; flex-wrap: wrap;
justify-content: space-between;
padding: calc(${th('subGridUnit')} * 2);
padding-top: 0;
width: 100%;
` `
const ManuscriptType = styled.div` const ManuscriptType = styled.div`
${defaultText}; ${defaultText};
padding: 6px 4px; flex: 1;
margin-left: 10px; margin-left: calc(${th('subGridUnit')} * 2);
padding: ${th('subGridUnit')} calc(${th('subGridUnit')} / 2);
text-align: right; text-align: right;
text-transform: capitalize; text-transform: capitalize;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden; overflow: hidden;
flex: 1; white-space: nowrap;
` `
const Title = styled.div` const Title = styled.div`
...@@ -383,5 +372,4 @@ const DateField = styled.span` ...@@ -383,5 +372,4 @@ const DateField = styled.span`
margin: 0 ${th('subGridUnit')}; margin: 0 ${th('subGridUnit')};
text-align: left; text-align: left;
` `
// #endregion // #endregion
import React from 'react' import React from 'react'
import styled from 'styled-components'
import { Menu, th } from '@pubsweet/ui' import { Menu, th } from '@pubsweet/ui'
import { compose, withHandlers } from 'recompose' import { compose, withHandlers } from 'recompose'
import styled from 'styled-components'
const DashboardFilters = ({ const DashboardFilters = ({
view, view,
status, status,
createdAt,
listView, listView,
changeFilter, createdAt,
changeSort, changeSort,
changeFilter,
getFilterOptions, getFilterOptions,
changeFilterValue, changeFilterValue,
}) => ( }) => (
...@@ -59,8 +59,8 @@ const Root = styled.div` ...@@ -59,8 +59,8 @@ const Root = styled.div`
color: ${th('colorPrimary')}; color: ${th('colorPrimary')};
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
margin: calc(${th('subGridUnit')}*2) 0; margin: calc(${th('subGridUnit')} * 2) 0;
padding-bottom: calc(${th('subGridUnit')}*2); padding-bottom: calc(${th('subGridUnit')} * 2);
` `
const FiltersContainer = styled.div` const FiltersContainer = styled.div`
...@@ -78,7 +78,7 @@ const FilterGroup = styled.div` ...@@ -78,7 +78,7 @@ const FilterGroup = styled.div`
align-items: flex-start; align-items: flex-start;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin-left: calc(${th('subGridUnit')}*2); margin-left: calc(${th('subGridUnit')} * 2);
` `
// #endregion // #endregion
...@@ -8,8 +8,8 @@ const DashboardItem = withVersion(Item) ...@@ -8,8 +8,8 @@ const DashboardItem = withVersion(Item)
const DashboardItems = ({ const DashboardItems = ({
list, list,
listView = true,
deleteProject, deleteProject,
listView = true,
showAbstractModal, showAbstractModal,
}) => ( }) => (
<div> <div>
...@@ -36,7 +36,6 @@ const DashboardItems = ({ ...@@ -36,7 +36,6 @@ const DashboardItems = ({
export default DashboardItems export default DashboardItems
// #region styles // #region styles
const Empty = styled.div` const Empty = styled.div`
display: flex; display: flex;
justify-content: center; justify-content: center;
...@@ -45,5 +44,4 @@ const Empty = styled.div` ...@@ -45,5 +44,4 @@ const Empty = styled.div`
const Section = styled.div` const Section = styled.div`
margin: 0.5em 0; margin: 0.5em 0;
` `
// #endregion // #endregion
...@@ -9,7 +9,7 @@ import { compose, withContext } from 'recompose' ...@@ -9,7 +9,7 @@ import { compose, withContext } from 'recompose'
import { newestFirst, selectCurrentUser } from 'xpub-selectors' import { newestFirst, selectCurrentUser } from 'xpub-selectors'
import { createDraftSubmission } from 'pubsweet-component-wizard/src/redux/conversion' import { createDraftSubmission } from 'pubsweet-component-wizard/src/redux/conversion'
import Dashboard from './Dashboard' import { Dashboard } from './'
import withFilters from './withFilters' import withFilters from './withFilters'
import { getHandlingEditors } from '../../redux/editors' import { getHandlingEditors } from '../../redux/editors'
......
...@@ -3,29 +3,28 @@ import { get } from 'lodash' ...@@ -3,29 +3,28 @@ import { get } from 'lodash'
import { connect } from 'react-redux' import { connect } from 'react-redux'
import { actions } from 'pubsweet-client' import { actions } from 'pubsweet-client'
import { Icon, Button, th } from '@pubsweet/ui' import { Icon, Button, th } from '@pubsweet/ui'
import styled, { css } from 'styled-components'
import { compose, withHandlers } from 'recompose' import { compose, withHandlers } from 'recompose'
import styled, { css, withTheme } from 'styled-components'
import { import {
withModal, withModal,
ConfirmationModal,
SuccessModal, SuccessModal,
ConfirmationModal,
} from 'pubsweet-component-modal/src/components' } from 'pubsweet-component-modal/src/components'
import { handleError } from './../utils' import { handleError } from './../utils'
import { import {
selectFetching,
revokeHandlingEditor, revokeHandlingEditor,
assignHandlingEditor, assignHandlingEditor,
selectFetching,
} from '../../redux/editors' } from '../../redux/editors'
import HEModal from './AssignHEModal' import HEModal from './AssignHEModal'
const EditorInChiefActions = ({ const EditorInChiefActions = ({
project, project,
theme,
getHandlingEditor,
showConfirmModal,
showHEModal, showHEModal,
showConfirmModal,
getHandlingEditor,
}) => { }) => {
const handlingEditor = getHandlingEditor() const handlingEditor = getHandlingEditor()
const isAccepted = get(handlingEditor, 'isAccepted') const isAccepted = get(handlingEditor, 'isAccepted')
...@@ -40,10 +39,10 @@ const EditorInChiefActions = ({ ...@@ -40,10 +39,10 @@ const EditorInChiefActions = ({
<HEName>{get(handlingEditor, 'name')}</HEName> <HEName>{get(handlingEditor, 'name')}</HEName>
<HEActions data-test="eic-after-assign"> <HEActions data-test="eic-after-assign">
<div onClick={showConfirmModal('resend')}> <div onClick={showConfirmModal('resend')}>
<Icon color={theme.colorPrimary}>refresh-cw</Icon> <Icon primary>refresh-cw</Icon>
</div> </div>
<div onClick={showConfirmModal('cancel')}> <div onClick={showConfirmModal('cancel')}>
<Icon color={theme.colorPrimary}>x-circle</Icon> <Icon primary>x-circle</Icon>
</div> </div>
</HEActions> </HEActions>
</HEActions> </HEActions>
...@@ -73,7 +72,6 @@ export default compose( ...@@ -73,7 +72,6 @@ export default compose(
assignHandlingEditor, assignHandlingEditor,
getCollections: actions.getCollections, getCollections: actions.getCollections,
}), }),
withTheme,
withModal({ withModal({
modalKey: 'confirmHE', modalKey: 'confirmHE',
modalComponent: CardModal, modalComponent: CardModal,
...@@ -83,14 +81,14 @@ export default compose( ...@@ -83,14 +81,14 @@ export default compose(
}), }),
withHandlers({ withHandlers({
showConfirmModal: ({ showConfirmModal: ({
showModal,
project, project,
revokeHandlingEditor, showModal,
assignHandlingEditor,
getHandlingEditor,
hideModal, hideModal,
setModalError, setModalError,
getCollections, getCollections,
getHandlingEditor,
revokeHandlingEditor,
assignHandlingEditor,
}) => actionType => { }) => actionType => {
const editor = get(project, 'handlingEditor') const editor = get(project, 'handlingEditor')
const invitation = project.invitations.find(i => i.userId === editor.id) const invitation = project.invitations.find(i => i.userId === editor.id)
...@@ -170,9 +168,9 @@ const HEActions = styled.div` ...@@ -170,9 +168,9 @@ const HEActions = styled.div`
const AssignButton = styled(Button)` const AssignButton = styled(Button)`
${defaultText}; ${defaultText};
align-items: center; align-items: center;
color: ${th('colorTextReverse')};
background-color: ${th('colorPrimary')}; background-color: ${th('colorPrimary')};
height: calc(${th('subGridUnit')}*5); color: ${th('colorTextReverse')};
height: calc(${th('subGridUnit')} * 5);
text-align: center; text-align: center;
text-transform: uppercase; text-transform: uppercase;
` `
......
...@@ -62,12 +62,12 @@ export default compose( ...@@ -62,12 +62,12 @@ export default compose(
}), }),
withHandlers({ withHandlers({
showHEModal: ({ showHEModal: ({
currentUser, project,
showModal, showModal,
hideModal, hideModal,
project, currentUser,
getCollections,
setModalError, setModalError,
getCollections,
}) => modalType => { }) => modalType => {
const invitation = project.invitations.find( const invitation = project.invitations.find(
i => i.userId === currentUser.id, i => i.userId === currentUser.id,
...@@ -119,7 +119,7 @@ const DecisionButton = styled(Button)` ...@@ -119,7 +119,7 @@ const DecisionButton = styled(Button)`
primary ? th('colorTextReverse') : th('colorPrimary')}; primary ? th('colorTextReverse') : th('colorPrimary')};
background-color: ${({ primary }) => background-color: ${({ primary }) =>
primary ? th('colorPrimary') : th('backgroundColorReverse')}; primary ? th('colorPrimary') : th('backgroundColorReverse')};
height: calc(${th('subGridUnit')}*5); height: calc(${th('subGridUnit')} * 5);
text-align: center; text-align: center;
` `
...@@ -128,8 +128,8 @@ const DeclineRoot = styled.div` ...@@ -128,8 +128,8 @@ const DeclineRoot = styled.div`
background-color: ${th('backgroundColor')}; background-color: ${th('backgroundColor')};
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: space-between;
height: calc(${th('gridUnit')} * 13); height: calc(${th('gridUnit')} * 13);
justify-content: space-between;
padding: calc(${th('subGridUnit')} * 7); padding: calc(${th('subGridUnit')} * 7);
width: calc(${th('gridUnit')} * 24); width: calc(${th('gridUnit')} * 24);
...@@ -137,7 +137,7 @@ const DeclineRoot = styled.div` ...@@ -137,7 +137,7 @@ const DeclineRoot = styled.div`
color: ${th('colorPrimary')}; color: ${th('colorPrimary')};
font-size: ${th('fontSizeHeading5')}; font-size: ${th('fontSizeHeading5')};
font-family: ${th('fontHeading')}; font-family: ${th('fontHeading')};
margin-bottom: 25px; margin-bottom: ${th('gridUnit')};
} }
& textarea { & textarea {
......
import React from 'react' import React from 'react'
import { th } from '@pubsweet/ui'
import { get } from 'lodash' import { get } from 'lodash'
import { th } from '@pubsweet/ui'
import styled, { css } from 'styled-components' import styled, { css } from 'styled-components'
import { EditorInChiefActions, HandlingEditorActions } from './' import { EditorInChiefActions, HandlingEditorActions } from './'
......
...@@ -85,12 +85,12 @@ const defaultText = css` ...@@ -85,12 +85,12 @@ const defaultText = css`
const DecisionButton = styled(Button)` const DecisionButton = styled(Button)`
${defaultText}; ${defaultText};
align-items: center; align-items: center;
color: ${({ primary }) =>
primary ? th('colorTextReverse') : th('colorPrimary')});
background-color: ${({ primary }) => background-color: ${({ primary }) =>
primary ? th('colorPrimary') : th('backgroundColorReverse')}; primary ? th('colorPrimary') : th('backgroundColorReverse')};
height: calc(${th('subGridUnit')}*5); color: ${({ primary }) =>
primary ? th('colorTextReverse') : th('colorPrimary')});
height: calc(${th('subGridUnit')} * 5);
text-align: center; text-align: center;
` `
// #endregion // #endregion
import DashboardPage from './DashboardPage' import DashboardPage from './DashboardPage'
export { default as Dashboard } from './Dashboard'
export { default as AbstractModal } from './AbstractModal'
export { default as AuthorTooltip } from './AuthorTooltip' export { default as AuthorTooltip } from './AuthorTooltip'
export { default as DashboardCard } from './DashboardCard'
export { default as DashboardItems } from './DashboardItems'
export { default as ReviewerDecision } from './ReviewerDecision' export { default as ReviewerDecision } from './ReviewerDecision'
export { default as DashboardFilters } from './DashboardFilters'
export { default as EditorInChiefActions } from './EditorInChiefActions' export { default as EditorInChiefActions } from './EditorInChiefActions'
export { default as HandlingEditorActions } from './HandlingEditorActions' export { default as HandlingEditorActions } from './HandlingEditorActions'
export { default as HandlingEditorSection } from './HandlingEditorSection' export { default as HandlingEditorSection } from './HandlingEditorSection'
......
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