You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
197 lines
5.3 KiB
JavaScript
197 lines
5.3 KiB
JavaScript
import omit from 'lodash/omit';
|
|
import React, { useCallback, useEffect, useMemo, useRef } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { Button, Form, Message } from 'semantic-ui-react';
|
|
import { useDidUpdate, usePrevious, useToggle } from '../../lib/hooks';
|
|
import { Input, Popup } from '../../lib/custom-ui';
|
|
|
|
import { useForm } from '../../hooks';
|
|
import { isUsername } from '../../utils/validator';
|
|
|
|
import styles from './UserUsernameEditStep.module.scss';
|
|
|
|
const createMessage = (error) => {
|
|
if (!error) {
|
|
return error;
|
|
}
|
|
|
|
switch (error.message) {
|
|
case 'Username already in use':
|
|
return {
|
|
type: 'error',
|
|
content: 'common.usernameAlreadyInUse',
|
|
};
|
|
case 'Invalid current password':
|
|
return {
|
|
type: 'error',
|
|
content: 'common.invalidCurrentPassword',
|
|
};
|
|
default:
|
|
return {
|
|
type: 'warning',
|
|
content: 'common.unknownError',
|
|
};
|
|
}
|
|
};
|
|
|
|
const UserUsernameEditStep = React.memo(
|
|
({
|
|
defaultData,
|
|
username,
|
|
isSubmitting,
|
|
error,
|
|
usePasswordConfirmation,
|
|
onUpdate,
|
|
onMessageDismiss,
|
|
onBack,
|
|
onClose,
|
|
}) => {
|
|
const [t] = useTranslation();
|
|
const wasSubmitting = usePrevious(isSubmitting);
|
|
|
|
const [data, handleFieldChange, setData] = useForm({
|
|
username: '',
|
|
currentPassword: '',
|
|
...defaultData,
|
|
});
|
|
|
|
const message = useMemo(() => createMessage(error), [error]);
|
|
const [focusCurrentPasswordFieldState, focusCurrentPasswordField] = useToggle();
|
|
|
|
const usernameField = useRef(null);
|
|
const currentPasswordField = useRef(null);
|
|
|
|
const handleSubmit = useCallback(() => {
|
|
const cleanData = {
|
|
...data,
|
|
username: data.username.trim() || null,
|
|
};
|
|
|
|
if (!cleanData.username || !isUsername(cleanData.username)) {
|
|
usernameField.current.select();
|
|
return;
|
|
}
|
|
|
|
if (cleanData.username === username) {
|
|
onClose();
|
|
return;
|
|
}
|
|
|
|
if (usePasswordConfirmation && !cleanData.currentPassword) {
|
|
currentPasswordField.current.focus();
|
|
return;
|
|
}
|
|
|
|
onUpdate(usePasswordConfirmation ? cleanData : omit(cleanData, 'currentPassword'));
|
|
}, [username, usePasswordConfirmation, onUpdate, onClose, data]);
|
|
|
|
useEffect(() => {
|
|
usernameField.current.focus();
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (wasSubmitting && !isSubmitting) {
|
|
if (error) {
|
|
switch (error.message) {
|
|
case 'Username already in use':
|
|
usernameField.current.select();
|
|
|
|
break;
|
|
case 'Invalid current password':
|
|
setData((prevData) => ({
|
|
...prevData,
|
|
currentPassword: '',
|
|
}));
|
|
focusCurrentPasswordField();
|
|
|
|
break;
|
|
default:
|
|
}
|
|
} else {
|
|
onClose();
|
|
}
|
|
}
|
|
}, [isSubmitting, wasSubmitting, error, onClose, setData, focusCurrentPasswordField]);
|
|
|
|
useDidUpdate(() => {
|
|
currentPasswordField.current.focus();
|
|
}, [focusCurrentPasswordFieldState]);
|
|
|
|
return (
|
|
<>
|
|
<Popup.Header onBack={onBack}>
|
|
{t('common.editUsername', {
|
|
context: 'title',
|
|
})}
|
|
</Popup.Header>
|
|
<Popup.Content>
|
|
{message && (
|
|
<Message
|
|
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
{...{
|
|
[message.type]: true,
|
|
}}
|
|
visible
|
|
content={t(message.content)}
|
|
onDismiss={onMessageDismiss}
|
|
/>
|
|
)}
|
|
<Form onSubmit={handleSubmit}>
|
|
<div className={styles.text}>{t('common.newUsername')}</div>
|
|
<Input
|
|
fluid
|
|
ref={usernameField}
|
|
name="username"
|
|
value={data.username}
|
|
placeholder={username}
|
|
className={styles.field}
|
|
onChange={handleFieldChange}
|
|
/>
|
|
{usePasswordConfirmation && (
|
|
<>
|
|
<div className={styles.text}>{t('common.currentPassword')}</div>
|
|
<Input.Password
|
|
fluid
|
|
ref={currentPasswordField}
|
|
name="currentPassword"
|
|
value={data.currentPassword}
|
|
className={styles.field}
|
|
onChange={handleFieldChange}
|
|
/>
|
|
</>
|
|
)}
|
|
<Button
|
|
positive
|
|
content={t('action.save')}
|
|
loading={isSubmitting}
|
|
disabled={isSubmitting}
|
|
/>
|
|
</Form>
|
|
</Popup.Content>
|
|
</>
|
|
);
|
|
},
|
|
);
|
|
|
|
UserUsernameEditStep.propTypes = {
|
|
defaultData: PropTypes.object.isRequired, // eslint-disable-line react/forbid-prop-types
|
|
username: PropTypes.string,
|
|
isSubmitting: PropTypes.bool.isRequired,
|
|
error: PropTypes.object, // eslint-disable-line react/forbid-prop-types
|
|
usePasswordConfirmation: PropTypes.bool,
|
|
onUpdate: PropTypes.func.isRequired,
|
|
onMessageDismiss: PropTypes.func.isRequired,
|
|
onBack: PropTypes.func,
|
|
onClose: PropTypes.func.isRequired,
|
|
};
|
|
|
|
UserUsernameEditStep.defaultProps = {
|
|
username: undefined,
|
|
error: undefined,
|
|
usePasswordConfirmation: false,
|
|
onBack: undefined,
|
|
};
|
|
|
|
export default UserUsernameEditStep;
|