chore: infer React context providers and prefer use (#11669)

As of [React 19](https://react.dev/blog/2024/12/05/react-19), context
providers no longer require the `<MyContext.Provider>` syntax and can be
rendered as `<MyContext>` directly. This will be deprecated in future
versions of React, which is now being caught by the
[`@eslint-react/no-context-provider`](https://eslint-react.xyz/docs/rules/no-context-provider)
ESLint rule.

Similarly, the [`use`](https://react.dev/reference/react/use) API is now
preferred over `useContext` because it is more flexible, for example
they can be called within loops and conditional statements. See the
[`@eslint-react/no-use-context`](https://eslint-react.xyz/docs/rules/no-use-context)
ESLint rule for more details.
This commit is contained in:
Jacob Fletcher
2025-03-12 15:48:20 -04:00
committed by GitHub
parent b81358ce7e
commit 355bd12c61
67 changed files with 226 additions and 253 deletions

View File

@@ -2,7 +2,7 @@
import type { Permissions } from 'payload/auth'
import React, { createContext, useCallback, useContext, useEffect, useState } from 'react'
import React, { createContext, useCallback, use, useEffect, useState } from 'react'
import type { User } from '../../../../payload-types'
import type { AuthContext, Create, ForgotPassword, Login, Logout, ResetPassword } from './types'
@@ -163,7 +163,7 @@ export const AuthProvider: React.FC<{ api?: 'gql' | 'rest'; children: React.Reac
)
return (
<Context.Provider
<Context
value={{
create,
forgotPassword,
@@ -177,10 +177,10 @@ export const AuthProvider: React.FC<{ api?: 'gql' | 'rest'; children: React.Reac
}}
>
{children}
</Context.Provider>
</Context>
)
}
type UseAuth<T = User> = () => AuthContext
type UseAuth<T = User> = () => AuthContext
export const useAuth: UseAuth = () => useContext(Context)
export const useAuth: UseAuth = () => use(Context)