gpt4 book ai didi

javascript - 将 Apollo Client 与 NextJS 一起使用时服务器端渲染数据?

转载 作者:行者123 更新时间:2023-11-30 06:12:33 27 4
gpt4 key购买 nike

我的组件目前在浏览器上水合,这是我想避免的事情。当您访问该链接时,我希望它预先包含所有需要显示的数据,即在服务器上呈现。目前,该组件如下所示:

import { graphql } from "react-apollo";
import gql from 'graphql-tag';
import withData from "../../apollo/with-data";
import getPostsQuery from '../../apollo/schemas/getPostsQuery.graphql';


const renderers = {
paragraph: (props) => <Typography variant="body2" gutterBottom {...props} />,
};

const GET_POSTS = gql`${getPostsQuery}`;

const PostList = ({data: {error, loading, posts}}) => {
let payload;
if(error) {
payload = (<div>There was an error!</div>);
} else if(loading) {
payload = (<div>Loading...</div>);
} else {
payload = (
<>
{posts.map((post) => (
<div>
<div>{post.title}</div>
<div>{post.body}</div>
</div>
))}
</>
);
}
return payload;
};

export default withData(graphql(GET_POSTS)(PostList));

如您所见,它显示文本 Loading...一开始是因为它在后台获取帖子。我不想要那个。我希望它已经与获取的数据一起预水化

作为引用,我的 Apollo 初始化如下所示:

// apollo/with-data.js

import React from "react";
import PropTypes from "prop-types";
import { ApolloProvider, getDataFromTree } from "react-apollo";
import initApollo from "./init-apollo";

export default ComposedComponent => {
return class WithData extends React.Component {
static displayName = `WithData(${ComposedComponent.displayName})`;
static propTypes = {
serverState: PropTypes.object.isRequired
};

static async getInitialProps(ctx) {
const headers = ctx.req ? ctx.req.headers : {};
let serverState = {};

// Evaluate the composed component's getInitialProps()
let composedInitialProps = {};
if (ComposedComponent.getInitialProps) {
composedInitialProps = await ComposedComponent.getInitialProps(ctx);
}

// Run all graphql queries in the component tree
// and extract the resulting data
if (!process.browser) {
const apollo = initApollo(headers);
// Provide the `url` prop data in case a graphql query uses it
const url = { query: ctx.query, pathname: ctx.pathname };

// Run all graphql queries
const app = (
<ApolloProvider client={apollo}>
<ComposedComponent url={url} {...composedInitialProps} />
</ApolloProvider>
);
await getDataFromTree(app);

// Extract query data from the Apollo's store
const state = apollo.getInitialState();

serverState = {
apollo: {
// Make sure to only include Apollo's data state
data: state.data
}
};
}

return {
serverState,
headers,
...composedInitialProps
};
}

constructor(props) {
super(props);
this.apollo = initApollo(this.props.headers, this.props.serverState);
}

render() {
return (
<ApolloProvider client={this.apollo}>
<ComposedComponent {...this.props} />
</ApolloProvider>
);
}
};
};
// apollo/init-apollo.js

import { InMemoryCache } from 'apollo-cache-inmemory';
import { ApolloClient } from 'apollo-client';
import { ApolloLink } from 'apollo-link';
import { onError } from 'apollo-link-error';
import { HttpLink } from 'apollo-link-http';
import fetch from 'isomorphic-fetch';

let apolloClient = null;

// Polyfill fetch() on the server (used by apollo-client)
if (!process.browser) {
global.fetch = fetch;
}

const create = (headers, initialState) => new ApolloClient({
initialState,
link: ApolloLink.from([
onError(({ graphQLErrors, networkError }) => {
if (graphQLErrors) {
graphQLErrors.forEach(({ message, locations, path }) => console.log(
`[GraphQL error]: Message: ${message}, Location: ${locations}, Path: ${path}`,
));
}
if (networkError) console.log(`[Network error]: ${networkError}`);
}),
new HttpLink({
// uri: 'https://dev.schandillia.com/graphql',
uri: process.env.CMS,
credentials: 'same-origin',
}),
]),
ssrMode: !process.browser, // Disables forceFetch on the server (so queries are only run once)
cache: new InMemoryCache(),
});

export default function initApollo(headers, initialState = {}) {
// Make sure to create a new client for every server-side request so that data
// isn't shared between connections (which would be bad)
if (!process.browser) {
return create(headers, initialState);
}

// Reuse client on the client-side
if (!apolloClient) {
apolloClient = create(headers, initialState);
}

return apolloClient;
}

更新:我尝试在 https://github.com/zeit/next.js/tree/canary/examples/with-apollo 合并官方 withApollo 示例进入我的项目,但它在 getDataFromTree() 上抛出一个不变错误:

Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined.

对于 /init/apollo.js,我使用了与示例存储库中完全相同的代码, /components/blog/PostList.jsx , 和 /pages/Blog/jsx文件。我的具体情况的唯一区别是我有一个明确的 _app.jsx内容如下:

/* eslint-disable max-len */

import '../static/styles/fonts.scss';
import '../static/styles/style.scss';
import '../static/styles/some.css';

import CssBaseline from '@material-ui/core/CssBaseline';
import { ThemeProvider } from '@material-ui/styles';
import jwt from 'jsonwebtoken';
import withRedux from 'next-redux-wrapper';
import App, {
Container,
} from 'next/app';
import Head from 'next/head';
import React from 'react';
import { Provider } from 'react-redux';

import makeStore from '../reducers';
import mainTheme from '../themes/main-theme';
import getSessIDFromCookies from '../utils/get-sessid-from-cookies';
import getLanguageFromCookies from '../utils/get-language-from-cookies';
import getUserTokenFromCookies from '../utils/get-user-token-from-cookies';
import removeFbHash from '../utils/remove-fb-hash';

class MyApp extends App {
static async getInitialProps({ Component, ctx }) {
let userToken;
let sessID;
let language;

if (ctx.isServer) {
ctx.store.dispatch({ type: 'UPDATEIP', payload: ctx.req.headers['x-real-ip'] });

userToken = getUserTokenFromCookies(ctx.req);
sessID = getSessIDFromCookies(ctx.req);
language = getLanguageFromCookies(ctx.req);
const dictionary = require(`../dictionaries/${language}`);
ctx.store.dispatch({ type: 'SETLANGUAGE', payload: dictionary });
if(ctx.res) {
if(ctx.res.locals) {
if(!ctx.res.locals.authenticated) {
userToken = null;
sessID = null;
}
}
}
if (userToken && sessID) { // TBD: validate integrity of sessID
const userInfo = jwt.verify(userToken, process.env.JWT_SECRET);
ctx.store.dispatch({ type: 'ADDUSERINFO', payload: userInfo });
}
ctx.store.dispatch({ type: 'ADDSESSION', payload: sessID }); // component will be able to read from store's state when rendered
}
const pageProps = Component.getInitialProps ? await Component.getInitialProps(ctx) : {};
return { pageProps };
}

componentDidMount() {
// Remove the server-side injected CSS.
const jssStyles = document.querySelector('#jss-server-side');
if (jssStyles) {
jssStyles.parentNode.removeChild(jssStyles);
}
// Register serviceWorker
if ('serviceWorker' in navigator) { navigator.serviceWorker.register('/serviceWorker.js'); }

// Handle FB's ugly redirect URL hash
removeFbHash(window, document);
}

render() {
const { Component, pageProps, store } = this.props;

return (
<Container>
<Head>
<meta name="viewport" content="user-scalable=0, initial-scale=1, minimum-scale=1, width=device-width, height=device-height, shrink-to-fit=no" />
<meta httpEquiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="194x194" href="/favicon-194x194.png" />
<link rel="icon" type="image/png" sizes="192x192" href="/android-chrome-192x192.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#663300" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="msapplication-TileImage" content="/mstile-144x144.png" />
</Head>
<ThemeProvider theme={mainTheme}>
{/* CssBaseline kickstart an elegant, consistent, and simple baseline to build upon. */}
<CssBaseline />
<Provider store={store}>
<Component {...pageProps} />
</Provider>
</ThemeProvider>
</Container>
);
}
}

export default withRedux(makeStore)(MyApp);

摆脱这个文件不是一个选项,因为这是我处理一些预加载 cookie 逻辑的地方。

作为引用,repo 位于 https://github.com/amitschandillia/proost/tree/master/web

最佳答案

使用 Next.js 和 Apollo 时,您希望实现 2 个关键目标:SSR 和缓存网络数据。两者很难取得平衡。但这是可能的。

实现方式是:

  1. 在您的 getInitialProps 函数中,使用 apolloclient 获取页面加载时应该可见的数据。如果操作正确,数据将与 HTML ie (SSR) 一起检索,并且在您的初始页面加载时不会显示烦人的加载程序。

现在,如果您有一些页面数据需要编辑、添加或删除,并且您希望页面在更改后更新而不刷新页面,以上是不够的。因为例如,如果您编辑数据,典型/推荐的 Apollo 方法是不做任何事情。 Apollo 会神奇地为您处理这一切。除了初始数据必须来自 apollo 缓存并且它必须有一个 Id 字段。现在您已经直接从服务器加载了初始数据,很可能您没有从以前缓存的数据中读取数据。

因此需要下面的第 2 步来启用数据更改时的数据自动刷新。

  1. 您知道要编辑的任何数据都必须来自缓存。所以不要试图使用来自 getInitialProps 的数据来填充此类数据。相反,您可以使用 useQuery 或其等效项使用与 getInitialProps 查询相同的 Graphql 查询来查询相同的数据。现在发生的是 apollo 这次不是从网络中获取数据,而是从服务器先前的查询中获取数据。然后突然之间,您看到的不是加载……随处可见,而是立即加载的数据。然后在您编辑数据的同时,它也会立即更新,因为数据首先从缓存中填充,现在更新会更改缓存数据并自动刷新您的页面。

通过这种方式,您可以继续使用所有您最喜欢的和最新的工具,例如 useQuery 和 getDataFromTree,而无需费力。

关于javascript - 将 Apollo Client 与 NextJS 一起使用时服务器端渲染数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58021561/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com