stacker.news/api/ssrApollo.js

106 lines
2.4 KiB
JavaScript
Raw Normal View History

2021-04-14 23:56:29 +00:00
import { ApolloClient, InMemoryCache } from '@apollo/client'
import { SchemaLink } from '@apollo/client/link/schema'
2022-11-06 17:28:58 +00:00
import { makeExecutableSchema } from 'graphql-tools'
2021-04-14 23:56:29 +00:00
import { getSession } from 'next-auth/client'
import resolvers from './resolvers'
import typeDefs from './typeDefs'
import models from './models'
2023-01-18 18:49:20 +00:00
import slashtags from './slashtags'
2021-10-26 20:49:37 +00:00
import { print } from 'graphql'
2021-10-28 19:59:53 +00:00
import lnd from './lnd'
2022-01-26 15:35:14 +00:00
import search from './search'
import { ME } from '../fragments/users'
import { PRICE } from '../fragments/price'
2021-04-14 23:56:29 +00:00
2021-10-28 19:59:53 +00:00
export default async function getSSRApolloClient (req, me = null) {
2021-07-08 00:15:27 +00:00
const session = req && await getSession({ req })
2022-11-24 19:22:58 +00:00
const client = new ApolloClient({
ssrMode: true,
link: new SchemaLink({
2022-11-06 17:28:58 +00:00
schema: makeExecutableSchema({
typeDefs,
resolvers
}),
context: {
2021-04-14 23:56:29 +00:00
models,
2022-04-21 22:50:02 +00:00
me: session
? session.user
2022-04-21 22:50:02 +00:00
: me,
2022-01-26 15:35:14 +00:00
lnd,
2023-01-18 18:49:20 +00:00
search,
slashtags
2021-04-14 23:56:29 +00:00
}
}),
cache: new InMemoryCache()
})
2022-11-24 19:22:58 +00:00
await client.clearStore()
return client
}
2021-10-26 20:49:37 +00:00
export function getGetServerSideProps (query, variables = null, notFoundFunc, requireVar) {
2021-12-16 17:27:12 +00:00
return async function ({ req, query: params }) {
const { nodata, ...realParams } = params
const vars = { ...realParams, ...variables }
2022-09-06 14:57:34 +00:00
const client = await getSSRApolloClient(req)
const { data: { me } } = await client.query({
2023-05-07 15:44:57 +00:00
query: ME,
variables: { skipUpdate: true }
2022-09-06 14:57:34 +00:00
})
const { data: { price } } = await client.query({
query: PRICE, variables: { fiatCurrency: me?.fiatCurrency }
})
// we want to use client-side cache
if (nodata && query) {
return {
props: {
2022-09-06 14:57:34 +00:00
me,
price,
apollo: {
query: print(query),
variables: vars
}
}
}
}
2022-01-27 20:15:18 +00:00
if (requireVar && !vars[requireVar]) {
return {
notFound: true
}
}
2022-04-21 22:50:02 +00:00
let error = null; let data = null; let props = {}
if (query) {
({ error, data } = await client.query({
query,
variables: vars
}))
2021-10-26 20:49:37 +00:00
2022-04-21 22:50:02 +00:00
if (error || !data || (notFoundFunc && notFoundFunc(data))) {
return {
notFound: true
}
}
props = {
apollo: {
query: print(query),
variables: vars
2022-04-21 22:50:02 +00:00
}
2021-10-26 20:49:37 +00:00
}
}
return {
props: {
2022-04-21 22:50:02 +00:00
...props,
2021-11-28 17:29:17 +00:00
me,
price,
2021-10-26 20:49:37 +00:00
data
}
}
}
}