2018-02-07 18:06:07 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React from 'react';
|
2016-07-13 20:13:28 +00:00
|
|
|
import { reduxForm } from 'redux-form';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
import InlineSVG from 'react-inlinesvg';
|
2017-02-22 19:29:35 +00:00
|
|
|
import NewFileForm from './NewFileForm';
|
|
|
|
import FileUploader from './FileUploader';
|
|
|
|
|
2016-07-13 20:13:28 +00:00
|
|
|
const exitUrl = require('../../../images/exit.svg');
|
|
|
|
|
2016-07-15 23:05:18 +00:00
|
|
|
|
2016-07-13 20:13:28 +00:00
|
|
|
// At some point this will probably be generalized to a generic modal
|
|
|
|
// in which you can insert different content
|
|
|
|
// but for now, let's just make this work
|
2016-11-30 00:18:11 +00:00
|
|
|
class NewFileModal extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.focusOnModal = this.focusOnModal.bind(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
this.focusOnModal();
|
|
|
|
}
|
|
|
|
|
|
|
|
focusOnModal() {
|
2017-02-22 19:29:35 +00:00
|
|
|
this.modal.focus();
|
2016-11-30 00:18:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const modalClass = classNames({
|
2017-02-22 19:29:35 +00:00
|
|
|
'modal': true,
|
2016-11-30 00:18:11 +00:00
|
|
|
'modal--reduced': !this.props.canUploadMedia
|
|
|
|
});
|
|
|
|
return (
|
2018-05-09 02:10:52 +00:00
|
|
|
<section className={modalClass} ref={(element) => { this.modal = element; }}>
|
2016-11-30 00:18:11 +00:00
|
|
|
<div className="modal-content">
|
|
|
|
<div className="modal__header">
|
|
|
|
<h2 className="modal__title">Add File</h2>
|
|
|
|
<button className="modal__exit-button" onClick={this.props.closeModal}>
|
|
|
|
<InlineSVG src={exitUrl} alt="Close New File Modal" />
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<NewFileForm
|
|
|
|
focusOnModal={this.focusOnModal}
|
|
|
|
{...this.props}
|
|
|
|
/>
|
|
|
|
{(() => {
|
|
|
|
if (this.props.canUploadMedia) {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<p className="modal__divider">OR</p>
|
|
|
|
<FileUploader />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return '';
|
|
|
|
})()}
|
2016-07-13 20:13:28 +00:00
|
|
|
</div>
|
2016-11-30 00:18:11 +00:00
|
|
|
</section>
|
|
|
|
);
|
|
|
|
}
|
2016-07-13 20:13:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NewFileModal.propTypes = {
|
2016-07-21 02:18:20 +00:00
|
|
|
closeModal: PropTypes.func.isRequired,
|
|
|
|
canUploadMedia: PropTypes.bool.isRequired
|
2016-07-13 20:13:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
function validate(formProps) {
|
|
|
|
const errors = {};
|
|
|
|
|
|
|
|
if (!formProps.name) {
|
|
|
|
errors.name = 'Please enter a name';
|
2018-08-29 19:06:41 +00:00
|
|
|
} else if (!formProps.name.match(/(.+\.js$|.+\.css$|.+\.json$|.+\.txt$|.+\.csv$|.+\.tsv$)/i)) {
|
|
|
|
errors.name = 'File must be of type JavaScript, CSS, JSON, TXT, CSV, or TSV.';
|
2016-07-13 20:13:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return errors;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default reduxForm({
|
|
|
|
form: 'new-file',
|
|
|
|
fields: ['name'],
|
|
|
|
validate
|
2016-08-30 18:39:37 +00:00
|
|
|
})(NewFileModal);
|