rsnext/test/e2e/app-dir/parallel-routes-and-interception/app/intercepting-parallel-modal/photo/layout.js

9 lines
129 B
JavaScript
Raw Normal View History

Add tests for parallel routes / interception and handle router state patch merging client-side (#45615) Added tests: - Add tests for interception+parallel and interception - Add test for parallel route tab bar - Add test for back/forward navigation on parallel routes Core changes: - Updated handling of parallel route matcher `@` to produce the correct router tree - Fixed global-error resolving, it was resolving from the `page.js` on each level. It should only live next to the root layout only, so now it resolves when it finds the root layout. - `applyRouterStatePatchToTree` now merges the levels of the original tree and the patch. This ensures parallel routes that are not affected by the response from the server are not removed from the tree. - Ensure cache nodes are not removed when they're not affected by tree patch, this ensures parallel route cache nodes will not be removed when navigating. Other changes: - Added launch app-dir build to launch.json for vscode debugger <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: --> ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md) ## Feature - [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. - [ ] Related issues linked using `fixes #number` - [ ] [e2e](https://github.com/vercel/next.js/blob/canary/contributing/core/testing.md#writing-tests-for-nextjs) tests added - [ ] Documentation added - [ ] Telemetry added. In case of a feature if it's used or not. - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md) ## Documentation / Examples - [ ] Make sure the linting passes by running `pnpm build && pnpm lint` - [ ] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md) --------- Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2023-02-13 16:12:44 +01:00
export default function PhotoLayout({ children }) {
return (
<>
<h1>Photo Layout</h1>
{children}
</>
)
}