* 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
198 lines
5.5 KiB
JavaScript
198 lines
5.5 KiB
JavaScript
import { h, Component } from 'preact';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Navigation from './Navigation';
|
|
import { getContentOfToken } from '../utilities';
|
|
|
|
class FollowUsers extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.handleClick = this.handleClick.bind(this);
|
|
this.handleComplete = this.handleComplete.bind(this);
|
|
|
|
this.state = {
|
|
users: [],
|
|
selectedUsers: [],
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
fetch('/users?state=follow_suggestions', {
|
|
headers: {
|
|
Accept: 'application/json',
|
|
'Content-Type': 'application/json',
|
|
},
|
|
credentials: 'same-origin',
|
|
})
|
|
.then((response) => response.json())
|
|
.then((data) => {
|
|
this.setState({ users: data });
|
|
});
|
|
|
|
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: 'v2: follow users page' },
|
|
}),
|
|
credentials: 'same-origin',
|
|
});
|
|
}
|
|
|
|
handleComplete() {
|
|
const csrfToken = getContentOfToken('csrf-token');
|
|
const { selectedUsers } = this.state;
|
|
const { next } = this.props;
|
|
|
|
fetch('/api/follows', {
|
|
method: 'POST',
|
|
headers: {
|
|
'X-CSRF-Token': csrfToken,
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({ users: selectedUsers }),
|
|
credentials: 'same-origin',
|
|
});
|
|
|
|
next();
|
|
}
|
|
|
|
handleSelectAll() {
|
|
const { selectedUsers, users } = this.state;
|
|
if (selectedUsers.length === users.length) {
|
|
this.setState({
|
|
selectedUsers: [],
|
|
});
|
|
} else {
|
|
this.setState({
|
|
selectedUsers: users,
|
|
});
|
|
}
|
|
}
|
|
|
|
handleClick(user) {
|
|
let { selectedUsers } = this.state;
|
|
|
|
if (!selectedUsers.includes(user)) {
|
|
this.setState((prevState) => ({
|
|
selectedUsers: [...prevState.selectedUsers, user],
|
|
}));
|
|
} else {
|
|
selectedUsers = [...selectedUsers];
|
|
const indexToRemove = selectedUsers.indexOf(user);
|
|
selectedUsers.splice(indexToRemove, 1);
|
|
this.setState({
|
|
selectedUsers,
|
|
});
|
|
}
|
|
}
|
|
|
|
renderFollowCount() {
|
|
const { users, selectedUsers } = this.state;
|
|
let followingStatus;
|
|
if (selectedUsers.length === 0) {
|
|
followingStatus = "You're not following anyone";
|
|
} else if (selectedUsers.length === 1) {
|
|
followingStatus = "You're following 1 person";
|
|
} else if (selectedUsers.length === users.length) {
|
|
followingStatus = `You're following ${selectedUsers.length} people (everyone)`;
|
|
} else {
|
|
followingStatus = `You're following ${selectedUsers.length} people`;
|
|
}
|
|
const klassName =
|
|
selectedUsers.length > 0
|
|
? 'follow-count--active'
|
|
: 'follow-count-message';
|
|
|
|
return <p className={klassName}>{followingStatus}</p>;
|
|
}
|
|
|
|
renderFollowToggle() {
|
|
const { users, selectedUsers } = this.state;
|
|
if (users.length === 0) {
|
|
return '';
|
|
}
|
|
|
|
return (
|
|
<button type="button" onClick={() => this.handleSelectAll()}>
|
|
{selectedUsers.length !== users.length
|
|
? `Select all ${users.length} people`
|
|
: 'Deselect all'}
|
|
</button>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const { users, selectedUsers } = this.state;
|
|
const { prev, slidesCount, currentSlideIndex } = this.props;
|
|
const canSkip = selectedUsers.length === 0;
|
|
|
|
return (
|
|
<div className="onboarding-main">
|
|
<Navigation
|
|
prev={prev}
|
|
next={this.handleComplete}
|
|
canSkip={canSkip}
|
|
slidesCount={slidesCount}
|
|
currentSlideIndex={currentSlideIndex}
|
|
/>
|
|
<div className="onboarding-content toggle-bottom">
|
|
<header className="onboarding-content-header">
|
|
<h1 className="title">Suggested people to follow</h1>
|
|
<h2 className="subtitle">Let's review a few things first</h2>
|
|
</header>
|
|
|
|
<div className="onboarding-modal-scroll-container">
|
|
{users.map((user) => (
|
|
<button
|
|
type="button"
|
|
onClick={() => this.handleClick(user)}
|
|
onKeyDown={() => this.handleKeyDown(user)}
|
|
className={
|
|
selectedUsers.includes(user)
|
|
? 'user content-row selected'
|
|
: 'user content-row unselected'
|
|
}
|
|
>
|
|
<figure className="user-avatar-container">
|
|
<img
|
|
className="user-avatar"
|
|
src={user.profile_image_url}
|
|
alt="profile"
|
|
/>
|
|
</figure>
|
|
<div className="user-info">
|
|
<h4 className="user-name">{user.name}</h4>
|
|
<p className="user-summary">{user.summary}</p>
|
|
</div>
|
|
<button type="button" className="user-following-status">
|
|
{selectedUsers.includes(user) ? 'Following' : 'Follow'}
|
|
</button>
|
|
</button>
|
|
))}
|
|
</div>
|
|
</div>
|
|
<div className="onboarding-selection-status">
|
|
<div className="selection-status-content">
|
|
{this.renderFollowCount()}
|
|
{this.renderFollowToggle()}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
FollowUsers.propTypes = {
|
|
prev: PropTypes.func.isRequired,
|
|
next: PropTypes.string.isRequired,
|
|
slidesCount: PropTypes.number.isRequired,
|
|
currentSlideIndex: PropTypes.func.isRequired,
|
|
};
|
|
|
|
export default FollowUsers;
|