stacker.news/lib/apollo.js

141 lines
4.2 KiB
JavaScript
Raw Normal View History

2021-09-07 20:22:57 +00:00
import { ApolloClient, InMemoryCache, from, HttpLink } from '@apollo/client'
import { decodeCursor, LIMIT } from './cursor'
2021-09-07 20:22:57 +00:00
import { RetryLink } from '@apollo/client/link/retry'
const additiveLink = from([
new RetryLink(),
new HttpLink({ uri: '/api/graphql' })
])
2021-10-26 20:49:37 +00: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 15:46:58 +00:00
// or equal to a full page
2021-10-26 20:49:37 +00:00
return existingThings?.length < LIMIT
}
}
2021-09-30 15:46:58 +00:00
export default function getApolloClient () {
global.apolloClient ||= new ApolloClient({
link: additiveLink,
cache: new InMemoryCache({
typePolicies: {
Query: {
fields: {
2021-12-17 00:39:19 +00:00
topUsers: {
keyArgs: ['within'],
merge (existing, incoming) {
if (isFirstPage(incoming.cursor, existing?.users)) {
return incoming
}
return {
cursor: incoming.cursor,
users: [...(existing?.users || []), ...incoming.users]
}
}
},
2022-02-17 17:23:43 +00:00
items: {
keyArgs: ['sub', 'sort', 'name', 'within'],
2021-09-30 15:46:58 +00:00
merge (existing, incoming) {
2021-10-26 20:49:37 +00:00
if (isFirstPage(incoming.cursor, existing?.items)) {
2021-09-30 15:46:58 +00:00
return incoming
}
2021-09-30 15:46:58 +00:00
return {
cursor: incoming.cursor,
2022-01-07 16:32:31 +00:00
items: [...(existing?.items || []), ...incoming.items],
2022-01-30 17:43:22 +00:00
pins: existing?.pins || null
2021-09-30 15:46:58 +00:00
}
}
2021-09-30 15:46:58 +00:00
},
2022-09-22 18:44:50 +00:00
outlawedItems: {
keyArgs: [],
merge (existing, incoming) {
if (isFirstPage(incoming.cursor, existing?.items)) {
return incoming
}
return {
cursor: incoming.cursor,
items: [...(existing?.items || []), ...incoming.items]
}
}
},
2022-01-27 19:18:48 +00:00
search: {
keyArgs: ['q'],
merge (existing, incoming) {
if (isFirstPage(incoming.cursor, existing?.items)) {
return incoming
}
return {
cursor: incoming.cursor,
items: [...(existing?.items || []), ...incoming.items]
}
}
},
2021-09-30 15:46:58 +00:00
moreFlatComments: {
2021-12-16 23:05:31 +00:00
keyArgs: ['name', 'sort', 'within'],
2021-09-30 15:46:58 +00:00
merge (existing, incoming) {
2021-10-26 20:49:37 +00:00
if (isFirstPage(incoming.cursor, existing?.comments)) {
2021-09-30 15:46:58 +00:00
return incoming
}
2021-09-30 15:46:58 +00:00
return {
cursor: incoming.cursor,
comments: [...(existing?.comments || []), ...incoming.comments]
}
}
2021-09-30 15:46:58 +00:00
},
notifications: {
keyArgs: ['inc'],
2021-09-30 15:46:58 +00:00
merge (existing, incoming) {
2021-10-26 20:49:37 +00:00
if (isFirstPage(incoming.cursor, existing?.notifications)) {
2021-09-30 15:46:58 +00:00
return incoming
}
2021-09-30 15:46:58 +00:00
return {
cursor: incoming.cursor,
2022-04-24 16:13:07 +00:00
earn: existing?.earn || incoming.earn,
2021-09-30 15:46:58 +00:00
notifications: [...(existing?.notifications || []), ...incoming.notifications],
lastChecked: incoming.lastChecked
}
}
2021-12-15 16:50:11 +00:00
},
walletHistory: {
2021-12-16 17:27:12 +00:00
keyArgs: ['inc'],
2021-12-15 16:50:11 +00:00
merge (existing, incoming) {
if (isFirstPage(incoming.cursor, existing?.facts)) {
return incoming
}
return {
cursor: incoming.cursor,
facts: [...(existing?.facts || []), ...incoming.facts]
}
}
}
}
}
}
2021-09-30 15:46:58 +00:00
}),
defaultOptions: {
// cache-and-network allows us to refresh pages on navigation
watchQuery: {
2021-10-26 20:49:37 +00:00
fetchPolicy: 'cache-only',
2021-09-30 15:46:58 +00:00
nextFetchPolicy: 'cache-first'
},
query: {
2021-10-26 20:49:37 +00:00
fetchPolicy: 'cache-only',
2021-09-30 15:46:58 +00:00
nextFetchPolicy: 'cache-first'
}
}
2021-09-30 15:46:58 +00:00
})
return global.apolloClient
}