2021-06-25 04:13:17 -04:00
|
|
|
import { createContext, useContext } from 'react'
|
|
|
|
import PropTypes from 'prop-types'
|
2021-10-08 06:09:41 -04:00
|
|
|
import useScopeValue from '../hooks/use-scope-value'
|
2021-06-25 04:13:17 -04:00
|
|
|
|
|
|
|
const ProjectContext = createContext()
|
|
|
|
|
|
|
|
ProjectContext.Provider.propTypes = {
|
|
|
|
value: PropTypes.shape({
|
|
|
|
_id: PropTypes.string.isRequired,
|
|
|
|
name: PropTypes.string.isRequired,
|
|
|
|
rootDoc_id: PropTypes.string,
|
|
|
|
members: PropTypes.arrayOf(
|
|
|
|
PropTypes.shape({
|
|
|
|
_id: PropTypes.string.isRequired,
|
|
|
|
})
|
|
|
|
),
|
|
|
|
invites: PropTypes.arrayOf(
|
|
|
|
PropTypes.shape({
|
|
|
|
_id: PropTypes.string.isRequired,
|
|
|
|
})
|
|
|
|
),
|
|
|
|
features: PropTypes.shape({
|
|
|
|
collaborators: PropTypes.number,
|
2021-08-11 04:50:07 -04:00
|
|
|
compileGroup: PropTypes.oneOf(['alpha', 'standard', 'priority']),
|
|
|
|
trackChangesVisible: PropTypes.bool,
|
2021-06-25 04:13:17 -04:00
|
|
|
}),
|
|
|
|
publicAccesLevel: PropTypes.string,
|
|
|
|
tokens: PropTypes.shape({
|
|
|
|
readOnly: PropTypes.string,
|
|
|
|
readAndWrite: PropTypes.string,
|
|
|
|
}),
|
|
|
|
owner: PropTypes.shape({
|
|
|
|
_id: PropTypes.string.isRequired,
|
|
|
|
email: PropTypes.string.isRequired,
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
|
|
|
|
export function useProjectContext(propTypes) {
|
|
|
|
const context = useContext(ProjectContext)
|
|
|
|
|
|
|
|
if (!context) {
|
|
|
|
throw new Error(
|
|
|
|
'useProjectContext is only available inside ProjectProvider'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
PropTypes.checkPropTypes(
|
|
|
|
propTypes,
|
|
|
|
context,
|
|
|
|
'data',
|
|
|
|
'ProjectContext.Provider'
|
|
|
|
)
|
|
|
|
|
|
|
|
return context
|
|
|
|
}
|
|
|
|
|
|
|
|
export function ProjectProvider({ children }) {
|
|
|
|
const [project] = useScopeValue('project', true)
|
|
|
|
|
|
|
|
// when the provider is created the project is still not added to the Angular scope.
|
|
|
|
// Name is also populated to prevent errors in existing React components
|
2021-08-11 04:50:07 -04:00
|
|
|
const value = project || { _id: window.project_id, name: '', features: {} }
|
2021-06-25 04:13:17 -04:00
|
|
|
|
|
|
|
return (
|
|
|
|
<ProjectContext.Provider value={value}>{children}</ProjectContext.Provider>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
ProjectProvider.propTypes = {
|
|
|
|
children: PropTypes.any,
|
|
|
|
}
|