docbrown/app/javascript/onboarding/components/ProfileForm.jsx
Vaidehi Joshi e19eb60d1f
Add skip/continue functionality to onboarding navigation (#7488) [deploy]
* Dynamically render forward text in Navigation component

* Render either "Skip for now" or "Continue" on the FollowTags, ProfileForm, and FollowUsers components.
* Refactor the ProfileForm component to dynamically change the button text based on the form's state.

* Render specific button text for last onboarding slide

* Fix back arrow styles for accessibility

Also set an explicit width on the containing button around the svg.

* Use min-width to specify back-button size
2020-04-23 16:30:48 -07:00

161 lines
4.7 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { h, Component } from 'preact';
import PropTypes from 'prop-types';
import Navigation from './Navigation';
import { userData, getContentOfToken, updateOnboarding } from '../utilities';
/* eslint-disable camelcase */
class ProfileForm extends Component {
constructor(props) {
super(props);
this.handleChange = this.handleChange.bind(this);
this.onSubmit = this.onSubmit.bind(this);
this.user = userData();
this.state = {
formValues: {
summary: '',
location: '',
employment_title: '',
employer_name: '',
},
last_onboarding_page: 'v2: personal info form',
canSkip: true,
};
}
componentDidMount() {
updateOnboarding('v2: personal info form');
}
onSubmit() {
const csrfToken = getContentOfToken('csrf-token');
const { formValues, last_onboarding_page } = this.state;
fetch('/onboarding_update', {
method: 'PATCH',
headers: {
'X-CSRF-Token': csrfToken,
'Content-Type': 'application/json',
},
body: JSON.stringify({ user: { ...formValues, last_onboarding_page } }),
credentials: 'same-origin',
}).then((response) => {
if (response.ok) {
const { next } = this.props;
next();
}
});
}
handleChange(e) {
const { formValues } = { ...this.state };
const currentFormState = formValues;
const { name, value } = e.target;
currentFormState[name] = value;
// Once we've derived the new form values, check if the form is empty
// and use that value to set the `canSkip` property on the state.
const formIsEmpty =
Object.values(currentFormState).filter((v) => v.length > 0).length === 0;
this.setState({ formValues: currentFormState, canSkip: formIsEmpty });
}
render() {
const { prev, slidesCount, currentSlideIndex } = this.props;
const { profile_image_90, username, name } = this.user;
const { canSkip } = this.state;
return (
<div className="onboarding-main">
<Navigation
prev={prev}
next={this.onSubmit}
canSkip={canSkip}
slidesCount={slidesCount}
currentSlideIndex={currentSlideIndex}
/>
<div className="onboarding-content about">
<header className="onboarding-content-header">
<h1 className="title">Build your profile</h1>
<h2 className="subtitle">
Tell us a little bit about yourself this is how others will see
you on DEV. Youll always be able to edit this later in your
Settings.
</h2>
</header>
<div className="current-user-info">
<figure className="current-user-avatar-container">
<img
className="current-user-avatar"
alt="profile"
src={profile_image_90}
/>
</figure>
<h3>{name}</h3>
<p>{username}</p>
</div>
<form>
<label htmlFor="summary">
Bio
<textarea
name="summary"
id="summary"
placeholder="Tell us about yourself"
onChange={this.handleChange}
maxLength="120"
/>
</label>
<label htmlFor="location">
Where are you located?
<input
type="text"
name="location"
id="location"
placeholder="e.g. New York, NY"
onChange={this.handleChange}
maxLength="60"
/>
</label>
<label htmlFor="employment_title">
What is your title?
<input
type="text"
name="employment_title"
id="employment_title"
placeholder="e.g. Software Engineer"
onChange={this.handleChange}
maxLength="60"
/>
</label>
<label htmlFor="employer_name">
Where do you work?
<input
type="text"
name="employer_name"
id="employer_name"
placeholder="e.g. Company name, self-employed, etc."
onChange={this.handleChange}
maxLength="60"
className="onboarding-form-input--last"
/>
</label>
</form>
</div>
</div>
);
}
}
ProfileForm.propTypes = {
prev: PropTypes.func.isRequired,
next: PropTypes.func.isRequired,
slidesCount: PropTypes.number.isRequired,
currentSlideIndex: PropTypes.func.isRequired,
};
export default ProfileForm;
/* eslint-enable camelcase */