* set up refactored onboarding * create onboarding page * add in first slide and change slide functionality * fix test suite * profile refactor * profile refactor * refactor to api * add checkbox fields * add checkbox fields * remove puts * add basic css * add styling * add redirect * hide back and next at first and last slides * test refactored onboarding * test refactored onboarding * remove article edits * Fix schema * Add deleted file back in * Add default value for checked_t&c column * Adjust HTML structure to keep nav buttons in place * Fix ESLint issues on Onboarding.jsx file * Handling for undefined or empty followedTags on getUserTags * Fix codeclimate issues * Fix codeclimate issues * Fix more codeclimate issues * Fix more codeclimate issues * Update Onboarding snapshots * Uncheck the CoC and T&C checkboxes on render * Update snapshots * Return false instead of raising error * Update spec to use new onboarding * Redirect to onboarding if haven't seen it yet * Prevent redirect to onboarding from /signout_confirm * Use assign_attributes instead of saving twice * Move COC and T&C checkbox page to second slide * Add 'go back to original page' functionality * Reuse ready prototype logic * Keep track of the last visited onboarding page * Fix email subscription bug * Fix overflow issue for tags page * Remove height to prevent page container scrolling * Check for CoC and T&C for displaying onboarding * Add InstantClick redirect and preserve referrer in client * Fix async update + check by using localStorage * Turn off onboarding for tests * Finalize design for onboarding * Finalize design for onboarding * Make bulk follows during onboarding * Fix bulk follow test
129 lines
3 KiB
JavaScript
129 lines
3 KiB
JavaScript
import { h, Component } from 'preact';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Navigation from './Navigation';
|
|
import { getContentOfToken } from '../utilities';
|
|
|
|
class PersonalInfoForm extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.handleChange = this.handleChange.bind(this);
|
|
this.onSubmit = this.onSubmit.bind(this);
|
|
|
|
this.state = {
|
|
location: '',
|
|
employment_title: '',
|
|
employer_name: '',
|
|
last_onboarding_page: 'personal info form',
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
const csrfToken = getContentOfToken('csrf-token');
|
|
const { last_onboarding_page } = this.state;
|
|
fetch('/onboarding_update', {
|
|
method: 'PATCH',
|
|
headers: {
|
|
'X-CSRF-Token': csrfToken,
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({ user: { last_onboarding_page } }),
|
|
credentials: 'same-origin',
|
|
});
|
|
}
|
|
|
|
onSubmit() {
|
|
const csrfToken = getContentOfToken('csrf-token');
|
|
|
|
const {
|
|
last_onboarding_page,
|
|
location,
|
|
employer_name,
|
|
employment_title,
|
|
} = this.state;
|
|
|
|
fetch('/onboarding_update', {
|
|
method: 'PATCH',
|
|
headers: {
|
|
'X-CSRF-Token': csrfToken,
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({
|
|
user: {
|
|
last_onboarding_page,
|
|
location,
|
|
employer_name,
|
|
employment_title,
|
|
},
|
|
}),
|
|
credentials: 'same-origin',
|
|
}).then(response => {
|
|
if (response.ok) {
|
|
const { next } = this.props;
|
|
next();
|
|
}
|
|
});
|
|
}
|
|
|
|
handleChange(e) {
|
|
const { name, value } = e.target;
|
|
|
|
this.setState({
|
|
[name]: value,
|
|
});
|
|
}
|
|
|
|
render() {
|
|
const { prev } = this.props;
|
|
return (
|
|
<div className="onboarding-main">
|
|
<div className="onboarding-content about">
|
|
<h2>About You!</h2>
|
|
<form>
|
|
<label htmlFor="location">
|
|
Where are you located?
|
|
<input
|
|
type="text"
|
|
name="location"
|
|
id="location"
|
|
onChange={this.handleChange}
|
|
maxLength="60"
|
|
/>
|
|
</label>
|
|
|
|
<label htmlFor="employment_title">
|
|
What is your title?
|
|
<input
|
|
type="text"
|
|
name="employment_title"
|
|
id="employment_title"
|
|
onChange={this.handleChange}
|
|
maxLength="60"
|
|
/>
|
|
</label>
|
|
|
|
<label htmlFor="employer_name">
|
|
Where do you work?
|
|
<input
|
|
type="text"
|
|
name="employer_name"
|
|
id="employer_name"
|
|
onChange={this.handleChange}
|
|
maxLength="60"
|
|
/>
|
|
</label>
|
|
</form>
|
|
</div>
|
|
<Navigation prev={prev} next={this.onSubmit} />
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
PersonalInfoForm.propTypes = {
|
|
prev: PropTypes.func.isRequired,
|
|
next: PropTypes.string.isRequired,
|
|
};
|
|
|
|
export default PersonalInfoForm;
|