mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
96 lines
2.8 KiB
JavaScript
96 lines
2.8 KiB
JavaScript
import React, { Component } from "react";
|
|
import PropTypes from "prop-types";
|
|
|
|
import Form from "components/forms/Form";
|
|
import formFieldInterface from "interfaces/form_field";
|
|
import Button from "components/buttons/Button";
|
|
import InputFieldWithIcon from "components/forms/fields/InputFieldWithIcon";
|
|
import helpers from "./helpers";
|
|
|
|
const formFields = ["name", "password", "password_confirmation", "email"];
|
|
const { validate } = helpers;
|
|
|
|
class AdminDetails extends Component {
|
|
static propTypes = {
|
|
className: PropTypes.string,
|
|
currentPage: PropTypes.bool,
|
|
fields: PropTypes.shape({
|
|
name: formFieldInterface.isRequired,
|
|
email: formFieldInterface.isRequired,
|
|
password: formFieldInterface.isRequired,
|
|
password_confirmation: formFieldInterface.isRequired,
|
|
}).isRequired,
|
|
handleSubmit: PropTypes.func.isRequired,
|
|
};
|
|
|
|
componentDidUpdate(prevProps) {
|
|
if (
|
|
this.props.currentPage &&
|
|
this.props.currentPage !== prevProps.currentPage
|
|
) {
|
|
// Component has a transition duration of 300ms set in
|
|
// RegistrationForm/_styles.scss. We need to wait 300ms before
|
|
// calling .focus() to preserve smooth transition.
|
|
setTimeout(() => {
|
|
this.firstInput.input.focus();
|
|
}, 300);
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const { className, currentPage, fields, handleSubmit } = this.props;
|
|
const tabIndex = currentPage ? 1 : -1;
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit} className={className} autoComplete="off">
|
|
<div className="registration-fields">
|
|
<InputFieldWithIcon
|
|
{...fields.name}
|
|
placeholder="Full name"
|
|
tabIndex={tabIndex}
|
|
autofocus={currentPage}
|
|
ref={(input) => {
|
|
this.firstInput = input;
|
|
}}
|
|
inputOptions={{
|
|
maxLength: "80",
|
|
}}
|
|
/>
|
|
<InputFieldWithIcon
|
|
{...fields.email}
|
|
placeholder="Email"
|
|
tabIndex={tabIndex}
|
|
/>
|
|
<InputFieldWithIcon
|
|
{...fields.password}
|
|
placeholder="Password"
|
|
type="password"
|
|
tabIndex={tabIndex}
|
|
hint={[
|
|
"Must include 12 characters, at least 1 number (e.g. 0 - 9), and at least 1 symbol (e.g. &*#)",
|
|
]}
|
|
/>
|
|
<InputFieldWithIcon
|
|
{...fields.password_confirmation}
|
|
placeholder="Confirm password"
|
|
type="password"
|
|
tabIndex={tabIndex}
|
|
/>
|
|
</div>
|
|
<Button
|
|
type="submit"
|
|
tabIndex={tabIndex}
|
|
disabled={!currentPage}
|
|
className="button button--brand"
|
|
>
|
|
Next
|
|
</Button>
|
|
</form>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Form(AdminDetails, {
|
|
fields: formFields,
|
|
validate,
|
|
});
|