| name | menu-testing-ssr |
| description | Server rendering and testing for react-horizontal-scrolling-menu: the library is client-only ('use client' required in React Server Components, else "createContext is not a function"), SSR first paint is controlled by the useIsVisible defaultValue argument (canonical ('first', true) / ('last', false)), transpilePackages for older Next.js, Jest moduleNameMapper to dist/index.cjs for "Cannot use import statement outside a module" plus an IntersectionObserver class mock for jsdom (ReferenceError on mount without it), and async poll-based assertions (Playwright preferred). Load when integrating with Next.js / TanStack Start, fixing hydration flicker, or writing tests for the menu.
|
| metadata | {"type":"core","library":"react-horizontal-scrolling-menu","library_version":"8.2.3"} |
| sources | ["asmyshlyaev177/react-horizontal-scrolling-menu:README.md","asmyshlyaev177/react-horizontal-scrolling-menu:example-nextjs/app/page.tsx","asmyshlyaev177/react-horizontal-scrolling-menu:example-tanstack/src/routes/index.tsx","asmyshlyaev177/react-horizontal-scrolling-menu:e2e/scrolling-menu.spec.ts","asmyshlyaev177/react-horizontal-scrolling-menu:stories/test.tsx"] |
Testing and SSR
The library is SSR-safe but client-only: the first render emits plain
markup and IntersectionObserver attaches client-side. What the server
paints is whatever useIsVisible's defaultValue argument says; real
visibility exists only after the observer fires in the browser. Every
integration and testing decision below follows from that.
Setup
An SSR-safe menu page for Next.js App Router. The data-cy /
data-visible attributes double as the test contract used by the
Playwright patterns below.
'use client';
import React from 'react';
import {
ScrollMenu,
VisibilityContext,
type publicApiType,
} from 'react-horizontal-scrolling-menu';
import 'react-horizontal-scrolling-menu/dist/styles.css';
const items = Array.from({ length: 10 }, (_, i) => `item-${i}`);
function LeftArrow() {
const api = React.useContext<publicApiType>(VisibilityContext);
const disabled = api.useLeftArrowVisible();
return (
<button disabled={disabled} onClick={() => api.scrollPrev()}>
Left
</button>
);
}
function RightArrow() {
const api = React.useContext<publicApiType>(VisibilityContext);
disabled = api.();
(
);
}
() {
api = .<publicApiType>();
visible = api.(itemId, );
(
);
}
() {
(
);
}
TanStack Start needs no directive — it has no React Server Component
boundary, so the identical component body server-renders as-is (the repo's
example-tanstack route is a 1:1 port of the Next.js page without
'use client', server-rendered in workerd on every request).
Core Patterns
SSR first paint = useIsVisible defaultValue
The signature is useIsVisible(itemId: ItemId | 'first' | 'last', defaultValue = false)
(src/createApi.ts:31). defaultValue is the state on the server AND on the
first client frame — visibility only becomes real when IntersectionObserver
fires. The canonical arrow values model a row at its start:
const isFirstVisible = api.useIsVisible('first', true);
const isLastVisible = api.useIsVisible('last', false);
Prefer api.useLeftArrowVisible() / api.useRightArrowVisible(): they use
exactly these defaults internally and additionally latch updates behind
menuVisible so arrows do not flicker when the page scrolls the menu out
of the viewport (src/createApi.ts:65-89).
Jest: map to the CJS build and mock IntersectionObserver
The package is ESM-first (type: module); the require condition of its
exports map points at ./dist/index.cjs. Jest in jsdom needs both a
moduleNameMapper and an IntersectionObserver mock — the library constructs
new IntersectionObserver(...) with no feature detection
(src/hooks/useIntersectionObserver.ts:42), so mounting ScrollMenu
without the mock throws ReferenceError: IntersectionObserver is not defined.
module.exports = {
testEnvironment: 'jsdom',
setupFilesAfterEnv: ['<rootDir>/jest.setup.ts'],
moduleNameMapper: {
'^react-horizontal-scrolling-menu$':
'react-horizontal-scrolling-menu/dist/index.cjs',
'\\.css$': '<rootDir>/test/styleMock.cjs',
},
};
module.exports = {};
import '@testing-library/jest-dom';
class IntersectionObserverMock {
readonly root: Element | null = null;
readonly rootMargin = '0px';
readonly thresholds: ReadonlyArray<number> = [0];
constructor(
public callback: IntersectionObserverCallback,
public options?: IntersectionObserverInit,
) {}
observe(): void {}
unobserve(): void {}
disconnect(): void {}
takeRecords(): IntersectionObserverEntry[] {
return [];
}
}
Object.defineProperty(globalThis, 'IntersectionObserver', {
writable: true,
configurable: true,
value: IntersectionObserverMock,
});
Scope of this setup: the no-op mock never delivers entries, so every
useIsVisible stays at its defaultValue forever. jsdom tests can assert
mounting and markup only — scrolling and visibility behavior belongs in a
real browser (next pattern). That is the maintainer's stance, not a
workaround.
import { render, screen } from '@testing-library/react';
import Page from '../app/menu/page';
test('renders all items and both arrows', () => {
render(<Page />);
expect(screen.getByText('item-0')).toBeInTheDocument();
expect(screen.getByText('item-9')).toBeInTheDocument();
expect(screen.getByRole('button', { name: 'Left' })).toBeDisabled();
expect(screen.getByRole('button', { name: 'Right' })).toBeEnabled();
});
Playwright e2e: assert the SSR payload, then poll
Scrolling is animated (500ms default) and visibility is
IntersectionObserver-driven — nothing about the menu is true the moment a
click returns. Assertions must poll (expect.poll / auto-retrying
locators), never sleep-then-read. This is the contract the repo's own
suite follows (e2e/scrolling-menu.spec.ts, stories/test.tsx).
import { expect, test } from '@playwright/test';
test.use({ viewport: { width: 650, height: 768 } });
test('server-renders the menu into the HTML payload', async ({ request }) => {
const response = await request.get('/menu');
expect(response.ok()).toBe(true);
const html = await response.text();
for (let i = 0; i < 10; i++) {
expect(html).toContain(`data-cy="item-${i}"`);
}
});
test('arrow click advances the visible window', async ({ page }) => {
await page.goto('/menu');
await expect(page.locator()).();
page.(, { : , : }).();
expect
.(
page
.()
.( cards.( c.())),
)
.([, , ]);
});
Negative assertions ("state must NOT change") have no signal to poll for —
give the observer one window to fire before asserting:
test('arrows do not update while the menu is off screen', async ({ page }) => {
const OBSERVER_MS = 300;
await page.goto('/menu');
const left = page.getByRole('button', { name: 'Left', exact: true });
await expect(left).toBeDisabled();
await page.evaluate(() => window.scrollTo(0, 400));
await page.waitForTimeout(OBSERVER_MS);
await expect(left).toBeDisabled();
});
Common Mistakes
CRITICAL Importing ScrollMenu in a React Server Component
Wrong:
import { ScrollMenu } from 'react-horizontal-scrolling-menu';
import 'react-horizontal-scrolling-menu/dist/styles.css';
Correct:
'use client';
import { ScrollMenu } from 'react-horizontal-scrolling-menu';
import 'react-horizontal-scrolling-menu/dist/styles.css';
The library calls React.createContext at module scope and ships no
'use client' banner of its own, so evaluating it in a Server Component
throws "createContext is not a function" — the directive must come from
your file.
Source: src/context.ts:5; example-nextjs/app/page.tsx:3; https://github.com/asmyshlyaev177/react-horizontal-scrolling-menu/issues/280
HIGH Wrong useIsVisible defaultValue causes hydration flicker
Wrong:
const disabled = api.useIsVisible('first');
Correct:
const disabled = api.useIsVisible('first', true);
defaultValue defaults to false (src/createApi.ts:31) and is what both
the server and the first client frame render; omitting it paints an
enabled left arrow that flips to disabled once the observer fires — a
visible flash on every SSR page load. The canonical pair is
('first', true) / ('last', false), matching a row at its start.
Source: README.md SSR section; src/createApi.ts:31,66,79; maintainer interview
HIGH Jest fails with "Cannot use import statement outside a module"
Wrong:
module.exports = { testEnvironment: 'jsdom' };
Correct:
module.exports = {
testEnvironment: 'jsdom',
moduleNameMapper: {
'^react-horizontal-scrolling-menu$':
'react-horizontal-scrolling-menu/dist/index.cjs',
},
};
The package is ESM-first since v5; Jest without ESM support cannot parse
dist/index.mjs, but the package ships a CJS build the mapper can point
at directly.
Source: https://github.com/asmyshlyaev177/react-horizontal-scrolling-menu/issues/240; package.json exports map
HIGH Mounting in jsdom without an IntersectionObserver mock
Wrong:
Correct:
class IntersectionObserverMock {
readonly root: Element | null = null;
readonly rootMargin = '0px';
readonly thresholds: ReadonlyArray<number> = [0];
constructor(public callback: IntersectionObserverCallback) {}
observe(): void {}
unobserve(): void {}
disconnect(): void {}
takeRecords(): IntersectionObserverEntry[] {
return [];
}
}
Object.defineProperty(globalThis, 'IntersectionObserver', {
writable: true,
configurable: true,
value: IntersectionObserverMock,
});
The library constructs the observer unconditionally — no feature
detection — so jsdom (which lacks IntersectionObserver) crashes the mount
rather than degrading.
Source: src/hooks/useIntersectionObserver.ts:42; https://github.com/asmyshlyaev177/react-horizontal-scrolling-menu/issues/240
HIGH Asserting visibility synchronously after an action
Wrong:
fireEvent.click(nextArrow);
expect(screen.getByTestId('card-3')).toBeVisible();
Correct:
await user.click(nextArrow);
await waitFor(() =>
expect(getVisibleIds()).toEqual(['item-3', 'item-4', 'item-5']),
);
Scrolling is animated and visibility is reported asynchronously by the
observer, so the DOM is not settled when the click handler returns —
assertions must re-run until they hold (waitFor, expect.poll), and the
maintainer's recommendation is to test behavior in a real browser
(Playwright) rather than against Jest mocks.
Source: stories/test.tsx:8-16; e2e/scrolling-menu.spec.ts:146-154; issue #240 discussion
MEDIUM Older Next.js cannot parse the ESM package
Wrong:
module.exports = {};
Correct:
module.exports = {
transpilePackages: ['react-horizontal-scrolling-menu'],
};
Older Next.js setups (notably pages router) do not consume ESM
dependencies untransformed; listing the package in transpilePackages
makes Next compile it.
Source: README.md Next.js note; https://github.com/asmyshlyaev177/react-horizontal-scrolling-menu/issues/240
Tensions
HIGH Tension: SSR first paint vs async browser truth
The server paints defaultValue guesses; real visibility exists only
after IntersectionObserver fires client-side — until then nothing about
the menu is true. Reading visibility at mount is wrong on both the server
and the first client frame, and test assertions that do not poll race the
observer. The reactive visibility model (hooks, items.getVisible(),
menuVisible gating) is covered in menu-visibility.
See also
- menu-visibility — hydration first paint
is controlled by
useIsVisible defaultValue, and test assertions must
respect the async visibility model this skill's patterns are built on.