* 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
69 lines
1.7 KiB
JavaScript
69 lines
1.7 KiB
JavaScript
import 'preact/devtools';
|
|
import { h, Component } from 'preact';
|
|
|
|
import IntroSlide from './components/IntroSlide';
|
|
import PersonalInfoForm from './components/PersonalInfoForm';
|
|
import EmailListTermsConditionsForm from './components/EmailListTermsConditionsForm';
|
|
import ClosingSlide from './components/ClosingSlide';
|
|
import FollowTags from './components/FollowTags';
|
|
import FollowUsers from './components/FollowUsers';
|
|
import BioForm from './components/BioForm';
|
|
|
|
export default class Onboarding extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.nextSlide = this.nextSlide.bind(this);
|
|
this.prevSlide = this.prevSlide.bind(this);
|
|
|
|
const slides = [
|
|
IntroSlide,
|
|
EmailListTermsConditionsForm,
|
|
BioForm,
|
|
PersonalInfoForm,
|
|
FollowTags,
|
|
FollowUsers,
|
|
ClosingSlide,
|
|
];
|
|
|
|
const url = new URL(window.location);
|
|
const previousLocation = url.searchParams.get('referrer');
|
|
|
|
this.slides = slides.map(SlideComponent => (
|
|
<SlideComponent
|
|
next={this.nextSlide}
|
|
prev={this.prevSlide}
|
|
previousLocation={previousLocation}
|
|
/>
|
|
));
|
|
|
|
this.state = {
|
|
currentSlide: 0,
|
|
};
|
|
}
|
|
|
|
nextSlide() {
|
|
const { currentSlide } = this.state;
|
|
const nextSlide = currentSlide + 1;
|
|
if (nextSlide < this.slides.length) {
|
|
this.setState({
|
|
currentSlide: nextSlide,
|
|
});
|
|
}
|
|
}
|
|
|
|
prevSlide() {
|
|
const { currentSlide } = this.state;
|
|
const prevSlide = currentSlide - 1;
|
|
if (prevSlide >= 0) {
|
|
this.setState({
|
|
currentSlide: prevSlide,
|
|
});
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const { currentSlide } = this.state;
|
|
return <div className="onboarding-body">{this.slides[currentSlide]}</div>;
|
|
}
|
|
}
|