react-code-dataset
/
next.js
/packages
/next
/src
/client
/components
/router-reducer
/fill-cache-with-new-subtree-data.test.tsx
| import { fillCacheWithNewSubTreeData } from './fill-cache-with-new-subtree-data' | |
| import type { CacheNode } from '../../../shared/lib/app-router-context.shared-runtime' | |
| import type { NormalizedFlightData } from '../../flight-data-helpers' | |
| const getFlightData = (): NormalizedFlightData[] => { | |
| return [ | |
| { | |
| pathToSegment: ['children', 'linking', 'children'], | |
| segmentPath: ['children', 'linking', 'children', 'about'], | |
| segment: 'about', | |
| tree: ['about', { children: ['', {}] }], | |
| seedData: ['about', <h1>SubTreeData Injected!</h1>, {}, null, false], | |
| head: null, | |
| isHeadPartial: false, | |
| isRootRender: false, | |
| }, | |
| ] | |
| } | |
| describe('fillCacheWithNewSubtreeData', () => { | |
| it('should apply rsc and head property', () => { | |
| const cache: CacheNode = { | |
| navigatedAt: -1, | |
| lazyData: null, | |
| rsc: null, | |
| prefetchRsc: null, | |
| head: null, | |
| prefetchHead: null, | |
| loading: null, | |
| parallelRoutes: new Map(), | |
| } | |
| const existingCache: CacheNode = { | |
| navigatedAt: -1, | |
| lazyData: null, | |
| rsc: <>Root layout</>, | |
| prefetchRsc: null, | |
| head: null, | |
| prefetchHead: null, | |
| loading: null, | |
| parallelRoutes: new Map([ | |
| [ | |
| 'children', | |
| new Map([ | |
| [ | |
| 'linking', | |
| { | |
| navigatedAt: -1, | |
| lazyData: null, | |
| rsc: <>Linking</>, | |
| prefetchRsc: null, | |
| head: null, | |
| prefetchHead: null, | |
| loading: null, | |
| parallelRoutes: new Map([ | |
| [ | |
| 'children', | |
| new Map([ | |
| [ | |
| '', | |
| { | |
| navigatedAt: -1, | |
| lazyData: null, | |
| rsc: <>Page</>, | |
| prefetchRsc: null, | |
| head: null, | |
| prefetchHead: null, | |
| loading: null, | |
| parallelRoutes: new Map(), | |
| }, | |
| ], | |
| ]), | |
| ], | |
| ]), | |
| }, | |
| ], | |
| ]), | |
| ], | |
| ]), | |
| } | |
| const flightData = getFlightData() | |
| if (typeof flightData === 'string') { | |
| throw new Error('invalid flight data') | |
| } | |
| // Mirrors the way router-reducer values are passed in. | |
| const normalizedFlightData = flightData[0] | |
| const navigatedAt = -1 | |
| fillCacheWithNewSubTreeData( | |
| navigatedAt, | |
| cache, | |
| existingCache, | |
| normalizedFlightData | |
| ) | |
| const expectedCache: CacheNode = { | |
| navigatedAt: -1, | |
| lazyData: null, | |
| rsc: null, | |
| prefetchRsc: null, | |
| head: null, | |
| prefetchHead: null, | |
| loading: null, | |
| parallelRoutes: new Map([ | |
| [ | |
| 'children', | |
| new Map([ | |
| [ | |
| 'linking', | |
| { | |
| navigatedAt: -1, | |
| lazyData: null, | |
| rsc: <>Linking</>, | |
| prefetchRsc: null, | |
| head: null, | |
| prefetchHead: null, | |
| loading: null, | |
| parallelRoutes: new Map([ | |
| [ | |
| 'children', | |
| new Map([ | |
| // TODO-APP: this segment should be preserved when creating the new cache | |
| [ | |
| '', | |
| { | |
| navigatedAt: -1, | |
| lazyData: null, | |
| rsc: <>Page</>, | |
| prefetchRsc: null, | |
| head: null, | |
| prefetchHead: null, | |
| loading: null, | |
| parallelRoutes: new Map(), | |
| }, | |
| ], | |
| [ | |
| 'about', | |
| { | |
| navigatedAt: -1, | |
| lazyData: null, | |
| head: null, | |
| prefetchHead: null, | |
| loading: null, | |
| parallelRoutes: new Map([ | |
| [ | |
| 'children', | |
| new Map([ | |
| [ | |
| '', | |
| { | |
| lazyData: null, | |
| rsc: null, | |
| prefetchRsc: null, | |
| parallelRoutes: new Map(), | |
| prefetchHead: null, | |
| loading: null, | |
| head: null, | |
| }, | |
| ], | |
| ]), | |
| ], | |
| ]), | |
| rsc: <h1>SubTreeData Injected!</h1>, | |
| prefetchRsc: null, | |
| }, | |
| ], | |
| ]), | |
| ], | |
| ]), | |
| }, | |
| ], | |
| ]), | |
| ], | |
| ]), | |
| } | |
| expect(cache).toMatchObject(expectedCache) | |
| }) | |
| }) | |