Skip to content
Snippets Groups Projects
Commit c8a66d90 authored by Sebastian's avatar Sebastian
Browse files

Merge branch 'refactor-component-invite' of...

Merge branch 'refactor-component-invite' of gitlab.coko.foundation:xpub/xpub-faraday into refactor-component-invite
parents 766b4c39 706efc52
No related branches found
No related tags found
1 merge request!5Refactor component invite
......@@ -18,8 +18,15 @@ import { getRoleOptions, setAdmin, parseUpdateUser } from './utils'
const onSubmit = (values, dispatch, { isEdit, history }) => {
if (!isEdit) {
const newValues = setAdmin(values)
return create('/users/invite', newValues)
.then(() => history.push('/admin/users'))
return create('/users', newValues)
.then(r => {
history.push('/admin/users')
create(`/emails`, {
email: r.email,
type: 'invite',
role: values.role,
})
})
.catch(error => {
const err = get(error, 'response')
if (err) {
......
import { pick, map } from 'lodash'
import { pick, map, omit } from 'lodash'
const generatePasswordHash = () =>
Array.from({ length: 4 }, () =>
Math.random()
.toString(36)
.slice(4),
).join('')
export const getRoleOptions = journal =>
map(journal.roles, (value, key) => ({ label: value, value: key }))
......@@ -11,7 +18,15 @@ export const setAdmin = values => {
newValues.admin = false
}
return newValues
return {
...omit(newValues, ['role']),
username: newValues.email,
isConfirmed: false,
passwordResetToken: generatePasswordHash(),
password: 'defaultpass',
editorInChief: newValues.role === 'editorInChief',
handlingEditor: newValues.role === 'handlingEditor',
}
}
export const parseUpdateUser = values => {
......@@ -22,7 +37,6 @@ export const parseUpdateUser = values => {
'affiliation',
'title',
'roles',
'rev',
'editorInChief',
'handlingEditor',
]
......
......@@ -31,7 +31,7 @@ const login = (dispatch, values, history) =>
const confirmUser = (email, token, history) => (values, dispatch) => {
const request = { ...values, email, token }
if (values) {
return create('/users/invite/password/reset', request)
return create('/users/reset-password', request)
.then(r => {
const { username } = r
const { password } = values
......@@ -52,6 +52,7 @@ const confirmUser = (email, token, history) => (values, dispatch) => {
export default compose(
withJournal,
withState('step', 'changeStep', 0),
withState('initialValues', 'setInitialValues', {}),
withProps(({ location }) => {
const params = new URLSearchParams(location.search)
const email = params.get('email')
......@@ -66,11 +67,11 @@ export default compose(
}),
lifecycle({
componentDidMount() {
const { email, token } = this.props
const encodedUri = `?email=${encodeURIComponent(email)}&token=${token}`
request(`/users/invite${encodedUri}`)
const { setInitialValues, token } = this.props
const encodedUri = `?passwordResetToken=${token}`
request(`/users/${encodedUri}`)
.then(res => {
this.setState({ initialValues: res })
setInitialValues(v => res.users[0])
})
.catch(err => {
this.setState({ error: err.response })
......
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