Revere Cre está contratando! Interessado em trabalhar na vanguarda do front -end?
Entre em contato com [email protected] para obter mais informações.
Documentação | Discussão | Últimos lançamentos
relay-nextjs é a melhor maneira de usar o revezamento e o próximo.js no mesmo projeto! Ele suporta migração incremental , está pronto para suspense e é executado em produção pelas principais empresas.
relay-nextjs envolve componentes da página, uma consulta grafql e alguns métodos auxiliares para conectar automaticamente a busca de dados usando o relé. Na carga inicial, um ambiente de relé é criado, os dados são buscados no lado do servidor, a página é renderizada e o estado resultante é serializado como uma tag de script. Na inicialização do cliente, um novo ambiente de retransmissão e consulta pré -carregada são criados usando esse estado serializado. Os dados são buscados usando o ambiente de relé do lado do cliente nas navegações subsequentes.
NOTA: relay-nextjs não suporta o roteador App NextJS 13 no momento.
Instale usando o NPM ou seu outro gerenciador de pacotes favorito:
$ npm install relay-nextjs relay-nextjs deve ser configurado em _app para interceptar e lidar adequadamente com o roteamento.
Para obter informações básicas sobre o ambiente de retransmissão, consulte os documentos de revezamento.
relay-nextjs foi projetado com a renderização do lado do cliente e do servidor em mente. Como tal, precisa usar um ambiente de relé do lado do cliente ou do lado do servidor. A biblioteca sabe como lidar com qual ambiente usar, mas temos que dizer como criar esses ambientes. Para isso, definiremos duas funções: getClientEnvironment e createServerEnvironment . Observe a distinção-no cliente, apenas um ambiente é criado, porque existe apenas um aplicativo, mas no servidor devemos criar um ambiente por renderização para garantir que o cache não seja compartilhado entre as solicitações.
Primeiro, definiremos getClientEnvironment :
// lib/client_environment.ts
import { Environment , Network , Store , RecordSource } from 'relay-runtime' ;
export function createClientNetwork ( ) {
return Network . create ( async ( params , variables ) => {
const response = await fetch ( '/api/graphql' , {
method : 'POST' ,
credentials : 'include' ,
headers : {
'Content-Type' : 'application/json' ,
} ,
body : JSON . stringify ( {
query : params . text ,
variables ,
} ) ,
} ) ;
const json = await response . text ( ) ;
return JSON . parse ( json ) ;
} ) ;
}
let clientEnv : Environment | undefined ;
export function getClientEnvironment ( ) {
if ( typeof window === 'undefined' ) return null ;
if ( clientEnv == null ) {
clientEnv = new Environment ( {
network : createClientNetwork ( ) ,
store : new Store ( new RecordSource ( ) ) ,
isServer : false ,
} ) ;
}
return clientEnv ;
} e então createServerEnvironment :
import { graphql } from 'graphql' ;
import { GraphQLResponse , Network } from 'relay-runtime' ;
import { schema } from 'lib/schema' ;
export function createServerNetwork ( ) {
return Network . create ( async ( text , variables ) => {
const context = {
token ,
// More context variables here
} ;
const results = await graphql ( {
schema ,
source : text . text ! ,
variableValues : variables ,
contextValue : context ,
} ) ;
return JSON . parse ( JSON . stringify ( results ) ) as GraphQLResponse ;
} ) ;
}
export function createServerEnvironment ( ) {
return new Environment ( {
network : createServerNetwork ( ) ,
store : new Store ( new RecordSource ( ) ) ,
isServer : true ,
} ) ;
}Nota No exemplo do ambiente do servidor, estamos executando contra um esquema local, mas você também pode buscar uma API remota.
_app // pages/_app.tsx
import { RelayEnvironmentProvider } from 'react-relay/hooks' ;
import { useRelayNextjs } from 'relay-nextjs/app' ;
import { getClientEnvironment } from '../lib/client_environment' ;
function MyApp ( { Component , pageProps } : AppProps ) {
const { env , ... relayProps } = useRelayNextjs ( pageProps , {
createClientEnvironment : ( ) => getClientSideEnvironment ( ) ! ,
} ) ;
return (
< >
< RelayEnvironmentProvider environment = { env } >
< Component { ... pageProps } { ... relayProps } />
</ RelayEnvironmentProvider >
</ >
) ;
}
export default MyApp ; // src/pages/user/[uuid].tsx
import { withRelay , RelayProps } from 'relay-nextjs' ;
import { graphql , usePreloadedQuery } from 'react-relay/hooks' ;
// The $uuid variable is injected automatically from the route.
const ProfileQuery = graphql `
query profile_ProfileQuery($uuid: ID!) {
user(id: $uuid) {
id
firstName
lastName
}
}
` ;
function UserProfile ( { preloadedQuery } : RelayProps < { } , profile_ProfileQuery > ) {
const query = usePreloadedQuery ( ProfileQuery , preloadedQuery ) ;
return (
< div >
Hello { query . user . firstName } { query . user . lastName }
</ div >
) ;
}
function Loading ( ) {
return < div > Loading... </ div > ;
}
export default withRelay ( UserProfile , UserProfileQuery , {
// Fallback to render while the page is loading.
// This property is optional.
fallback : < Loading /> ,
// Create a Relay environment on the client-side.
// Note: This function must always return the same value.
createClientEnvironment : ( ) => getClientEnvironment ( ) ! ,
// variablesFromContext allows you to declare and customize variables for the graphql query.
// by default variablesFromContext is ctx.query
variablesFromContext : ( ctx : NextRouter | NextPageContext ) => ( { ... ctx . query , otherVariable : true } ) ,
// Gets server side props for the page.
serverSideProps : async ( ctx ) => {
// This is an example of getting an auth token from the request context.
// If you don't need to authenticate users this can be removed and return an
// empty object instead.
const { getTokenFromCtx } = await import ( 'lib/server/auth' ) ;
const token = await getTokenFromCtx ( ctx ) ;
if ( token == null ) {
return {
redirect : { destination : '/login' , permanent : false } ,
} ;
}
return { token } ;
} ,
// Server-side props can be accessed as the second argument
// to this function.
createServerEnvironment : async (
ctx ,
// The object returned from serverSideProps. If you don't need a token
// you can remove this argument.
{ token } : { token : string }
) => {
const { createServerEnvironment } = await import ( 'lib/server_environment' ) ;
return createServerEnvironment ( token ) ;
} ,
} ) ;