3253770ff6
* NewFileModal spanish transaltion translations.json (both languages EN - ES) changes in NewFileForm.jsx and NewFileModal.jsx to link the new keys. * NewFolderModal spanish translation translations.json (both languages EN - ES) changes in NewFileForm.jsx and NewFileModal.jsx to link the new keys.
57 lines
1.6 KiB
JavaScript
57 lines
1.6 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
import { reduxForm } from 'redux-form';
|
|
import { withTranslation } from 'react-i18next';
|
|
import i18n from 'i18next';
|
|
import NewFolderForm from './NewFolderForm';
|
|
|
|
import ExitIcon from '../../../images/exit.svg';
|
|
|
|
class NewFolderModal extends React.Component {
|
|
componentDidMount() {
|
|
this.newFolderModal.focus();
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<section className="modal" ref={(element) => { this.newFolderModal = element; }} >
|
|
<div className="modal-content-folder">
|
|
<div className="modal__header">
|
|
<h2 className="modal__title">{this.props.t('NewFolderModal.Title')}</h2>
|
|
<button
|
|
className="modal__exit-button"
|
|
onClick={this.props.closeModal}
|
|
aria-label={this.props.t('NewFolderModal.CloseButtonARIA')}
|
|
>
|
|
<ExitIcon focusable="false" aria-hidden="true" />
|
|
</button>
|
|
</div>
|
|
<NewFolderForm {...this.props} />
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
}
|
|
|
|
NewFolderModal.propTypes = {
|
|
closeModal: PropTypes.func.isRequired,
|
|
t: PropTypes.func.isRequired
|
|
};
|
|
|
|
function validate(formProps) {
|
|
const errors = {};
|
|
if (!formProps.name) {
|
|
errors.name = i18n.t('NewFolderModal.EnterName');
|
|
} else if (formProps.name.trim().length === 0) {
|
|
errors.name = i18n.t('NewFolderModal.EmptyName');
|
|
} else if (formProps.name.match(/\.+/i)) {
|
|
errors.name = i18n.t('NewFolderModal.InvalidExtension');
|
|
}
|
|
|
|
return errors;
|
|
}
|
|
export default withTranslation()(reduxForm({
|
|
form: 'new-folder',
|
|
fields: ['name'],
|
|
validate
|
|
})(NewFolderModal));
|