stacker.news/lib/apollo.js

166 lines
5.0 KiB
JavaScript
Raw Normal View History

import { ApolloClient, InMemoryCache, HttpLink } from '@apollo/client'
import { decodeCursor, LIMIT } from './cursor'
import { SSR } from './constants'
2021-10-26 15:49:37 -05:00
function isFirstPage (cursor, existingThings) {
if (cursor) {
const decursor = decodeCursor(cursor)
return decursor.offset === LIMIT
} else {
// we don't have anything cached, or our existing items are less than
2021-09-30 10:46:58 -05:00
// or equal to a full page
2021-10-26 15:49:37 -05:00
return existingThings?.length < LIMIT
}
}
const defaultFetchPolicy = SSR ? 'cache-only' : 'cache-first'
const defaultNextFetchPolicy = SSR ? 'cache-only' : 'cache-first'
2021-09-30 10:46:58 -05:00
export default function getApolloClient () {
if (SSR) {
return getClient(`${process.env.SELF_URL}/api/graphql`)
2022-11-24 13:22:58 -06:00
} else {
global.apolloClient ||= getClient('/api/graphql')
return global.apolloClient
}
}
function getClient (uri) {
return new ApolloClient({
link: new HttpLink({ uri }),
ssrMode: SSR,
2021-09-30 10:46:58 -05:00
cache: new InMemoryCache({
freezeResults: true,
2021-09-30 10:46:58 -05:00
typePolicies: {
Query: {
fields: {
2021-12-16 18:39:19 -06:00
topUsers: {
keyArgs: ['when', 'by'],
2021-12-16 18:39:19 -06:00
merge (existing, incoming) {
if (isFirstPage(incoming.cursor, existing?.users)) {
return incoming
}
return {
cursor: incoming.cursor,
users: [...(existing?.users || []), ...incoming.users]
}
}
},
2023-02-09 12:41:28 -06:00
topCowboys: {
keyArgs: [],
merge (existing, incoming) {
if (isFirstPage(incoming.cursor, existing?.users)) {
return incoming
}
return {
cursor: incoming.cursor,
users: [...(existing?.users || []), ...incoming.users]
}
}
},
2022-02-17 11:23:43 -06:00
items: {
keyArgs: ['sub', 'sort', 'type', 'name', 'when', 'by'],
2022-10-25 16:35:32 -05:00
merge (existing, incoming) {
if (isFirstPage(incoming.cursor, existing?.items)) {
return incoming
}
return {
cursor: incoming.cursor,
items: [...(existing?.items || []), ...incoming.items],
pins: existing?.pins || null
}
}
},
comments: {
keyArgs: ['id', 'sort'],
2022-10-25 16:35:32 -05:00
merge (existing, incoming) {
return incoming
2022-10-25 16:35:32 -05:00
}
},
2022-10-26 17:46:01 -05:00
related: {
keyArgs: ['id', 'title', 'minMatch', 'limit'],
2022-10-03 16:05:06 -05:00
merge (existing, incoming) {
if (isFirstPage(incoming.cursor, existing?.items)) {
return incoming
}
return {
cursor: incoming.cursor,
items: [...(existing?.items || []), ...incoming.items]
}
}
},
2022-01-27 13:18:48 -06:00
search: {
2022-10-20 17:44:44 -05:00
keyArgs: ['q', 'sub', 'sort', 'what', 'when'],
2022-01-27 13:18:48 -06:00
merge (existing, incoming) {
if (isFirstPage(incoming.cursor, existing?.items)) {
return incoming
}
return {
cursor: incoming.cursor,
items: [...(existing?.items || []), ...incoming.items]
}
}
},
searchUsers: {
keyArgs: ['q', 'limit', 'similarity'],
merge (existing, incoming) {
return [...(existing?.searchUsers || []), ...incoming]
}
},
2021-09-30 10:46:58 -05:00
notifications: {
keyArgs: ['inc'],
2021-09-30 10:46:58 -05:00
merge (existing, incoming) {
2021-10-26 15:49:37 -05:00
if (isFirstPage(incoming.cursor, existing?.notifications)) {
2021-09-30 10:46:58 -05:00
return incoming
}
2021-09-30 10:46:58 -05:00
return {
cursor: incoming.cursor,
2022-04-24 11:13:07 -05:00
earn: existing?.earn || incoming.earn,
2021-09-30 10:46:58 -05:00
notifications: [...(existing?.notifications || []), ...incoming.notifications],
lastChecked: existing?.lastChecked || incoming.lastChecked
2021-09-30 10:46:58 -05:00
}
}
2021-12-15 10:50:11 -06:00
},
walletHistory: {
2021-12-16 11:27:12 -06:00
keyArgs: ['inc'],
2021-12-15 10:50:11 -06:00
merge (existing, incoming) {
if (isFirstPage(incoming.cursor, existing?.facts)) {
return incoming
}
return {
cursor: incoming.cursor,
facts: [...(existing?.facts || []), ...incoming.facts]
}
}
}
}
}
}
2021-09-30 10:46:58 -05:00
}),
assumeImmutableResults: true,
2021-09-30 10:46:58 -05:00
defaultOptions: {
watchQuery: {
initialFetchPolicy: defaultFetchPolicy,
fetchPolicy: defaultFetchPolicy,
nextFetchPolicy: defaultNextFetchPolicy,
2023-08-05 14:46:29 -05:00
canonizeResults: true,
ssr: SSR
2021-09-30 10:46:58 -05:00
},
query: {
initialFetchPolicy: defaultFetchPolicy,
fetchPolicy: defaultFetchPolicy,
nextFetchPolicy: defaultNextFetchPolicy,
2023-08-05 14:46:29 -05:00
canonizeResults: true,
ssr: SSR
2021-09-30 10:46:58 -05:00
}
}
2021-09-30 10:46:58 -05:00
})
}