Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
X
xpub-faraday
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
xpub
xpub-faraday
Merge requests
!198
Hin 1166 admin delete manuscript
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Hin 1166 admin delete manuscript
HIN-1166-admin-delete-manuscript
into
develop
Overview
9
Commits
19
Pipelines
0
Changes
15
All threads resolved!
Show all comments
Merged
Tania Fecheta
requested to merge
HIN-1166-admin-delete-manuscript
into
develop
6 years ago
Overview
9
Commits
19
Pipelines
0
Changes
15
All threads resolved!
Show all comments
Expand
3
0
Merge request reports
Compare
develop
version 3
30e0e0c5
6 years ago
version 2
26eda51d
6 years ago
version 1
246bb06e
6 years ago
develop (base)
and
latest version
latest version
2a08538e
19 commits,
6 years ago
version 3
30e0e0c5
17 commits,
6 years ago
version 2
26eda51d
14 commits,
6 years ago
version 1
246bb06e
12 commits,
6 years ago
15 files
+
427
−
28
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
15
Search (e.g. *.vue) (Ctrl+P)
packages/component-faraday-ui/src/manuscriptDetails/DeleteManuscriptModal.js
0 → 100644
+
114
−
0
Options
import
React
,
{
Fragment
}
from
'
react
'
import
styled
from
'
styled-components
'
import
{
compose
}
from
'
recompose
'
import
{
reduxForm
}
from
'
redux-form
'
import
{
th
}
from
'
@pubsweet/ui-toolkit
'
import
{
required
}
from
'
xpub-validators
'
import
{
H2
,
Button
,
ValidatedField
,
TextArea
,
Spinner
}
from
'
@pubsweet/ui
'
import
{
Row
,
Text
,
Label
,
IconButton
,
OpenModal
,
ActionLink
,
ItemOverrideAlert
,
withFetching
,
}
from
'
pubsweet-component-faraday-ui
'
const
Form
=
compose
(
withFetching
,
reduxForm
({
form
:
'
deleteManuscript
'
,
}),
)(({
fetchingError
,
hideModal
,
handleSubmit
,
isFetching
})
=>
(
<
Root
>
<
IconButton
icon
=
"
x
"
iconSize
=
{
2
}
onClick
=
{
hideModal
}
right
=
{
5
}
secondary
top
=
{
5
}
/
>
<
H2
ml
=
{
4
}
mr
=
{
4
}
>
Are
you
sure
you
want
to
remove
this
manuscript
?
<
/H2
>
<
Row
mt
=
{
2
}
>
<
ItemOverrideAlert
data
-
test
-
id
=
"
manuscript-return-reason
"
vertical
>
<
Label
required
>
Reason
for
removing
the
manuscript
from
the
platform
:
<
/Label
>
<
ValidatedField
component
=
{
TextArea
}
name
=
"
comments
"
style
=
{{
'
max-width
'
:
'
440px
'
,
'
min-width
'
:
'
440px
'
}}
validate
=
{[
required
]}
/
>
<
/ItemOverrideAlert
>
<
/Row
>
{
fetchingError
&&
(
<
Text
align
=
"
center
"
error
mt
=
{
1
}
>
{
fetchingError
}
<
/Text
>
)}
<
Row
mt
=
{
3
}
>
{
isFetching
?
(
<
Spinner
size
=
{
3
}
/
>
)
:
(
<
Fragment
>
<
Button
data
-
test
-
id
=
"
modal-cancel
"
onClick
=
{
hideModal
}
>
NO
<
/Button
>
<
Button
data
-
test
-
id
=
"
modal-confirm
"
onClick
=
{
handleSubmit
}
primary
>
OK
<
/Button
>
<
/Fragment
>
)}
<
/Row
>
<
/Root
>
))
const
DeleteManuscriptModal
=
props
=>
(
<
OpenModal
component
=
{
Form
}
{...
props
}
>
{
showModal
=>
(
<
DeleteIcon
fontIcon
=
"
deleteIcon
"
onClick
=
{
showModal
}
paddingBottom
=
{
2
}
paddingRight
=
{
0
}
size
=
{
1.65
}
>
Delete
<
/DeleteIcon
>
)}
<
/OpenModal
>
)
export
default
DeleteManuscriptModal
DeleteManuscriptModal
.
defaultProps
=
{
onSubmit
:
()
=>
{},
collectionId
:
'
santa-claus
'
,
modalKey
:
'
deleteManuscriptModal
'
,
}
// #region styles
const
DeleteIcon
=
styled
(
ActionLink
)
``
const
Root
=
styled
.
div
`
align-items: center;
background:
${
th
(
'
colorBackgroundHue
'
)}
;
border:
${
th
(
'
borderWidth
'
)}
${
th
(
'
borderStyle
'
)}
transparent;
border-radius:
${
th
(
'
borderRadius
'
)}
;
box-shadow:
${
th
(
'
boxShadow
'
)}
;
display: flex;
flex-direction: column;
position: relative;
padding: calc(
${
th
(
'
gridUnit
'
)}
* 5);
width: calc(
${
th
(
'
gridUnit
'
)}
* 65);
${
H2
}
{
text-align: center;
}
`
// #endregion