fleet/frontend/components/forms/InviteUserForm/InviteUserForm.jsx
Mike Stone e2a5502e21 Select targets (#340)
* Api client get targets

* Allow entities to parse full api response

* responsive nav style fixes

* Add disabled prop to button

* Add targets from API to target select input

* customize target rendering in input field

* call API on select target input change

* display # hosts selected

* Adds new icons to icon font

* Customize select targets input options

* Update directory structure

* restructure select targets input

* Adds hosts to labels

* Host modal styles

* ShadowBoxInput component

* TargetInfoModal for labels

* consistent entity response in api client stubs

* Fix bug removing multiple hosts in target select input

* change Button component to use css classes
2016-10-27 12:14:30 -04:00

176 lines
3.8 KiB
JavaScript

import React, { Component, PropTypes } from 'react';
import radium from 'radium';
import componentStyles from './styles';
import Button from '../../buttons/Button';
import InputFieldWithIcon from '../fields/InputFieldWithIcon';
import userInterface from '../../../interfaces/user';
import validatePresence from '../validators/validate_presence';
import validEmail from '../validators/valid_email';
const baseClass = 'invite-user-form';
class InviteUserForm extends Component {
static propTypes = {
error: PropTypes.string,
invitedBy: userInterface,
onCancel: PropTypes.func,
onSubmit: PropTypes.func,
};
constructor (props) {
super(props);
this.state = {
errors: {
admin: null,
email: null,
name: null,
},
formData: {
admin: 'false',
email: null,
name: null,
},
};
}
componentWillReceiveProps (nextProps) {
const { error } = nextProps;
const { errors } = this.state;
if (this.props.error !== error) {
this.setState({
errors: {
...errors,
email: error,
},
});
}
}
onInputChange = (formField) => {
return ({ target }) => {
const { errors, formData } = this.state;
const { value } = target;
this.setState({
errors: {
...errors,
[formField]: null,
},
formData: {
...formData,
[formField]: value,
},
});
};
}
onFormSubmit = (evt) => {
evt.preventDefault();
const valid = this.validate();
if (valid) {
const { formData: { admin, email, name } } = this.state;
const { invitedBy, onSubmit } = this.props;
return onSubmit({
admin: admin === 'true',
email,
invited_by: invitedBy.id,
name,
});
}
return false;
}
validate = () => {
const {
errors,
formData: { email },
} = this.state;
if (!validatePresence(email)) {
this.setState({
errors: {
...errors,
email: 'Email field must be completed',
},
});
return false;
}
if (!validEmail(email)) {
this.setState({
errors: {
...errors,
email: `${email} is not a valid email`,
},
});
return false;
}
return true;
}
render () {
const { buttonWrapperStyles, radioElementStyles, roleTitleStyles } = componentStyles;
const { errors, formData: { admin } } = this.state;
const { onCancel } = this.props;
const { onFormSubmit, onInputChange } = this;
return (
<form onSubmit={onFormSubmit}>
<InputFieldWithIcon
autofocus
error={errors.name}
name="name"
onChange={onInputChange('name')}
placeholder="Name"
/>
<InputFieldWithIcon
error={errors.email}
name="email"
onChange={onInputChange('email')}
placeholder="Email"
/>
<div style={radioElementStyles}>
<p style={roleTitleStyles}>role</p>
<input
checked={admin === 'false'}
onChange={onInputChange('admin')}
type="radio"
value="false"
/> USER (default)
<br />
<input
checked={admin === 'true'}
onChange={onInputChange('admin')}
type="radio"
value="true"
/> ADMIN
</div>
<div style={buttonWrapperStyles}>
<Button
className={`${baseClass}__btn`}
text="Invite"
type="submit"
/>
<Button
className={`${baseClass}__btn`}
onClick={onCancel}
text="Cancel"
type="input"
variant="inverse"
/>
</div>
</form>
);
}
}
export default radium(InviteUserForm);