* 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.
287 lines
8.1 KiB
JavaScript
287 lines
8.1 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Container, Row, Col } from 'reactstrap';
|
|
import { connect } from 'react-redux';
|
|
import { logEvent } from '../analytics/analytics';
|
|
|
|
// Actions
|
|
import {
|
|
fetchProfile,
|
|
saveProfile,
|
|
saveProfilePhoto,
|
|
deleteProfilePhoto,
|
|
openForm,
|
|
closeForm,
|
|
updateDraft,
|
|
} from '../actions/ProfileActions';
|
|
|
|
// Components
|
|
import ProfileAvatar from './ProfilePage/ProfileAvatar';
|
|
import Name from './ProfilePage/Name';
|
|
import Country from './ProfilePage/Country';
|
|
import PreferredLanguage from './ProfilePage/PreferredLanguage';
|
|
import Education from './ProfilePage/Education';
|
|
import SocialLinks from './ProfilePage/SocialLinks';
|
|
import Bio from './ProfilePage/Bio';
|
|
import Certificates from './ProfilePage/Certificates';
|
|
import AgeMessage from './ProfilePage/AgeMessage';
|
|
import DateJoined from './ProfilePage/DateJoined';
|
|
import { profilePageSelector } from '../selectors/ProfilePageSelector';
|
|
|
|
export class ProfilePage extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.handleSaveProfilePhoto = this.handleSaveProfilePhoto.bind(this);
|
|
this.handleDeleteProfilePhoto = this.handleDeleteProfilePhoto.bind(this);
|
|
this.handleClose = this.handleClose.bind(this);
|
|
this.handleOpen = this.handleOpen.bind(this);
|
|
this.handleSubmit = this.handleSubmit.bind(this);
|
|
this.handleChange = this.handleChange.bind(this);
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.props.fetchProfile(this.props.match.params.username);
|
|
logEvent('edx.profile.viewed', {
|
|
profileUsername: this.props.match.params.username,
|
|
});
|
|
}
|
|
|
|
handleSaveProfilePhoto(formData) {
|
|
this.props.saveProfilePhoto(this.props.username, formData);
|
|
}
|
|
|
|
handleDeleteProfilePhoto() {
|
|
this.props.deleteProfilePhoto(this.props.username);
|
|
}
|
|
|
|
handleClose(formId) {
|
|
this.props.closeForm(formId);
|
|
}
|
|
|
|
handleOpen(formId) {
|
|
this.props.openForm(formId);
|
|
}
|
|
|
|
handleSubmit(formId) {
|
|
this.props.saveProfile(formId);
|
|
}
|
|
|
|
handleChange(name, value) {
|
|
this.props.updateDraft(name, value);
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
profileImage,
|
|
username,
|
|
dateJoined,
|
|
errors,
|
|
name,
|
|
visibilityName,
|
|
country,
|
|
visibilityCountry,
|
|
education,
|
|
visibilityEducation,
|
|
socialLinks,
|
|
draftSocialLinksByPlatform,
|
|
visibilitySocialLinks,
|
|
languageProficiencies,
|
|
visibilityLanguageProficiencies,
|
|
visibilityCourseCertificates,
|
|
bio,
|
|
visibilityBio,
|
|
} = this.props;
|
|
|
|
const commonFormProps = {
|
|
openHandler: this.handleOpen,
|
|
closeHandler: this.handleClose,
|
|
submitHandler: this.handleSubmit,
|
|
changeHandler: this.handleChange,
|
|
errors,
|
|
};
|
|
|
|
return (
|
|
<div className="profile-page">
|
|
<div className="bg-banner bg-program-micro-masters d-none d-md-block p-relative" />
|
|
<Container fluid>
|
|
<Row>
|
|
<Col md={4} lg={3}>
|
|
<div className="d-flex align-items-center d-md-block mt-4 mt-md-0">
|
|
<ProfileAvatar
|
|
className="mb-md-3"
|
|
src={profileImage}
|
|
onSave={this.handleSaveProfilePhoto}
|
|
onDelete={this.handleDeleteProfilePhoto}
|
|
savePhotoState={this.props.savePhotoState}
|
|
isEditable={this.props.isCurrentUserProfile}
|
|
/>
|
|
<div>
|
|
<h2 className="mb-0">{username}</h2>
|
|
<DateJoined date={dateJoined} />
|
|
</div>
|
|
</div>
|
|
</Col>
|
|
</Row>
|
|
<Row>
|
|
<Col xs={{ order: 2 }} md={{ size: 4, order: 1 }} lg={3} className="mt-md-4">
|
|
<Name
|
|
name={name}
|
|
visibilityName={visibilityName}
|
|
formId="name"
|
|
{...commonFormProps}
|
|
/>
|
|
<Country
|
|
country={country}
|
|
visibilityCountry={visibilityCountry}
|
|
formId="country"
|
|
{...commonFormProps}
|
|
/>
|
|
<PreferredLanguage
|
|
languageProficiencies={languageProficiencies}
|
|
visibilityLanguageProficiencies={visibilityLanguageProficiencies}
|
|
formId="languageProficiencies"
|
|
{...commonFormProps}
|
|
/>
|
|
<Education
|
|
education={education}
|
|
visibilityEducation={visibilityEducation}
|
|
formId="education"
|
|
{...commonFormProps}
|
|
/>
|
|
<SocialLinks
|
|
socialLinks={socialLinks}
|
|
draftSocialLinksByPlatform={draftSocialLinksByPlatform}
|
|
visibilitySocialLinks={visibilitySocialLinks}
|
|
formId="socialLinks"
|
|
{...commonFormProps}
|
|
/>
|
|
</Col>
|
|
<Col
|
|
xs={{ order: 1 }}
|
|
md={{ size: 8, order: 2 }}
|
|
lg={{ size: 8, offset: 1 }}
|
|
className="mt-4 mt-md-n5"
|
|
>
|
|
{this.props.requiresParentalConsent ? <AgeMessage accountURL="#account" /> : null}
|
|
<Bio
|
|
bio={bio}
|
|
visibilityBio={visibilityBio}
|
|
formId="bio"
|
|
{...commonFormProps}
|
|
/>
|
|
<Certificates
|
|
visibilityCourseCertificates={visibilityCourseCertificates}
|
|
formId="certificates"
|
|
{...commonFormProps}
|
|
/>
|
|
</Col>
|
|
</Row>
|
|
</Container>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
ProfilePage.propTypes = {
|
|
// Account data
|
|
username: PropTypes.string,
|
|
requiresParentalConsent: PropTypes.bool,
|
|
dateJoined: PropTypes.string,
|
|
isCurrentUserProfile: PropTypes.bool.isRequired,
|
|
|
|
// Bio form data
|
|
bio: PropTypes.string,
|
|
visibilityBio: PropTypes.string.isRequired,
|
|
|
|
// Certificates form data
|
|
courseCertificates: PropTypes.arrayOf(PropTypes.shape({
|
|
title: PropTypes.string,
|
|
})),
|
|
visibilityCourseCertificates: PropTypes.string.isRequired,
|
|
|
|
// Country form data
|
|
country: PropTypes.string,
|
|
visibilityCountry: PropTypes.string.isRequired,
|
|
|
|
// Education form data
|
|
education: PropTypes.string,
|
|
visibilityEducation: PropTypes.string.isRequired,
|
|
|
|
// Language proficiency form data
|
|
languageProficiencies: PropTypes.arrayOf(PropTypes.shape({
|
|
code: PropTypes.string.isRequired,
|
|
})),
|
|
visibilityLanguageProficiencies: PropTypes.string.isRequired,
|
|
|
|
// Name form data
|
|
name: PropTypes.string,
|
|
visibilityName: PropTypes.string.isRequired,
|
|
|
|
// Social links form data
|
|
socialLinks: PropTypes.arrayOf(PropTypes.shape({
|
|
platform: PropTypes.string,
|
|
socialLink: PropTypes.string,
|
|
})),
|
|
draftSocialLinksByPlatform: PropTypes.objectOf(PropTypes.shape({
|
|
platform: PropTypes.string,
|
|
socialLink: PropTypes.string,
|
|
})),
|
|
visibilitySocialLinks: PropTypes.string.isRequired,
|
|
|
|
// Other data we need
|
|
profileImage: PropTypes.string,
|
|
saveState: PropTypes.oneOf([null, 'pending', 'complete', 'error']),
|
|
savePhotoState: PropTypes.oneOf([null, 'pending', 'complete', 'error']),
|
|
|
|
// Page state helpers
|
|
errors: PropTypes.objectOf(PropTypes.string),
|
|
|
|
// Actions
|
|
fetchProfile: PropTypes.func.isRequired,
|
|
saveProfile: PropTypes.func.isRequired,
|
|
saveProfilePhoto: PropTypes.func.isRequired,
|
|
deleteProfilePhoto: PropTypes.func.isRequired,
|
|
openForm: PropTypes.func.isRequired,
|
|
closeForm: PropTypes.func.isRequired,
|
|
updateDraft: PropTypes.func.isRequired,
|
|
|
|
// Router
|
|
match: PropTypes.shape({
|
|
params: PropTypes.shape({
|
|
username: PropTypes.string.isRequired,
|
|
}).isRequired,
|
|
}).isRequired,
|
|
};
|
|
|
|
ProfilePage.defaultProps = {
|
|
saveState: null,
|
|
savePhotoState: null,
|
|
errors: {},
|
|
profileImage: null,
|
|
name: null,
|
|
username: null,
|
|
education: null,
|
|
country: null,
|
|
socialLinks: [],
|
|
draftSocialLinksByPlatform: {},
|
|
bio: null,
|
|
languageProficiencies: [],
|
|
courseCertificates: null,
|
|
requiresParentalConsent: null,
|
|
dateJoined: null,
|
|
};
|
|
|
|
export default connect(
|
|
profilePageSelector,
|
|
{
|
|
fetchProfile,
|
|
saveProfilePhoto,
|
|
deleteProfilePhoto,
|
|
saveProfile,
|
|
openForm,
|
|
closeForm,
|
|
updateDraft,
|
|
},
|
|
)(ProfilePage);
|