mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
b7802674d5
React `project-context` GitOrigin-RevId: 6a23437d6e6a328ff5854622ff903d348db1f8b8
32 lines
881 B
JavaScript
32 lines
881 B
JavaScript
import { useMemo } from 'react'
|
|
import { Row } from 'react-bootstrap'
|
|
import AddCollaborators from './add-collaborators'
|
|
import AddCollaboratorsUpgrade from './add-collaborators-upgrade'
|
|
import { useProjectContext } from '../../../shared/context/project-context'
|
|
|
|
export default function SendInvites() {
|
|
const project = useProjectContext()
|
|
|
|
// whether the project has not reached the collaborator limit
|
|
const canAddCollaborators = useMemo(() => {
|
|
if (!project) {
|
|
return false
|
|
}
|
|
|
|
if (project.features.collaborators === -1) {
|
|
// infinite collaborators
|
|
return true
|
|
}
|
|
|
|
return (
|
|
project.members.length + project.invites.length <
|
|
project.features.collaborators
|
|
)
|
|
}, [project])
|
|
|
|
return (
|
|
<Row className="invite-controls">
|
|
{canAddCollaborators ? <AddCollaborators /> : <AddCollaboratorsUpgrade />}
|
|
</Row>
|
|
)
|
|
}
|