* Convert OLModal to named exports only
* Make closeButton the default for OLModalHeader
* Set `closeButton={false}` for modal that is not dismissible
* Fix duplicated imports
* Remove another unnecessary `closeButton` prop
* Fix import
---------
Co-authored-by: Antoine Clausse <antoine.clausse@overleaf.com>
GitOrigin-RevId: ddd7be6e59a966ac634683d2494d6e9d2c3732e6
81 lines
2.3 KiB
TypeScript
81 lines
2.3 KiB
TypeScript
import { useEffect, useState } from 'react'
|
|
import ViewOnlyAccessModalContent from './view-only-access-modal-content'
|
|
import customLocalStorage from '@/infrastructure/local-storage'
|
|
import { useProjectContext } from '@/shared/context/project-context'
|
|
import { useEditorContext } from '@/shared/context/editor-context'
|
|
import { useIdeReactContext } from '@/features/ide-react/context/ide-react-context'
|
|
import { sendMB } from '@/infrastructure/event-tracking'
|
|
import { OLModal } from '@/shared/components/ol/ol-modal'
|
|
|
|
const ViewOnlyAccessModal = () => {
|
|
const [show, setShow] = useState(false)
|
|
|
|
const { isProjectOwner, isPendingEditor } = useEditorContext()
|
|
const { permissionsLevel } = useIdeReactContext()
|
|
const { features, projectId, project } = useProjectContext()
|
|
const members = project?.members
|
|
|
|
const handleHide = () => {
|
|
setShow(false)
|
|
}
|
|
|
|
// show the view-only access modal if
|
|
// is editor on a project over
|
|
// collaborator limit (once every week)
|
|
useEffect(() => {
|
|
const showModalCooldownHours = 24 * 7 // 7 days
|
|
const shouldShowToPendingEditor = () => {
|
|
if (isProjectOwner || !features) {
|
|
return false
|
|
}
|
|
|
|
if (features.collaborators === -1) {
|
|
return false
|
|
}
|
|
return isPendingEditor
|
|
}
|
|
|
|
if (shouldShowToPendingEditor()) {
|
|
const localStorageKey = `last-shown-view-only-access-modal.${projectId}`
|
|
const lastShownNeedEditModalTime =
|
|
customLocalStorage.getItem(localStorageKey)
|
|
if (
|
|
!lastShownNeedEditModalTime ||
|
|
lastShownNeedEditModalTime + showModalCooldownHours * 60 * 60 * 1000 <
|
|
Date.now()
|
|
) {
|
|
setShow(true)
|
|
customLocalStorage.setItem(localStorageKey, Date.now())
|
|
sendMB('notification-prompt', {
|
|
name: 'link-sharing-collaborator-limit',
|
|
})
|
|
}
|
|
}
|
|
}, [
|
|
features,
|
|
isProjectOwner,
|
|
isPendingEditor,
|
|
members,
|
|
permissionsLevel,
|
|
projectId,
|
|
])
|
|
|
|
return show ? (
|
|
<OLModal
|
|
animation
|
|
show={show}
|
|
onHide={() => {
|
|
sendMB('notification-dismiss', {
|
|
name: 'link-sharing-collaborator-limit',
|
|
})
|
|
handleHide()
|
|
}}
|
|
id="editor-over-limit-modal"
|
|
>
|
|
<ViewOnlyAccessModalContent handleHide={handleHide} />
|
|
</OLModal>
|
|
) : null
|
|
}
|
|
|
|
export default ViewOnlyAccessModal
|