110 lines
3.5 KiB
JavaScript
Raw Normal View History

2018-02-28 14:57:45 +01:00
/**
*
* EditForm
*
*/
import React from 'react';
import { findIndex, get, isEmpty, map } from 'lodash';
2018-02-28 14:57:45 +01:00
import PropTypes from 'prop-types';
// You can find these components in either
// ./node_modules/strapi-helper-plugin/lib/src
// or strapi/packages/strapi-helper-plugin/lib/src
import Input from 'components/InputsIndex';
import styles from './styles.scss';
class EditForm extends React.Component {
2018-02-28 17:11:44 +01:00
getProviderForm = () => get(this.props.settings, ['providers', this.props.selectedProviderIndex, 'auth'], {});
2018-02-28 14:57:45 +01:00
generateSelectOptions = () => (
Object.keys(get(this.props.settings, 'providers', {})).reduce((acc, current) => {
const option = {
id: get(this.props.settings, ['providers', current, 'name']),
value: get(this.props.settings, ['providers', current, 'provider']),
};
acc.push(option);
return acc;
}, [])
)
render() {
return (
<div className={styles.editForm}>
<div className="row">
<Input
customBootstrapClass="col-md-6"
inputDescription={{ id: 'upload.EditForm.Input.select.inputDescription' }}
2018-03-01 11:34:55 +01:00
inputClassName={styles.inputStyle}
2018-02-28 14:57:45 +01:00
label={{ id: 'upload.EditForm.Input.select.label' }}
name="provider"
onChange={this.props.onChange}
selectOptions={this.generateSelectOptions()}
type="select"
value={get(this.props.modifiedData, 'provider')}
/>
</div>
{!isEmpty(this.getProviderForm()) && (
<div className={styles.subFormWrapper}>
<div className="row">
{map(this.getProviderForm(), (value, key) => (
<Input
2018-02-28 17:11:44 +01:00
didCheckErrors={this.props.didCheckErrors}
errors={get(this.props.formErrors, [findIndex(this.props.formErrors, ['name', key]), 'errors'])}
key={key}
label={{ id: value.label }}
name={key}
onChange={this.props.onChange}
selectOptions={value.values}
type={value.type === 'enum' ? 'select' : value.type}
validations={{ required: true }}
value={get(this.props.modifiedData, key, '')}
/>
))}
</div>
</div>
)}
<div className={styles.separator} />
2018-02-28 14:57:45 +01:00
<div className="row">
<Input
2018-03-01 11:34:55 +01:00
inputClassName={styles.inputStyle}
2018-02-28 14:57:45 +01:00
label={{ id: 'upload.EditForm.Input.number.label' }}
name="sizeLimit"
onChange={this.props.onChange}
type="number"
step={0.01}
value={get(this.props.modifiedData, 'sizeLimit', 1) / 1000}
2018-02-28 14:57:45 +01:00
/>
</div>
<div className={styles.separator} style={{ marginTop: '-4px'}} />
<div className="row">
<Input
label={{ id: 'upload.EditForm.Input.toggle.label' }}
name="enabled"
onChange={this.props.onChange}
type="toggle"
value={get(this.props.modifiedData, 'enabled', false)}
/>
</div>
</div>
);
}
}
EditForm.defaultProps = {
settings: {
providers: [],
},
};
2018-02-28 17:11:44 +01:00
2018-02-28 14:57:45 +01:00
EditForm.propTypes = {
2018-02-28 17:11:44 +01:00
didCheckErrors: PropTypes.bool.isRequired,
formErrors: PropTypes.array.isRequired,
2018-02-28 14:57:45 +01:00
modifiedData: PropTypes.object.isRequired,
onChange: PropTypes.func.isRequired,
2018-02-28 17:11:44 +01:00
selectedProviderIndex: PropTypes.number.isRequired,
2018-02-28 14:57:45 +01:00
settings: PropTypes.object,
};
export default EditForm;