react-apollo#getDataFromTree JavaScript Examples
The following examples show how to use
react-apollo#getDataFromTree.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: render.js From tunnel-tool with MIT License | 5 votes |
render = (
{
App,
paths: { resources: RESOURCES_BASE_ROUTE, base: BASE_ROUTE },
urls: {
external: { graphql: EXTERNAL_URL_GRAPH, events: EXTERNAL_URL_EVENTS },
internal: { graphql: INTERNAL_URL_GRAPH, events: INTERNAL_URL_EVENTS }
},
watchers,
reducers,
req,
res
},
cxt
) => {
let routerContext = {};
const { store } = configureStore({ reducers, initState: {} });
const { graph } = configureGraph({
url: INTERNAL_URL_GRAPH,
req,
initState: {}
});
const AppRoot = (
<ApolloProvider client={graph}>
<Provider store={store}>
<StaticRouter location={req.url} context={routerContext}>
<App />
</StaticRouter>
</Provider>
</ApolloProvider>
);
getDataFromTree(AppRoot)
.then(() => {
const preloadedState = store.getState();
const htmlSteam =
Template.header({
paths: { base: BASE_ROUTE, resources: RESOURCES_BASE_ROUTE }
}) +
renderToString(AppRoot) +
Template.footer({
config: {
paths: { base: BASE_ROUTE, resources: RESOURCES_BASE_ROUTE },
urls: {
graphql: EXTERNAL_URL_GRAPH,
events: EXTERNAL_URL_EVENTS
}
},
preloadedState,
preloadedGraphState: graph.extract()
});
if (routerContext.url) {
res.redirect(routerContext.url);
} else {
res.status(200);
res.send(htmlSteam);
}
})
.catch(function(error) {
console.log(error);
});
}