mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
f099b2ae22
* Creates new PackComposerPage at /packs/new * Creates PackForm component * Adds PackForm to PackComposerPage * Creates QueriesListItem * Creates QueriesList * Creates QueriesListWrapper * Get all queries when the Packs Composer Page loads * Form HOC handles updates to formData prop * Creates form to configure scheduled queries * QueriesListWrapper renders ConfigurePackQueryForm * search queries input filters queries list * Empty state text * create pack when user submits the new pack form * Adds Edit pack page to /packs/:pack_id/edit * API client - get scheduled queries for a pack * API client - create scheduled query * Redux config for scheduled queries * Remove scheduled queries from packs * Add labels to pack on create * Add disabled state to the select targets dropdown * Adds edit route and pushes to new route on edit click * Adds cancel button to edit pack form * Adds Checkbox that selects all scheduled queries in table
116 lines
2.7 KiB
JavaScript
116 lines
2.7 KiB
JavaScript
import React, { Component, PropTypes } from 'react';
|
|
import { isEqual, noop } from 'lodash';
|
|
|
|
const defaultValidate = () => { return { valid: true, errors: {} }; };
|
|
|
|
export default (WrappedComponent, { fields, validate = defaultValidate }) => {
|
|
class Form extends Component {
|
|
static propTypes = {
|
|
errors: PropTypes.object, // eslint-disable-line react/forbid-prop-types
|
|
formData: PropTypes.object, // eslint-disable-line react/forbid-prop-types
|
|
handleSubmit: PropTypes.func,
|
|
onChangeFunc: PropTypes.func,
|
|
};
|
|
|
|
static defaultProps = {
|
|
errors: {},
|
|
formData: {},
|
|
};
|
|
|
|
constructor (props) {
|
|
super(props);
|
|
|
|
const { errors, formData } = props;
|
|
|
|
this.state = { errors, formData };
|
|
}
|
|
|
|
componentWillReceiveProps (nextProps) {
|
|
const { formData: formDataProp } = nextProps;
|
|
const { formData: oldFormDataProp } = this.props;
|
|
|
|
if (!isEqual(formDataProp, oldFormDataProp)) {
|
|
const { formData } = this.state;
|
|
|
|
this.setState({
|
|
formData: {
|
|
...formData,
|
|
...formDataProp,
|
|
},
|
|
});
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
onFieldChange = (fieldName) => {
|
|
return (value) => {
|
|
const { errors, formData } = this.state;
|
|
const { onChangeFunc = noop } = this.props;
|
|
|
|
onChangeFunc(fieldName, value);
|
|
|
|
this.setState({
|
|
errors: { ...errors, [fieldName]: null },
|
|
formData: { ...formData, [fieldName]: value },
|
|
});
|
|
|
|
return false;
|
|
};
|
|
}
|
|
|
|
onSubmit = (evt) => {
|
|
evt.preventDefault();
|
|
|
|
const { handleSubmit } = this.props;
|
|
const { errors, formData } = this.state;
|
|
const { valid, errors: clientErrors } = validate(formData);
|
|
|
|
if (valid) {
|
|
return handleSubmit(formData);
|
|
}
|
|
|
|
this.setState({
|
|
errors: { ...errors, ...clientErrors },
|
|
});
|
|
|
|
return false;
|
|
}
|
|
|
|
getError = (fieldName) => {
|
|
const { errors } = this.state;
|
|
const { errors: serverErrors } = this.props;
|
|
|
|
return errors[fieldName] || serverErrors[fieldName];
|
|
}
|
|
|
|
getFields = () => {
|
|
const { getError, getValue, onFieldChange } = this;
|
|
const fieldProps = {};
|
|
|
|
fields.forEach((field) => {
|
|
fieldProps[field] = {
|
|
error: getError(field),
|
|
name: field,
|
|
onChange: onFieldChange(field),
|
|
value: getValue(field),
|
|
};
|
|
});
|
|
|
|
return fieldProps;
|
|
}
|
|
|
|
getValue = (fieldName) => {
|
|
return this.state.formData[fieldName];
|
|
}
|
|
|
|
render () {
|
|
const { getFields, onSubmit, props } = this;
|
|
|
|
return <WrappedComponent {...props} fields={getFields()} handleSubmit={onSubmit} />;
|
|
}
|
|
}
|
|
|
|
return Form;
|
|
};
|