mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
35 lines
784 B
JavaScript
35 lines
784 B
JavaScript
|
import React, { createContext, useState } from 'react'
|
||
|
import PropTypes from 'prop-types'
|
||
|
|
||
|
export const FileTreeMainContext = createContext({})
|
||
|
|
||
|
export const FileTreeMainProvider = function({
|
||
|
projectId,
|
||
|
hasWritePermissions,
|
||
|
children
|
||
|
}) {
|
||
|
const [contextMenuCoords, setContextMenuCoords] = useState()
|
||
|
|
||
|
return (
|
||
|
<FileTreeMainContext.Provider
|
||
|
value={{
|
||
|
projectId,
|
||
|
hasWritePermissions,
|
||
|
contextMenuCoords,
|
||
|
setContextMenuCoords
|
||
|
}}
|
||
|
>
|
||
|
{children}
|
||
|
</FileTreeMainContext.Provider>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
FileTreeMainProvider.propTypes = {
|
||
|
projectId: PropTypes.string.isRequired,
|
||
|
hasWritePermissions: PropTypes.bool.isRequired,
|
||
|
children: PropTypes.oneOfType([
|
||
|
PropTypes.arrayOf(PropTypes.node),
|
||
|
PropTypes.node
|
||
|
]).isRequired
|
||
|
}
|