* 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
94 lines
2.7 KiB
JavaScript
94 lines
2.7 KiB
JavaScript
import { h, Component } from 'preact';
|
||
import PropTypes from 'prop-types';
|
||
|
||
import Navigation from './Navigation';
|
||
import { getContentOfToken } from '../utilities';
|
||
|
||
class ClosingSlide extends Component {
|
||
componentDidMount() {
|
||
const csrfToken = getContentOfToken('csrf-token');
|
||
fetch('/onboarding_update', {
|
||
method: 'PATCH',
|
||
headers: {
|
||
'X-CSRF-Token': csrfToken,
|
||
'Content-Type': 'application/json',
|
||
},
|
||
body: JSON.stringify({ user: { last_onboarding_page: 'closing slide' } }),
|
||
credentials: 'same-origin',
|
||
});
|
||
}
|
||
|
||
render() {
|
||
const { previousLocation, prev, next } = this.props;
|
||
|
||
const previousLocationListElement = () => {
|
||
if (previousLocation !== 'none' && previousLocation !== null) {
|
||
return (
|
||
<a className="onboarding-previous-location" href={previousLocation}>
|
||
<div>Or go back to the page you were on before you signed up</div>
|
||
<code>{previousLocation}</code>
|
||
</a>
|
||
);
|
||
}
|
||
return null;
|
||
};
|
||
|
||
return (
|
||
<div className="onboarding-main">
|
||
<div className="onboarding-content">
|
||
<h1>
|
||
You‘re part of the community!
|
||
<span role="img" aria-label="tada">
|
||
{' '}
|
||
🎉
|
||
</span>
|
||
</h1>
|
||
<h2 style={{ textAlign: 'center' }}>What next?</h2>
|
||
<div className="onboarding-what-next">
|
||
<a href="/welcome">
|
||
Join the Welcome Thread
|
||
<p className="whatnext-emoji">
|
||
<span role="img" aria-label="tada">
|
||
😊
|
||
</span>
|
||
</p>
|
||
</a>
|
||
<a href="/new">
|
||
Write your first DEV post
|
||
<p className="whatnext-emoji">
|
||
<span role="img" aria-label="tada">
|
||
✍️
|
||
</span>
|
||
</p>
|
||
</a>
|
||
<a href="/top/infinity">
|
||
Read all-time top posts
|
||
<p className="whatnext-emoji">
|
||
<span role="img" aria-label="tada">
|
||
🤓
|
||
</span>
|
||
</p>
|
||
</a>
|
||
<a href="/settings">
|
||
Customize your profile
|
||
<p className="whatnext-emoji">
|
||
<span role="img" aria-label="tada">
|
||
💅
|
||
</span>
|
||
</p>
|
||
</a>
|
||
</div>
|
||
{previousLocationListElement()}
|
||
</div>
|
||
</div>
|
||
);
|
||
}
|
||
}
|
||
|
||
ClosingSlide.propTypes = {
|
||
prev: PropTypes.func.isRequired,
|
||
next: PropTypes.string.isRequired,
|
||
previousLocation: PropTypes.string.isRequired,
|
||
};
|
||
|
||
export default ClosingSlide;
|