Last active
September 15, 2021 07:41
-
-
Save psteinroe/62f9766c1e03e8bca78cd5ce2314f7e5 to your computer and use it in GitHub Desktop.
nested relay pagination
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { stringifyVariables } from '@urql/core'; | |
import { | |
Cache, | |
Resolver, | |
Variables, | |
NullArray, | |
} from '@urql/exchange-graphcache'; | |
export type MergeMode = 'outwards' | 'inwards'; | |
export interface PaginationParams { | |
mergeMode?: MergeMode; | |
} | |
interface PageInfo { | |
__typename: string; | |
endCursor: null | string; | |
startCursor: null | string; | |
hasNextPage: boolean; | |
hasPreviousPage: boolean; | |
} | |
interface Page { | |
__typename: string; | |
edges: NullArray<string>; | |
nodes: NullArray<string>; | |
pageInfo: PageInfo; | |
} | |
const defaultPageInfo: PageInfo = { | |
__typename: 'PageInfo', | |
endCursor: null, | |
startCursor: null, | |
hasNextPage: false, | |
hasPreviousPage: false, | |
}; | |
const ensureKey = (x: any): string | null => (typeof x === 'string' ? x : null); | |
const concatEdges = ( | |
cache: Cache, | |
leftEdges: NullArray<string>, | |
rightEdges: NullArray<string> | |
) => { | |
const ids = new Set<string>(); | |
for (let i = 0, l = leftEdges.length; i < l; i++) { | |
const edge = leftEdges[i] as string | null; | |
const node = cache.resolve(edge, 'node'); | |
if (typeof node === 'string') ids.add(node); | |
} | |
const newEdges = leftEdges.slice(); | |
for (let i = 0, l = rightEdges.length; i < l; i++) { | |
const edge = rightEdges[i] as string | null; | |
const node = cache.resolve(edge, 'node'); | |
if (typeof node === 'string' && !ids.has(node)) { | |
ids.add(node); | |
newEdges.push(edge); | |
} | |
} | |
return newEdges; | |
}; | |
const concatNodes = ( | |
leftNodes: NullArray<string>, | |
rightNodes: NullArray<string> | |
) => { | |
const ids = new Set<string>(); | |
for (let i = 0, l = leftNodes.length; i < l; i++) { | |
const node = leftNodes[i]; | |
if (typeof node === 'string') ids.add(node); | |
} | |
const newNodes = leftNodes.slice(); | |
for (let i = 0, l = rightNodes.length; i < l; i++) { | |
const node = rightNodes[i]; | |
if (typeof node === 'string' && !ids.has(node)) { | |
ids.add(node); | |
newNodes.push(node); | |
} | |
} | |
return newNodes; | |
}; | |
const compareArgs = ( | |
fieldArgs: Variables, | |
connectionArgs: Variables | |
): boolean => { | |
for (const key in connectionArgs) { | |
if (key === 'paging') { | |
continue; | |
} else if (!(key in fieldArgs)) { | |
return false; | |
} | |
const argA = fieldArgs[key]; | |
const argB = connectionArgs[key]; | |
if ( | |
typeof argA !== typeof argB || typeof argA !== 'object' | |
? argA !== argB | |
: stringifyVariables(argA) !== stringifyVariables(argB) | |
) { | |
return false; | |
} | |
} | |
for (const key in fieldArgs) { | |
if (key === 'paging') { | |
continue; | |
} | |
if (!(key in connectionArgs)) { | |
return false; | |
} | |
} | |
return true; | |
}; | |
const getPage = ( | |
cache: Cache, | |
entityKey: string, | |
fieldKey: string | |
): Page | null => { | |
const link = ensureKey(cache.resolve(entityKey, fieldKey)); | |
if (!link) return null; | |
const typename = cache.resolve(link, '__typename') as string; | |
const edges = (cache.resolve(link, 'edges') || []) as NullArray<string>; | |
const nodes = (cache.resolve(link, 'nodes') || []) as NullArray<string>; | |
if (typeof typename !== 'string') { | |
return null; | |
} | |
const page: Page = { | |
__typename: typename, | |
edges, | |
nodes, | |
pageInfo: defaultPageInfo, | |
}; | |
const pageInfoKey = cache.resolve(link, 'pageInfo'); | |
if (typeof pageInfoKey === 'string') { | |
const pageInfoType = ensureKey(cache.resolve(pageInfoKey, '__typename')); | |
const endCursor = ensureKey(cache.resolve(pageInfoKey, 'endCursor')); | |
const startCursor = ensureKey(cache.resolve(pageInfoKey, 'startCursor')); | |
const hasNextPage = cache.resolve(pageInfoKey, 'hasNextPage'); | |
const hasPreviousPage = cache.resolve(pageInfoKey, 'hasPreviousPage'); | |
const pageInfo: PageInfo = (page.pageInfo = { | |
__typename: typeof pageInfoType === 'string' ? pageInfoType : 'PageInfo', | |
hasNextPage: typeof hasNextPage === 'boolean' ? hasNextPage : !!endCursor, | |
hasPreviousPage: | |
typeof hasPreviousPage === 'boolean' ? hasPreviousPage : !!startCursor, | |
endCursor, | |
startCursor, | |
}); | |
if (pageInfo.endCursor === null) { | |
const edge = edges[edges.length - 1] as string | null; | |
if (edge) { | |
const endCursor = cache.resolve(edge, 'cursor'); | |
pageInfo.endCursor = ensureKey(endCursor); | |
} | |
} | |
if (pageInfo.startCursor === null) { | |
const edge = edges[0] as string | null; | |
if (edge) { | |
const startCursor = cache.resolve(edge, 'cursor'); | |
pageInfo.startCursor = ensureKey(startCursor); | |
} | |
} | |
} | |
return page; | |
}; | |
export const relayPagination = ( | |
params: PaginationParams = {} | |
): Resolver<any, any, any> => { | |
const mergeMode = params.mergeMode || 'inwards'; | |
return (_parent, fieldArgs, cache, info) => { | |
const { parentKey: entityKey, fieldName } = info; | |
const allFields = cache.inspectFields(entityKey); | |
const fieldInfos = allFields.filter((info) => info.fieldName === fieldName); | |
const size = fieldInfos.length; | |
if (size === 0) { | |
return undefined; | |
} | |
let typename: string | null = null; | |
let startEdges: NullArray<string> = []; | |
let endEdges: NullArray<string> = []; | |
let startNodes: NullArray<string> = []; | |
let endNodes: NullArray<string> = []; | |
let pageInfo: PageInfo = { ...defaultPageInfo }; | |
for (let i = 0; i < size; i++) { | |
const { fieldKey, arguments: args } = fieldInfos[i]; | |
if (args === null || !compareArgs(fieldArgs, args)) { | |
continue; | |
} | |
const page = getPage(cache, entityKey, fieldKey); | |
if (page === null) { | |
continue; | |
} | |
const pagingArgs = args.paging as Variables; | |
if ( | |
mergeMode === 'inwards' && | |
typeof pagingArgs.last === 'number' && | |
typeof pagingArgs.first === 'number' | |
) { | |
const firstEdges = page.edges.slice(0, pagingArgs.first + 1); | |
const lastEdges = page.edges.slice(-pagingArgs.last); | |
const firstNodes = page.nodes.slice(0, pagingArgs.first + 1); | |
const lastNodes = page.nodes.slice(-pagingArgs.last); | |
startEdges = concatEdges(cache, startEdges, firstEdges); | |
endEdges = concatEdges(cache, lastEdges, endEdges); | |
startNodes = concatNodes(startNodes, firstNodes); | |
endNodes = concatNodes(lastNodes, endNodes); | |
pageInfo = page.pageInfo; | |
} else if (pagingArgs.after) { | |
startEdges = concatEdges(cache, startEdges, page.edges); | |
startNodes = concatNodes(startNodes, page.nodes); | |
pageInfo.endCursor = page.pageInfo.endCursor; | |
pageInfo.hasNextPage = page.pageInfo.hasNextPage; | |
} else if (pagingArgs.before) { | |
endEdges = concatEdges(cache, page.edges, endEdges); | |
endNodes = concatNodes(page.nodes, endNodes); | |
pageInfo.startCursor = page.pageInfo.startCursor; | |
pageInfo.hasPreviousPage = page.pageInfo.hasPreviousPage; | |
} else if (typeof pagingArgs.last === 'number') { | |
endEdges = concatEdges(cache, page.edges, endEdges); | |
endNodes = concatNodes(page.nodes, endNodes); | |
pageInfo = page.pageInfo; | |
} else { | |
startEdges = concatEdges(cache, startEdges, page.edges); | |
startNodes = concatNodes(startNodes, page.nodes); | |
pageInfo = page.pageInfo; | |
} | |
if (page.pageInfo.__typename !== pageInfo.__typename) | |
pageInfo.__typename = page.pageInfo.__typename; | |
if (typename !== page.__typename) typename = page.__typename; | |
} | |
if (typeof typename !== 'string') { | |
return undefined; | |
} | |
const hasCurrentPage = !!ensureKey( | |
cache.resolve(entityKey, fieldName, fieldArgs) | |
); | |
if (!hasCurrentPage) { | |
if (!(info as any).store.schema) { | |
return undefined; | |
} else { | |
info.partial = true; | |
} | |
} | |
return { | |
__typename: typename, | |
edges: | |
mergeMode === 'inwards' | |
? concatEdges(cache, startEdges, endEdges) | |
: concatEdges(cache, endEdges, startEdges), | |
nodes: | |
mergeMode === 'inwards' | |
? concatNodes(startNodes, endNodes) | |
: concatNodes(endNodes, startNodes), | |
pageInfo: { | |
__typename: pageInfo.__typename, | |
endCursor: pageInfo.endCursor, | |
startCursor: pageInfo.startCursor, | |
hasNextPage: pageInfo.hasNextPage, | |
hasPreviousPage: pageInfo.hasPreviousPage, | |
}, | |
}; | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment