mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-23 17:20:29 +00:00
88 lines
2.6 KiB
JavaScript
88 lines
2.6 KiB
JavaScript
import React, { Fragment } from 'react';
|
|
import { Button, Modal, ModalHeader, ModalBody, ModalFooter } from 'reactstrap';
|
|
import PropTypes from 'prop-types';
|
|
import toaster from '../toast';
|
|
import copy from '../copy-to-clipboard';
|
|
import { gettext } from '../../utils/constants';
|
|
import { seafileAPI } from '../../utils/seafile-api';
|
|
import { Utils } from '../../utils/utils';
|
|
|
|
import '../../css/internal-link.css';
|
|
|
|
const propTypes = {
|
|
path: PropTypes.string.isRequired,
|
|
repoID: PropTypes.string.isRequired,
|
|
};
|
|
|
|
class InternalLinkDialog extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
isOpen: false,
|
|
smartLink: '',
|
|
};
|
|
|
|
this.toggle = this.toggle.bind(this);
|
|
this.getInternalLink = this.getInternalLink.bind(this);
|
|
this.copyToClipBoard = this.copyToClipBoard.bind(this);
|
|
}
|
|
|
|
toggle() {
|
|
this.setState({
|
|
isOpen: !this.state.isOpen,
|
|
});
|
|
}
|
|
|
|
getInternalLink() {
|
|
let repoID = this.props.repoID;
|
|
let path = this.props.path;
|
|
seafileAPI.getInternalLink(repoID, path).then(res => {
|
|
this.setState({
|
|
isOpen: true,
|
|
smartLink: res.data.smart_link
|
|
});
|
|
}).catch(error => {
|
|
let errMessage = Utils.getErrorMsg(error);
|
|
toaster.danger(errMessage);
|
|
});
|
|
}
|
|
|
|
copyToClipBoard() {
|
|
copy(this.state.smartLink);
|
|
this.setState({
|
|
isOpen: false
|
|
});
|
|
let message = gettext('Internal link has been copied to clipboard');
|
|
toaster.success(message), {
|
|
duration: 2
|
|
};
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<Fragment>
|
|
<i title={gettext('Internal Link')} role="button" tabIndex="0" aria-label={gettext('Internal Link')} className="file-internal-link fa fa-link" onClick={this.getInternalLink}></i>
|
|
<Modal isOpen={this.state.isOpen} toggle={this.toggle}>
|
|
<ModalHeader toggle={this.toggle}>{gettext('Internal Link')}</ModalHeader>
|
|
<ModalBody>
|
|
<p className="tip mb-1">
|
|
{gettext('An internal link is a link to a file or folder that can be accessed by users with read permission to the file or folder.')}
|
|
</p>
|
|
<p>
|
|
<a target="_blank" href={this.state.smartLink}>{this.state.smartLink}</a>
|
|
</p>
|
|
</ModalBody>
|
|
<ModalFooter>
|
|
<Button color="secondary" onClick={this.toggle}>{gettext('Cancel')}</Button>
|
|
<Button color="primary" onClick={this.copyToClipBoard}>{gettext('Copy')}</Button>
|
|
</ModalFooter>
|
|
</Modal>
|
|
</Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
InternalLinkDialog.propTypes = propTypes;
|
|
|
|
export default InternalLinkDialog;
|