1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-16 00:06:11 +00:00
seahub/frontend/src/components/dialog/group-invite-members-dialog.js
2025-02-26 11:42:54 +08:00

112 lines
3.3 KiB
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
import { Button, Modal, ModalBody, Label } from 'reactstrap';
import SeahubModalHeader from '@/components/common/seahub-modal-header';
import copy from 'copy-to-clipboard';
import toaster from '../toast';
import { gettext } from '../../utils/constants';
import { seafileAPI } from '../../utils/seafile-api';
import { Utils } from '../../utils/utils';
import '../../css/group-invite-members-dialog.css';
const propTypes = {
groupID: PropTypes.string.isRequired,
toggleInviteMembersDialog: PropTypes.func.isRequired,
};
class GroupInviteMembersDialog extends React.Component {
constructor(props) {
super(props);
this.state = {
inviteList: [],
};
}
componentDidMount() {
this.listInviteLinks();
}
listInviteLinks = () => {
seafileAPI.getGroupInviteLinks(this.props.groupID).then((res) => {
this.setState({ inviteList: res.data.group_invite_link_list });
}).catch(error => {
this.onError(error);
});
};
addInviteLink = () => {
seafileAPI.addGroupInviteLinks(this.props.groupID).then(() => {
this.listInviteLinks();
}).catch(error => {
this.onError(error);
});
};
deleteLink = (token) => {
seafileAPI.deleteGroupInviteLinks(this.props.groupID, token).then(() => {
this.listInviteLinks();
}).catch(error => {
this.onError(error);
});
};
onError = (error) => {
let errMsg = Utils.getErrorMsg(error, true);
if (!error.response || error.response.status !== 403) {
toaster.danger(errMsg);
}
};
copyLink = () => {
const inviteLinkItem = this.state.inviteList[0];
copy(inviteLinkItem.link);
const message = gettext('Invitation link has been copied to clipboard');
toaster.success((message), {
duration: 2
});
};
toggle = () => {
this.props.toggleInviteMembersDialog();
};
render() {
const { inviteList } = this.state;
const link = inviteList[0];
return (
<Modal isOpen={true} toggle={this.toggle} className="group-invite-members">
<SeahubModalHeader toggle={this.toggle}>{gettext('Invite members')}</SeahubModalHeader>
<ModalBody>
{link ?
<>
<Label>{gettext('Group invitation link')}</Label>
<div className="invite-link-item">
<div className="form-item text-truncate">{link.link}</div>
<div className="invite-link-copy">
<Button color="primary" onClick={this.copyLink} className="invite-link-copy-btn text-truncate">{gettext('Copy')}</Button>
</div>
<Button color="primary" outline onClick={this.deleteLink.bind(this, link.token)} className="delete-link-btn ml-2">
<i className="sf3-font-delete1 sf3-font"></i>
</Button>
</div>
</>
:
<>
<div className="no-link-tip mb-4">
{gettext('No group invitation link yet. Group invitation link let registered users to join the group by clicking a link.')}
</div>
<Button color="primary" onClick={this.addInviteLink} className="my-4">{gettext('Generate')}</Button>
</>
}
</ModalBody>
</Modal>
);
}
}
GroupInviteMembersDialog.propTypes = propTypes;
export default GroupInviteMembersDialog;