overleaf/services/web/frontend/js/shared/context/compile-context.js
Timothée Alby 0ecebefb0c Merge pull request #3804 from overleaf/msm-react-publish-button
[ReactNavigationToolbar] Submit button

GitOrigin-RevId: 9b40e09f001b44bd2f5035469f0d0c852fea7199
2021-04-20 02:10:19 +00:00

47 lines
1.2 KiB
JavaScript

import React, { createContext, useContext } from 'react'
import PropTypes from 'prop-types'
import useScopeValue from './util/scope-value-hook'
export const CompileContext = createContext()
CompileContext.Provider.propTypes = {
value: PropTypes.shape({
pdfUrl: PropTypes.string,
pdfDownloadUrl: PropTypes.string,
logEntries: PropTypes.object,
uncompiled: PropTypes.bool
})
}
export function CompileProvider({ children, $scope }) {
const [pdfUrl] = useScopeValue('pdf.url', $scope)
const [pdfDownloadUrl] = useScopeValue('pdf.downloadUrl', $scope)
const [logEntries] = useScopeValue('pdf.logEntries', $scope)
const [uncompiled] = useScopeValue('pdf.uncompiled', $scope)
const value = {
pdfUrl,
pdfDownloadUrl,
logEntries,
uncompiled
}
return (
<>
<CompileContext.Provider value={value}>
{children}
</CompileContext.Provider>
</>
)
}
CompileProvider.propTypes = {
children: PropTypes.any,
$scope: PropTypes.any.isRequired
}
export function useCompileContext(propTypes) {
const data = useContext(CompileContext)
PropTypes.checkPropTypes(propTypes, data, 'data', 'CompileContext.Provider')
return data
}