Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(nextjs): Do not start a navigation if from url is the same #3814

Merged
merged 1 commit into from
Jul 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions packages/nextjs/src/performance/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ function changeStateWrapper(originalChangeStateWrapper: RouterChangeState): Wrap
// internal API.
...args: any[]
): Promise<boolean> {
if (startTransaction !== undefined) {
const newTransactionName = stripUrlQueryAndFragment(url);
// do not start a transaction if it's from the same page
if (startTransaction !== undefined && prevTransactionName !== newTransactionName) {
if (activeTransaction) {
activeTransaction.finish();
}
Expand All @@ -98,7 +100,7 @@ function changeStateWrapper(originalChangeStateWrapper: RouterChangeState): Wrap
if (prevTransactionName) {
tags.from = prevTransactionName;
}
prevTransactionName = stripUrlQueryAndFragment(url);
prevTransactionName = newTransactionName;
activeTransaction = startTransaction({
name: prevTransactionName,
op: 'navigation',
Expand Down
88 changes: 61 additions & 27 deletions packages/nextjs/test/performance/client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,14 @@ jest.mock('next/router', () => {
};
});

type Table<I = string, O = string> = Array<{ in: I; out: O }>;

describe('client', () => {
beforeEach(() => {
readyCalled = false;
if (Router.router) {
Router.router.changeState('pushState', '/[user]/posts/[id]', '/abhi/posts/123', {});
}
});

describe('nextRouterInstrumentation', () => {
it('waits for Router.ready()', () => {
const mockStartTransaction = jest.fn();
Expand Down Expand Up @@ -49,54 +54,83 @@ describe('client', () => {
expect(mockStartTransaction).toHaveBeenCalledTimes(0);
});

it('creates navigation transactions', () => {
const mockStartTransaction = jest.fn();
nextRouterInstrumentation(mockStartTransaction, false);
expect(mockStartTransaction).toHaveBeenCalledTimes(0);

const table: Table<Array<string | unknown>, Record<string, unknown>> = [
{
in: ['pushState', '/posts/[id]', '/posts/32', {}],
out: {
describe('navigation transactions', () => {
// [name, in, out]
const table: Array<[string, [string, string, string, Record<string, unknown>], Record<string, unknown>]> = [
[
'creates parameterized transaction',
['pushState', '/posts/[id]', '/posts/32', {}],
{
name: '/posts/[id]',
op: 'navigation',
tags: {
from: '/posts/[id]',
from: '/[user]/posts/[id]',
method: 'pushState',
'routing.instrumentation': 'next-router',
},
},
},
{
in: ['replaceState', '/posts/[id]?name=cat', '/posts/32?name=cat', {}],
out: {
],
[
'strips query parameters',
['replaceState', '/posts/[id]?name=cat', '/posts/32?name=cat', {}],
{
name: '/posts/[id]',
op: 'navigation',
tags: {
from: '/posts/[id]',
from: '/[user]/posts/[id]',
method: 'replaceState',
'routing.instrumentation': 'next-router',
},
},
},
{
in: ['pushState', '/about', '/about', {}],
out: {
],
[
'creates regular transactions',
['pushState', '/about', '/about', {}],
{
name: '/about',
op: 'navigation',
tags: {
from: '/about',
from: '/[user]/posts/[id]',
method: 'pushState',
'routing.instrumentation': 'next-router',
},
},
},
],
];

table.forEach(test => {
// @ts-ignore changeState can be called with array spread
Router.router?.changeState(...test.in);
expect(mockStartTransaction).toHaveBeenLastCalledWith(test.out);
it.each(table)('%s', (...test) => {
const mockStartTransaction = jest.fn();
nextRouterInstrumentation(mockStartTransaction, false);
expect(mockStartTransaction).toHaveBeenCalledTimes(0);

// @ts-ignore we can spread into test
Router.router?.changeState(...test[1]);
expect(mockStartTransaction).toHaveBeenLastCalledWith(test[2]);
});
});

it('does not create navigation transaction with the same name', () => {
const mockStartTransaction = jest.fn();
nextRouterInstrumentation(mockStartTransaction, false);
expect(mockStartTransaction).toHaveBeenCalledTimes(0);

Router.router?.changeState('pushState', '/login', '/login', {});
expect(mockStartTransaction).toHaveBeenCalledTimes(1);
expect(mockStartTransaction).toHaveBeenLastCalledWith({
name: '/login',
op: 'navigation',
tags: { from: '/[user]/posts/[id]', method: 'pushState', 'routing.instrumentation': 'next-router' },
});

Router.router?.changeState('pushState', '/login', '/login', {});
expect(mockStartTransaction).toHaveBeenCalledTimes(1);

Router.router?.changeState('pushState', '/posts/[id]', '/posts/123', {});
expect(mockStartTransaction).toHaveBeenCalledTimes(2);
expect(mockStartTransaction).toHaveBeenLastCalledWith({
name: '/posts/[id]',
op: 'navigation',
tags: { from: '/login', method: 'pushState', 'routing.instrumentation': 'next-router' },
});
});
});
Expand Down