1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-16 00:06:11 +00:00
seahub/frontend/src/components/dialog/view-link-dialog.js

48 lines
1.3 KiB
JavaScript
Raw Normal View History

2019-05-13 09:54:48 +00:00
import React from 'react';
import PropTypes from 'prop-types';
import { Button, Modal, ModalHeader, ModalBody, ModalFooter } from 'reactstrap';
import toaster from '../toast';
import copy from '../copy-to-clipboard';
2019-05-13 09:54:48 +00:00
import { gettext } from '../../utils/constants';
const propTypes = {
currentLinkHref: PropTypes.string.isRequired,
toggle: PropTypes.func.isRequired,
};
class ViewLinkDialog extends React.Component {
constructor(props) {
super(props);
}
copyToClipBoard = () => {
copy(this.props.currentLinkHref);
let message = gettext('Link has been copied to clipboard');
toaster.success(message, {
2019-05-13 09:54:48 +00:00
duration: 2
});
2019-05-13 09:54:48 +00:00
this.props.toggle();
};
2019-05-13 09:54:48 +00:00
render() {
const href = this.props.currentLinkHref;
return (
<Modal isOpen={true} toggle={this.props.toggle}>
<ModalHeader toggle={this.props.toggle}>{gettext('Link')}</ModalHeader>
<ModalBody>
<p><a target="_blank" href={href} rel="noreferrer">{href}</a></p>
2019-05-13 09:54:48 +00:00
</ModalBody>
<ModalFooter>
<Button color="secondary" onClick={this.props.toggle}>{gettext('Cancel')}</Button>{' '}
<Button color="primary" onClick={this.copyToClipBoard}>{gettext('Copy')}</Button>
</ModalFooter>
</Modal>
);
}
}
ViewLinkDialog.propTypes = propTypes;
export default ViewLinkDialog;