1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-19 17:39:39 +00:00
seahub/frontend/src/components/dialog/org-admin-invite-user-via-weixin-dialog.js
2024-07-24 16:43:43 +08:00

47 lines
1.3 KiB
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
import { Button, Modal, ModalHeader, ModalBody, ModalFooter } from 'reactstrap';
import { gettext } from '../../utils/constants';
import toaster from '../toast';
import copy from '../copy-to-clipboard';
const propTypes = {
toggle: PropTypes.func.isRequired,
invitationLink: PropTypes.string.isRequired
};
class OrgAdminInviteUserViaWeiXinDialog extends React.Component {
constructor(props) {
super(props);
}
copyLink = () => {
copy(this.props.invitationLink);
this.props.toggle();
const message = gettext('Internal link has been copied to clipboard');
toaster.success(message, {
duration: 2
});
};
render() {
return (
<Modal isOpen={true} toggle={this.props.toggle}>
<ModalHeader toggle={this.props.toggle}>{'通过微信邀请用户'}</ModalHeader>
<ModalBody>
<p>{'请将邀请链接发送给其他人,这样他们就可以通过扫描链接里的二维码来加入组织。'}</p>
<p>{this.props.invitationLink}</p>
</ModalBody>
<ModalFooter>
<Button color="primary" onClick={this.copyLink}>{gettext('Copy')}</Button>
</ModalFooter>
</Modal>
);
}
}
OrgAdminInviteUserViaWeiXinDialog.propTypes = propTypes;
export default OrgAdminInviteUserViaWeiXinDialog;