Created
January 12, 2022 05:40
-
-
Save OmkarK45/e847a5d6612b5650c64c9ed58b323527 to your computer and use it in GitHub Desktop.
Convert Relay Pagination Response to normal list
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 { useMemo } from 'react'; | |
type Connection<T> = { | |
readonly edges : readonly ({ | |
readonly node? : T | null ; | |
readonly cursor?:string | |
} | null)[]; | |
}; | |
export function useConnection<T>(connection?:Connection<T>){ | |
return useMemo(()=> { | |
connection ? | |
(connection.edges | |
.filter((edge)=> !!edge?.node)) | |
.map((edge)=> edge!.node) as T[]) | |
}, [connection?.edges]) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment