2021-04-14 23:56:29 +00:00
|
|
|
import { ApolloClient, InMemoryCache } from '@apollo/client'
|
|
|
|
import { SchemaLink } from '@apollo/client/link/schema'
|
2023-07-24 22:50:12 +00:00
|
|
|
import { makeExecutableSchema } from '@graphql-tools/schema'
|
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'
|
2022-11-07 23:31:29 +00:00
|
|
|
import { ME } from '../fragments/users'
|
2023-01-27 23:20:33 +00:00
|
|
|
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({
|
2021-04-26 21:55:15 +00:00
|
|
|
ssrMode: true,
|
|
|
|
link: new SchemaLink({
|
2022-11-06 17:28:58 +00:00
|
|
|
schema: makeExecutableSchema({
|
|
|
|
typeDefs,
|
|
|
|
resolvers
|
2021-04-26 21:55:15 +00:00
|
|
|
}),
|
|
|
|
context: {
|
2021-04-14 23:56:29 +00:00
|
|
|
models,
|
2022-04-21 22:50:02 +00:00
|
|
|
me: session
|
2022-05-02 01:01:33 +00:00
|
|
|
? 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
|
|
|
}
|
2021-04-26 21:55:15 +00:00
|
|
|
}),
|
2023-07-23 15:08:43 +00:00
|
|
|
cache: new InMemoryCache({
|
|
|
|
freezeResults: true
|
|
|
|
}),
|
|
|
|
assumeImmutableResults: true,
|
|
|
|
defaultOptions: {
|
|
|
|
watchQuery: {
|
|
|
|
fetchPolicy: 'cache-only',
|
|
|
|
nextFetchPolicy: 'cache-only',
|
|
|
|
canonizeResults: true,
|
|
|
|
ssr: true
|
|
|
|
},
|
|
|
|
query: {
|
|
|
|
fetchPolicy: 'cache-first',
|
|
|
|
nextFetchPolicy: 'cache-only',
|
|
|
|
canonizeResults: true,
|
|
|
|
ssr: true
|
|
|
|
}
|
|
|
|
}
|
2021-04-26 21:55:15 +00:00
|
|
|
})
|
2022-11-24 19:22:58 +00:00
|
|
|
return client
|
2021-04-26 21:55:15 +00:00
|
|
|
}
|
2021-10-26 20:49:37 +00:00
|
|
|
|
2023-07-23 15:08:43 +00:00
|
|
|
export function getGetServerSideProps (queryOrFunc, variablesOrFunc = null, notFoundFunc, requireVar) {
|
2021-12-16 17:27:12 +00:00
|
|
|
return async function ({ req, query: params }) {
|
2022-09-06 13:01:49 +00:00
|
|
|
const { nodata, ...realParams } = params
|
2023-07-23 15:08:43 +00:00
|
|
|
// we want to use client-side cache
|
|
|
|
if (nodata) return { props: { } }
|
|
|
|
|
|
|
|
const variables = typeof variablesOrFunc === 'function' ? variablesOrFunc(realParams) : variablesOrFunc
|
2022-09-06 13:01:49 +00:00
|
|
|
const vars = { ...realParams, ...variables }
|
2023-07-23 15:08:43 +00:00
|
|
|
const query = typeof queryOrFunc === 'function' ? queryOrFunc(vars) : queryOrFunc
|
|
|
|
|
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
|
|
|
})
|
|
|
|
|
2023-01-27 23:20:33 +00:00
|
|
|
const { data: { price } } = await client.query({
|
|
|
|
query: PRICE, variables: { fiatCurrency: me?.fiatCurrency }
|
|
|
|
})
|
2022-09-06 13:01:49 +00:00
|
|
|
|
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) {
|
2023-06-01 00:47:03 +00:00
|
|
|
try {
|
|
|
|
({ error, data } = await client.query({
|
|
|
|
query,
|
|
|
|
variables: vars
|
|
|
|
}))
|
|
|
|
} catch (err) {
|
|
|
|
if (err.message === 'you must be logged in') {
|
|
|
|
const callback = process.env.PUBLIC_URL + req.url
|
|
|
|
return {
|
|
|
|
redirect: {
|
|
|
|
destination: `/login?callbackUrl=${encodeURIComponent(callback)}`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw err
|
|
|
|
}
|
2021-10-26 20:49:37 +00:00
|
|
|
|
2023-07-23 15:08:43 +00:00
|
|
|
if (error || !data || (notFoundFunc && notFoundFunc(data, vars))) {
|
2022-04-21 22:50:02 +00:00
|
|
|
return {
|
|
|
|
notFound: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
props = {
|
|
|
|
apollo: {
|
|
|
|
query: print(query),
|
2022-09-06 13:01:49 +00:00
|
|
|
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,
|
2023-07-23 15:08:43 +00:00
|
|
|
ssrData: data
|
2021-10-26 20:49:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|