mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-03 08:11:08 +00:00
79 lines
2.1 KiB
JavaScript
79 lines
2.1 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Button, Modal, ModalBody, ModalFooter } from 'reactstrap';
|
|
import { gettext } from '../../utils/constants';
|
|
import FileChooser from '../file-chooser';
|
|
import SeahubModalHeader from '@/components/common/seahub-modal-header';
|
|
|
|
const propTypes = {
|
|
repoID: PropTypes.string.isRequired,
|
|
filePath: PropTypes.string.isRequired,
|
|
toggleCancel: PropTypes.func.isRequired,
|
|
getInsertLink: PropTypes.func.isRequired,
|
|
};
|
|
|
|
class InsertFileDialog extends React.Component {
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
repo: null,
|
|
selectedPath: '',
|
|
};
|
|
}
|
|
|
|
handleInsert = () => {
|
|
this.props.getInsertLink(this.state.repo.repo_id, this.state.selectedPath);
|
|
this.props.toggleCancel();
|
|
};
|
|
|
|
onDirentItemClick = (repo, selectedPath, dirent) => {
|
|
if (dirent.type === 'file') {
|
|
this.setState({
|
|
repo: repo,
|
|
selectedPath: selectedPath,
|
|
});
|
|
}
|
|
else {
|
|
this.setState({
|
|
repo: null,
|
|
selectedPath: '',
|
|
});
|
|
}
|
|
};
|
|
|
|
onRepoItemClick = () => {
|
|
this.setState({
|
|
repo: null,
|
|
selectedPath: '',
|
|
});
|
|
};
|
|
|
|
render() {
|
|
const toggle = this.props.toggleCancel;
|
|
return (
|
|
<Modal isOpen={true} toggle={toggle}>
|
|
<SeahubModalHeader toggle={toggle}>{gettext('Select File')}</SeahubModalHeader>
|
|
<ModalBody>
|
|
<FileChooser
|
|
isShowFile={true}
|
|
repoID={this.props.repoID}
|
|
onDirentItemClick={this.onDirentItemClick}
|
|
onRepoItemClick={this.onRepoItemClick}
|
|
mode="current_repo_and_other_repos"
|
|
/>
|
|
</ModalBody>
|
|
<ModalFooter>
|
|
<Button color="secondary" onClick={toggle}>{gettext('Cancel')}</Button>
|
|
{this.state.selectedPath ? <Button color="primary" onClick={this.handleInsert}>{gettext('Submit')}</Button>
|
|
: <Button color="primary" disabled>{gettext('Submit')}</Button>}
|
|
</ModalFooter>
|
|
</Modal>
|
|
);
|
|
}
|
|
}
|
|
|
|
InsertFileDialog.propTypes = propTypes;
|
|
|
|
export default InsertFileDialog;
|