overleaf/services/web/frontend/js/shared/context/compile-context.js
Alf Eaton 1be43911b4 Merge pull request #3942 from overleaf/prettier-trailing-comma
Set Prettier's "trailingComma" setting to "es5"

GitOrigin-RevId: 9f14150511929a855b27467ad17be6ab262fe5d5
2021-04-28 02:10:01 +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
}