2021-06-23 05:37:08 -04:00
|
|
|
import { useMemo } from 'react'
|
2021-03-12 05:23:46 -05:00
|
|
|
import { Row } from 'react-bootstrap'
|
|
|
|
import AddCollaborators from './add-collaborators'
|
|
|
|
import AddCollaboratorsUpgrade from './add-collaborators-upgrade'
|
2021-06-25 04:13:17 -04:00
|
|
|
import { useProjectContext } from '../../../shared/context/project-context'
|
2021-03-12 05:23:46 -05:00
|
|
|
|
|
|
|
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>
|
|
|
|
)
|
|
|
|
}
|