* Client/server data adapter and simpler data passthroughs. * Parse error response and pipe to UI * Add top-of-form error display for social links * Remove save failed state from save button * Remove object deconstruction in catch * Fixing a few small bugs. * When opening and closing forms, remove drafts. * Tweak where we send account_privacy back to * Passing course cert visibility through. * Fixin’ up the tests. * Documenting weird social links behavior. * More comments.
148 lines
4.2 KiB
JavaScript
148 lines
4.2 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Form, FormFeedback, FormGroup, Input, Label } from 'reactstrap';
|
|
import { connect } from 'react-redux';
|
|
import { injectIntl, intlShape, FormattedMessage } from 'react-intl';
|
|
|
|
import messages from './Bio.messages';
|
|
|
|
// Components
|
|
import FormControls from './elements/FormControls';
|
|
import EditableItemHeader from './elements/EditableItemHeader';
|
|
import EmptyContent from './elements/EmptyContent';
|
|
import SwitchContent from './elements/SwitchContent';
|
|
|
|
// Selectors
|
|
import { editableFormSelector } from '../../selectors/ProfilePageSelector';
|
|
|
|
class Bio extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.handleChange = this.handleChange.bind(this);
|
|
this.handleSubmit = this.handleSubmit.bind(this);
|
|
this.handleClose = this.handleClose.bind(this);
|
|
this.handleOpen = this.handleOpen.bind(this);
|
|
}
|
|
|
|
handleChange(e) {
|
|
const { name, value } = e.target;
|
|
this.props.changeHandler(name, value);
|
|
}
|
|
|
|
handleSubmit(e) {
|
|
e.preventDefault();
|
|
this.props.submitHandler(this.props.formId);
|
|
}
|
|
|
|
handleClose() {
|
|
this.props.closeHandler(this.props.formId);
|
|
}
|
|
|
|
handleOpen() {
|
|
this.props.openHandler(this.props.formId);
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
formId, bio, visibilityBio, editMode, saveState, error, intl,
|
|
} = this.props;
|
|
|
|
return (
|
|
<SwitchContent
|
|
className="mb-4"
|
|
expression={editMode}
|
|
cases={{
|
|
editing: (
|
|
<Form onSubmit={this.handleSubmit}>
|
|
<FormGroup>
|
|
<Label for={formId}>{intl.formatMessage(messages['profile.bio.about.me'])}</Label>
|
|
<Input
|
|
type="textarea"
|
|
id={formId}
|
|
name={formId}
|
|
value={bio || ''}
|
|
invalid={error != null}
|
|
onChange={this.handleChange}
|
|
/>
|
|
<FormFeedback>{error}</FormFeedback>
|
|
</FormGroup>
|
|
<FormControls
|
|
visibilityId="visibilityBio"
|
|
saveState={saveState}
|
|
visibility={visibilityBio}
|
|
cancelHandler={this.handleClose}
|
|
changeHandler={this.handleChange}
|
|
/>
|
|
</Form>
|
|
),
|
|
editable: (
|
|
<React.Fragment>
|
|
<EditableItemHeader
|
|
content={intl.formatMessage(messages['profile.bio.about.me'])}
|
|
showEditButton
|
|
onClickEdit={this.handleOpen}
|
|
showVisibility={visibilityBio !== null}
|
|
visibility={visibilityBio}
|
|
/>
|
|
<p className="lead">{bio}</p>
|
|
</React.Fragment>
|
|
),
|
|
empty: (
|
|
<EmptyContent onClick={this.handleOpen}>
|
|
<FormattedMessage
|
|
id="profile.bio.empty"
|
|
defaultMessage="Add a short bio"
|
|
description="instructions when the user hasn't written an About Me"
|
|
/>
|
|
</EmptyContent>
|
|
),
|
|
static: (
|
|
<React.Fragment>
|
|
<EditableItemHeader content={intl.formatMessage(messages['profile.bio.about.me'])} />
|
|
<p className="lead">{bio}</p>
|
|
</React.Fragment>
|
|
),
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
Bio.propTypes = {
|
|
// It'd be nice to just set this as a defaultProps...
|
|
// except the class that comes out on the other side of react-redux's
|
|
// connect() method won't have it anymore. Static properties won't survive
|
|
// through the higher order function.
|
|
formId: PropTypes.string.isRequired,
|
|
|
|
// From Selector
|
|
bio: PropTypes.string,
|
|
visibilityBio: PropTypes.oneOf(['private', 'all_users']),
|
|
editMode: PropTypes.oneOf(['editing', 'editable', 'empty', 'static']),
|
|
saveState: PropTypes.string,
|
|
error: PropTypes.string,
|
|
|
|
// Actions
|
|
changeHandler: PropTypes.func.isRequired,
|
|
submitHandler: PropTypes.func.isRequired,
|
|
closeHandler: PropTypes.func.isRequired,
|
|
openHandler: PropTypes.func.isRequired,
|
|
|
|
// i18n
|
|
intl: intlShape.isRequired,
|
|
};
|
|
|
|
Bio.defaultProps = {
|
|
editMode: 'static',
|
|
saveState: null,
|
|
bio: null,
|
|
visibilityBio: 'private',
|
|
error: null,
|
|
};
|
|
|
|
export default connect(
|
|
editableFormSelector,
|
|
{},
|
|
)(injectIntl(Bio));
|