mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
142 lines
3.1 KiB
JavaScript
142 lines
3.1 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 validatePresence from '../validators/validate_presence';
|
|
import validEmail from '../validators/valid_email';
|
|
|
|
class InviteUserForm extends Component {
|
|
static propTypes = {
|
|
onCancel: PropTypes.func,
|
|
onSubmit: PropTypes.func,
|
|
};
|
|
|
|
constructor (props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
errors: {
|
|
email: null,
|
|
role: null,
|
|
},
|
|
formData: {
|
|
email: null,
|
|
role: 'user',
|
|
},
|
|
};
|
|
}
|
|
|
|
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 } = this.state;
|
|
const { onSubmit } = this.props;
|
|
|
|
return onSubmit(formData);
|
|
}
|
|
|
|
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 { buttonStyles, buttonWrapperStyles, radioElementStyles, roleTitleStyles } = componentStyles;
|
|
const { errors, formData: { role } } = this.state;
|
|
const { onCancel } = this.props;
|
|
const { onFormSubmit, onInputChange } = this;
|
|
|
|
return (
|
|
<form onSubmit={onFormSubmit}>
|
|
<InputFieldWithIcon
|
|
autofocus
|
|
error={errors.email}
|
|
name="email"
|
|
onChange={onInputChange('email')}
|
|
placeholder="Email"
|
|
/>
|
|
<div style={radioElementStyles}>
|
|
<p style={roleTitleStyles}>role</p>
|
|
<input
|
|
checked={role === 'user'}
|
|
onChange={onInputChange('role')}
|
|
type="radio"
|
|
value="user"
|
|
/> USER (default)
|
|
<br />
|
|
<input
|
|
checked={role === 'admin'}
|
|
onChange={onInputChange('role')}
|
|
type="radio"
|
|
value="admin"
|
|
/> ADMIN
|
|
</div>
|
|
<div style={buttonWrapperStyles}>
|
|
<Button
|
|
onClick={onCancel}
|
|
style={buttonStyles}
|
|
text="Cancel"
|
|
variant="inverse"
|
|
/>
|
|
<Button
|
|
style={buttonStyles}
|
|
text="Invite"
|
|
type="submit"
|
|
/>
|
|
</div>
|
|
</form>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default radium(InviteUserForm);
|