| 123456789101112131415161718192021222324252627282930313233 |
- import { createContext, useContext } from 'react'
- import PropTypes from 'prop-types'
- import useScopeValue from '../hooks/use-scope-value'
- export const UserContext = createContext()
- UserContext.Provider.propTypes = {
- value: PropTypes.shape({
- user: PropTypes.shape({
- id: PropTypes.string,
- email: PropTypes.string,
- allowedFreeTrial: PropTypes.boolean,
- first_name: PropTypes.string,
- last_name: PropTypes.string,
- }),
- }),
- }
- export function UserProvider({ children }) {
- const [user] = useScopeValue('user', true)
- return <UserContext.Provider value={user}>{children}</UserContext.Provider>
- }
- UserProvider.propTypes = {
- children: PropTypes.any,
- }
- export function useUserContext(propTypes) {
- const data = useContext(UserContext)
- PropTypes.checkPropTypes(propTypes, data, 'data', 'UserContext.Provider')
- return data
- }
|