mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
6319455e91
Strict Project Context GitOrigin-RevId: a0f7f2b3dcb29fbd0102dcb920cf5424a921d583
84 lines
2.4 KiB
JavaScript
84 lines
2.4 KiB
JavaScript
import { useState } from 'react'
|
|
import { Modal, Button } from 'react-bootstrap'
|
|
import { Trans } from 'react-i18next'
|
|
import PropTypes from 'prop-types'
|
|
import Icon from '../../../shared/components/icon'
|
|
import { transferProjectOwnership } from '../utils/api'
|
|
import AccessibleModal from '../../../shared/components/accessible-modal'
|
|
import { reload } from '../utils/location'
|
|
import { useProjectContext } from '../../../shared/context/project-context'
|
|
|
|
export default function TransferOwnershipModal({ member, cancel }) {
|
|
const [inflight, setInflight] = useState(false)
|
|
const [error, setError] = useState(false)
|
|
|
|
const { _id: projectId, name: projectName } = useProjectContext()
|
|
|
|
function confirm() {
|
|
setError(false)
|
|
setInflight(true)
|
|
|
|
transferProjectOwnership(projectId, member)
|
|
.then(() => {
|
|
reload()
|
|
})
|
|
.catch(() => {
|
|
setError(true)
|
|
setInflight(false)
|
|
})
|
|
}
|
|
|
|
return (
|
|
<AccessibleModal show onHide={cancel}>
|
|
<Modal.Header closeButton>
|
|
<Modal.Title>
|
|
<Trans i18nKey="change_project_owner" />
|
|
</Modal.Title>
|
|
</Modal.Header>
|
|
<Modal.Body>
|
|
<p>
|
|
<Trans
|
|
i18nKey="project_ownership_transfer_confirmation_1"
|
|
values={{ user: member.email, project: projectName }}
|
|
components={[<strong key="strong-1" />, <strong key="strong-2" />]}
|
|
/>
|
|
</p>
|
|
<p>
|
|
<Trans i18nKey="project_ownership_transfer_confirmation_2" />
|
|
</p>
|
|
</Modal.Body>
|
|
<Modal.Footer>
|
|
<div className="modal-footer-left">
|
|
{inflight && <Icon type="refresh" spin />}
|
|
{error && (
|
|
<span className="text-danger">
|
|
<Trans i18nKey="generic_something_went_wrong" />
|
|
</span>
|
|
)}
|
|
</div>
|
|
<div className="modal-footer-right">
|
|
<Button
|
|
type="button"
|
|
bsStyle="default"
|
|
onClick={cancel}
|
|
disabled={inflight}
|
|
>
|
|
<Trans i18nKey="cancel" />
|
|
</Button>
|
|
<Button
|
|
type="button"
|
|
bsStyle="success"
|
|
onClick={confirm}
|
|
disabled={inflight}
|
|
>
|
|
<Trans i18nKey="change_owner" />
|
|
</Button>
|
|
</div>
|
|
</Modal.Footer>
|
|
</AccessibleModal>
|
|
)
|
|
}
|
|
TransferOwnershipModal.propTypes = {
|
|
member: PropTypes.object.isRequired,
|
|
cancel: PropTypes.func.isRequired,
|
|
}
|