docbrown/app/javascript/onboarding/components/FollowUsers.jsx

237 lines
6.9 KiB
JavaScript

import { h, Component } from 'preact';
import PropTypes from 'prop-types';
import he from 'he';
import { getContentOfToken } from '../utilities';
import { Navigation } from './Navigation';
export 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({
selectedUsers: data,
users: data,
});
});
const csrfToken = getContentOfToken('csrf-token');
fetch('/onboarding', {
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
? 'fw-bold color-base-60 inline-block fs-base'
: 'color-base-60 inline-block fs-base';
return <p className={klassName}>{followingStatus}</p>;
}
renderFollowToggle() {
const { users, selectedUsers } = this.state;
let followText = '';
if (selectedUsers.length !== users.length) {
if (users.length === 1) {
followText = `Select ${users.length} person`;
} else {
followText = `Select all ${users.length} people`;
}
} else {
followText = 'Deselect all';
}
return (
<button
type="button"
class="crayons-btn crayons-btn--ghost-brand -ml-2"
onClick={() => this.handleSelectAll()}
>
{followText}
</button>
);
}
render() {
const { users, selectedUsers } = this.state;
const { prev, slidesCount, currentSlideIndex } = this.props;
const canSkip = selectedUsers.length === 0;
return (
<div
data-testid="onboarding-follow-users"
className="onboarding-main crayons-modal crayons-modal--large"
>
<div
className="crayons-modal__box overflow-auto"
role="dialog"
aria-labelledby="title"
aria-describedby="subtitle"
>
<Navigation
prev={prev}
next={this.handleComplete}
canSkip={canSkip}
slidesCount={slidesCount}
currentSlideIndex={currentSlideIndex}
/>
<div className="onboarding-content toggle-bottom">
<header className="onboarding-content-header">
<h1 id="title" className="title">
Suggested people to follow
</h1>
<h2 id="subtitle" className="subtitle">
Let&apos;s review a few things first
</h2>
<div className="onboarding-selection-status">
{this.renderFollowCount()}
{this.renderFollowToggle()}
</div>
</header>
<fieldset data-testid="onboarding-users">
{users.map((user) => {
const selected = selectedUsers.includes(user);
return (
<div
key={user.id}
data-testid="onboarding-user-button"
className={`user content-row ${
selected ? 'selected' : 'unselected'
}`}
>
<figure className="user-avatar-container">
<img
className="user-avatar"
src={user.profile_image_url}
alt=""
loading="lazy"
/>
</figure>
<div className="user-info">
<h4 className="user-name">{user.name}</h4>
<p className="user-summary">
{he.unescape(user.summary || '')}
</p>
</div>
<label
className={`relative user-following-status crayons-btn ${
selected ? 'color-primary' : 'crayons-btn--outlined'
}`}
>
<input
aria-label={`Follow ${user.name}`}
type="checkbox"
checked={selected}
className="absolute opacity-0 absolute top-0 bottom-0 right-0 left-0"
onClick={() => this.handleClick(user)}
data-testid="onboarding-user-following-status"
/>
{selected ? 'Following' : 'Follow'}
</label>
</div>
);
})}
</fieldset>
</div>
</div>
</div>
);
}
}
FollowUsers.propTypes = {
prev: PropTypes.func.isRequired,
next: PropTypes.string.isRequired,
slidesCount: PropTypes.number.isRequired,
currentSlideIndex: PropTypes.func.isRequired,
};