mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 05:00:06 +02:00

* Refactor project context to not use scope store * Fix Cypress tests for project context changes * Fix frontend React Testing Library tests for project context changes * Remove redundant code * Fix some project types in tests * Remove unused import and fix a type * Throw an error if updating the project in the project context before joining the project * Fix some review panel tests * Remove unused imports GitOrigin-RevId: 2f0c928b651f387aa980c29aef7d1ba0649790a7
36 lines
986 B
TypeScript
36 lines
986 B
TypeScript
import React from 'react'
|
|
import { useProjectContext } from '../../../shared/context/project-context'
|
|
import withErrorBoundary from '../../../infrastructure/error-boundary'
|
|
import CloneProjectModal from './clone-project-modal'
|
|
|
|
const EditorCloneProjectModalWrapper = React.memo(
|
|
function EditorCloneProjectModalWrapper({
|
|
show,
|
|
handleHide,
|
|
openProject,
|
|
}: {
|
|
show: boolean
|
|
handleHide: () => void
|
|
openProject: ({ project_id }: { project_id: string }) => void
|
|
}) {
|
|
const { project, tags: projectTags } = useProjectContext()
|
|
|
|
if (!project) {
|
|
// wait for useProjectContext
|
|
return null
|
|
} else {
|
|
return (
|
|
<CloneProjectModal
|
|
handleHide={handleHide}
|
|
show={show}
|
|
handleAfterCloned={openProject}
|
|
projectId={project._id}
|
|
projectName={project.name}
|
|
projectTags={projectTags}
|
|
/>
|
|
)
|
|
}
|
|
}
|
|
)
|
|
|
|
export default withErrorBoundary(EditorCloneProjectModalWrapper)
|