docbrown/app/javascript/onboarding/components/ProfileForm.jsx
Jeferson S. Brito 17bedfee55
Fix: onboarding profile bio textarea length (#18611)
Co-authored-by: Fernando Valverde <fernando@fdo.cr>
2022-11-01 17:25:38 -06:00

271 lines
8.1 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { h, Component } from 'preact';
import PropTypes from 'prop-types';
import { userData, updateOnboarding } from '../utilities';
import { Navigation } from './Navigation';
import { TextArea } from './ProfileForm/TextArea';
import { TextInput } from './ProfileForm/TextInput';
import { CheckBox } from './ProfileForm/CheckBox';
import { request } from '@utilities/http';
/* eslint-disable camelcase */
export class ProfileForm extends Component {
constructor(props) {
super(props);
this.handleFieldChange = this.handleFieldChange.bind(this);
this.handleColorPickerChange = this.handleColorPickerChange.bind(this);
this.onSubmit = this.onSubmit.bind(this);
this.user = userData();
this.state = {
groups: [],
formValues: { username: this.user.username },
canSkip: false,
last_onboarding_page: 'v2: personal info form',
};
}
componentDidMount() {
this.getProfileFieldGroups();
updateOnboarding('v2: personal info form');
}
async getProfileFieldGroups() {
try {
const response = await request(`/profile_field_groups?onboarding=true`);
if (response.ok) {
const data = await response.json();
this.setState({ groups: data.profile_field_groups });
} else {
throw new Error(response.statusText);
}
} catch (error) {
this.setState({ error: true, errorMessage: error.toString() });
}
}
async onSubmit() {
const { formValues, last_onboarding_page } = this.state;
const { username, ...newFormValues } = formValues;
try {
const response = await request('/onboarding', {
method: 'PATCH',
body: {
user: { last_onboarding_page, username },
profile: { ...newFormValues },
},
});
if (!response.ok) {
throw response;
}
const { next } = this.props;
next();
} catch (error) {
Honeybadger.notify(error.statusText);
let errorMessage = 'Unable to continue, please try again.';
if (error.status === 422) {
// parse validation error messages from UsersController#onboarding
const errorData = await error.json();
errorMessage = errorData.errors;
this.setState({ error: true, errorMessage });
} else {
this.setState({ error: true, errorMessage });
}
}
}
handleFieldChange(e) {
const { formValues } = { ...this.state };
const currentFormState = formValues;
const { name, value } = e.target;
currentFormState[name] = value;
this.setState({
formValues: currentFormState,
canSkip: this.formIsEmpty(currentFormState),
});
}
handleColorPickerChange(e) {
const { formValues } = { ...this.state };
const currentFormState = formValues;
const field = e.target;
const { name, value } = field;
const sibling = field.nextElementSibling
? field.nextElementSibling
: field.previousElementSibling;
sibling.value = value;
currentFormState[name] = value;
this.setState({
formValues: currentFormState,
canSkip: this.formIsEmpty(currentFormState),
});
}
formIsEmpty(currentFormState) {
// Once we've derived the new form values, check if the form is empty
// and use that value to set the `canSkip` property on the state.
Object.values(currentFormState).filter((v) => v.length > 0).length === 0;
}
renderAppropriateFieldType(field) {
switch (field.input_type) {
case 'check_box':
return (
<CheckBox
key={field.id}
field={field}
onFieldChange={this.handleFieldChange}
/>
);
case 'text_area':
return (
<TextArea
key={field.id}
field={field}
onFieldChange={this.handleFieldChange}
/>
);
default:
return (
<TextInput
key={field.id}
field={field}
onFieldChange={this.handleFieldChange}
/>
);
}
}
render() {
const { prev, slidesCount, currentSlideIndex, communityConfig } =
this.props;
const { profile_image_90, username, name } = this.user;
const { canSkip, groups = [], error, errorMessage } = this.state;
const SUMMARY_MAXLENGTH = 200;
const summaryCharacters = this.state?.formValues?.summary?.length || 0;
const sections = groups.map((group) => {
return (
<div key={group.id} class="onboarding-profile-sub-section">
<h2>{group.name}</h2>
{group.description && (
<div class="color-base-60">{group.description})</div>
)}
<div>
{group.profile_fields.map((field) => {
return this.renderAppropriateFieldType(field);
})}
</div>
</div>
);
});
return (
<div
data-testid="onboarding-profile-form"
className="onboarding-main crayons-modal crayons-modal--large"
>
<div
className="crayons-modal__box"
role="dialog"
aria-labelledby="title"
aria-describedby="subtitle"
>
<Navigation
prev={prev}
next={this.onSubmit}
canSkip={canSkip}
slidesCount={slidesCount}
currentSlideIndex={currentSlideIndex}
/>
{error && (
<div role="alert" class="crayons-notice crayons-notice--danger m-2">
An error occurred: {errorMessage}
</div>
)}
<div className="onboarding-content about">
<header className="onboarding-content-header">
<h1 id="title" className="title">
Build your profile
</h1>
<h2
id="subtitle"
data-testid="onboarding-profile-subtitle"
className="subtitle"
>
Tell us a little bit about yourself this is how others will
see you on {communityConfig.communityName}. Youll always be
able to edit this later in your Settings.
</h2>
</header>
<div className="current-user-info">
<figure className="current-user-avatar-container">
<img
className="current-user-avatar"
alt="profile"
src={profile_image_90}
/>
</figure>
<h3>{name}</h3>
</div>
<div className="onboarding-profile-sub-section">
<TextInput
field={{
attribute_name: 'username',
label: 'Username',
default_value: username,
required: true,
maxLength: 20,
}}
onFieldChange={this.handleFieldChange}
/>
</div>
<div className="onboarding-profile-sub-section">
<TextArea
field={{
attribute_name: 'summary',
label: 'Bio',
placeholder_text: 'Tell us a little about yourself',
required: false,
maxLength: SUMMARY_MAXLENGTH,
}}
onFieldChange={this.handleFieldChange}
/>
<p
id="summary-description"
class="crayons-field__description align-right"
>
<span class="screen-reader-only" aria-live="polite">
Remaining characters: {SUMMARY_MAXLENGTH - summaryCharacters}
</span>
<span id="summary-characters">
{summaryCharacters}/{SUMMARY_MAXLENGTH}
</span>
</p>
</div>
{sections}
</div>
</div>
</div>
);
}
}
ProfileForm.propTypes = {
prev: PropTypes.func.isRequired,
next: PropTypes.func.isRequired,
slidesCount: PropTypes.number.isRequired,
currentSlideIndex: PropTypes.number.isRequired,
communityConfig: PropTypes.shape({
communityName: PropTypes.string.isRequired,
}),
};
/* eslint-enable camelcase */