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

add a react-server entry point, remove rehackt #12438

Merged
merged 8 commits into from
Mar 14, 2025
Merged
Show file tree
Hide file tree
Changes from 5 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: 6 additions & 0 deletions .changeset/clean-sheep-hide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@apollo/client": minor
---

Drop `rehackt` dependency.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🙌

We can now directly import from `react` without causing build errors in RSC.
5 changes: 5 additions & 0 deletions .changeset/rare-houses-prove.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@apollo/client": minor
---

Add `react-server` entry point with stubs for normal exports.
1 change: 0 additions & 1 deletion .size-limit.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ const checks = [
brotli: true,
ignore: [
...(config.ignore || []),
"rehackt",
"react",
"react-dom",
"@graphql-typed-document-node/core",
Expand Down
25 changes: 1 addition & 24 deletions config/apiExtractor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,36 +127,13 @@ async function buildReport(
})
);

let succeededAdditionalChecks = true;
if (fs.existsSync(extractorConfig.reportFilePath)) {
const contents = readFileSync(extractorConfig.reportFilePath, "utf8");
if (contents.includes("rehackt")) {
succeededAdditionalChecks = false;
console.error(
"❗ %s contains a reference to the `rehackt` package!",
extractorConfig.reportFilePath
);
}
if (contents.includes('/// <reference types="react" />')) {
succeededAdditionalChecks = false;
console.error(
"❗ %s contains a reference to the global `React` type!/n" +
'Use `import type * as ReactTypes from "react";` instead',
extractorConfig.reportFilePath
);
}
}

if (extractorResult.succeeded && succeededAdditionalChecks) {
if (extractorResult.succeeded) {
console.log(`✅ API Extractor completed successfully`);
} else {
console.error(
`❗ API Extractor completed with ${extractorResult.errorCount} errors` +
` and ${extractorResult.warningCount} warnings`
);
if (!succeededAdditionalChecks) {
console.error("Additional checks failed.");
}
process.exitCode = 1;
}
}
27 changes: 27 additions & 0 deletions config/listImports.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/**
* used via e.g.
```sh
node --experimental-transform-types --no-warnings --conditions 'react-server' config/listImports.ts @apollo/client/react
```
from `src/__tests__/exports.ts`
*/
import { registerHooks } from "node:module";

registerHooks({
resolve(specifier, context, nextResolve) {
try {
return nextResolve(specifier, context);
} catch (e) {
if (specifier.endsWith(".js")) {
for (const ext of [".ts", ".tsx"]) {
return nextResolve(specifier.slice(0, -3) + ext, context);
}
}
throw e;
}
},
});

Object.keys(await import(process.argv[2]))
.sort()
.forEach((i) => console.log(i));
3 changes: 0 additions & 3 deletions config/package.json

This file was deleted.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@
"./link/utils": "./src/link/utils/index.ts",
"./link/ws": "./src/link/ws/index.ts",
"./masking": "./src/masking/index.ts",
"./react": "./src/react/index.ts",
"./react": {
"react-server": "./src/react/index.react-server.ts",
"default": "./src/react/index.ts"
},
"./react/context": "./src/react/context/index.ts",
"./react/hooks": "./src/react/hooks/index.ts",
"./react/internal": "./src/react/internal/index.ts",
Expand Down Expand Up @@ -147,7 +150,6 @@
"@wry/trie": "^0.5.0",
"graphql-tag": "^2.12.6",
"optimism": "^0.18.0",
"rehackt": "^0.1.0",
"tslib": "^2.3.0"
},
"devDependencies": {
Expand Down
25 changes: 25 additions & 0 deletions src/__tests__/__snapshots__/exports.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,31 @@ Array [
]
`;

exports[`exports of public entry points @apollo/client/react with conditions [react-server] 1`] = `
Array [
"ApolloConsumer",
"ApolloProvider",
"DocumentType",
"createQueryPreloader",
"getApolloContext",
"operationName",
"parser",
"useApolloClient",
"useBackgroundQuery",
"useFragment",
"useLazyQuery",
"useLoadableQuery",
"useMutation",
"useQuery",
"useQueryRefHandlers",
"useReactiveVar",
"useReadQuery",
"useSubscription",
"useSuspenseFragment",
"useSuspenseQuery",
]
`;

exports[`exports of public entry points @apollo/client/react/context 1`] = `
Array [
"ApolloConsumer",
Expand Down
18 changes: 18 additions & 0 deletions src/__tests__/exports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
// A) JSDOM doesn't yet support the TextEncoder/TextDecoder globals added in node 11, meaning certain imports (e.g. reactSSR) will fail (See https://github.com/jsdom/jsdom/issues/2524)
// B) We're just testing imports/exports, so no reason not to use Node for slightly better performance.

import { resolve } from "node:path";

import { $ } from "zx";

import * as client from "@apollo/client";
import * as cache from "@apollo/client/cache";
import * as core from "@apollo/client/core";
Expand Down Expand Up @@ -51,6 +55,18 @@ describe("exports of public entry points", () => {
expect(Object.keys(ns).sort()).toMatchSnapshot();
});
}
function checkWithConditions(id: string, conditions: string[]) {
test(`${id} with conditions [${conditions.join(",")}]`, async () => {
const exports = await $({
cwd: resolve(__dirname, "../../"),
})`node --experimental-transform-types --no-warnings ${conditions.flatMap(
(condition) => [`--conditions`, condition]
)} config/listImports.ts ${id}`;
expect(
exports.stdout.split("\n").filter((x) => x.trim() !== "")
).toMatchSnapshot();
});
}

check("@apollo/client", client);
check("@apollo/client/cache", cache);
Expand Down Expand Up @@ -87,6 +103,8 @@ describe("exports of public entry points", () => {
check("@apollo/client/utilities/invariant", utilitiesInvariant);
check("@apollo/client/utilities/environment", utilitiesEnvironment);

checkWithConditions("@apollo/client/react", ["react-server"]);

it("completeness", () => {
const { join } = require("path").posix;
entryPoints.forEach((info: Record<string, any>) => {
Expand Down
2 changes: 1 addition & 1 deletion src/react/context/ApolloConsumer.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type * as ReactTypes from "react";
import * as React from "rehackt";
import * as React from "react";

import type { ApolloClient } from "@apollo/client/core";
import { invariant } from "@apollo/client/utilities/invariant";
Expand Down
2 changes: 1 addition & 1 deletion src/react/context/ApolloContext.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type * as ReactTypes from "react";
import * as React from "rehackt";
import * as React from "react";

import type { ApolloClient } from "@apollo/client/core";
import type { RenderPromises } from "@apollo/client/react/ssr";
Expand Down
2 changes: 1 addition & 1 deletion src/react/context/ApolloProvider.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type * as ReactTypes from "react";
import * as React from "rehackt";
import * as React from "react";

import type { ApolloClient } from "@apollo/client/core";
import { invariant } from "@apollo/client/utilities/invariant";
Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/internal/__tests__/useRenderGuard.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable testing-library/render-result-naming-convention */
import * as React from "rehackt";
import * as React from "react";
import { render, waitFor } from "@testing-library/react";

import { useRenderGuard } from "../useRenderGuard.js";
Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/internal/__use.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as React from "rehackt";
import * as React from "react";

import { wrapPromiseWithState } from "@apollo/client/utilities";

Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/internal/useDeepMemo.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { equal } from "@wry/equality";
import type { DependencyList } from "react";
import * as React from "rehackt";
import * as React from "react";

export function useDeepMemo<TValue>(
memoFn: () => TValue,
Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/internal/useIsomorphicLayoutEffect.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as React from "rehackt";
import * as React from "react";

import { canUseDOM } from "@apollo/client/utilities";

Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/internal/useRenderGuard.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as React from "rehackt";
import * as React from "react";

let Ctx: React.Context<null>;

Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/useApolloClient.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as React from "rehackt";
import * as React from "react";

import type { ApolloClient } from "@apollo/client/core";
import { getApolloContext } from "@apollo/client/react/context";
Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/useBackgroundQuery.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as React from "rehackt";
import * as React from "react";

import { canonicalStringify } from "@apollo/client/cache";
import type {
Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/useFragment.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import equal from "@wry/equality";
import * as React from "rehackt";
import * as React from "react";

import type {
Cache,
Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/useLazyQuery.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { TypedDocumentNode } from "@graphql-typed-document-node/core";
import { equal } from "@wry/equality";
import type { DocumentNode } from "graphql";
import * as React from "rehackt";
import * as React from "react";

import type {
ApolloClient,
Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/useLoadableQuery.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as React from "rehackt";
import * as React from "react";

import { canonicalStringify } from "@apollo/client/cache";
import type {
Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/useMutation.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { TypedDocumentNode } from "@graphql-typed-document-node/core";
import { equal } from "@wry/equality";
import type { DocumentNode } from "graphql";
import * as React from "rehackt";
import * as React from "react";

import type {
ApolloCache,
Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/useQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
/** */
import { equal } from "@wry/equality";
import * as React from "rehackt";
import * as React from "react";
import { asapScheduler, observeOn } from "rxjs";

import type {
Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/useQueryRefHandlers.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as React from "rehackt";
import * as React from "react";

import type { OperationVariables } from "@apollo/client/core";
import type { SubscribeToMoreFunction } from "@apollo/client/core";
Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/useReactiveVar.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as React from "rehackt";
import * as React from "react";

import type { ReactiveVar } from "@apollo/client/core";

Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/useReadQuery.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as React from "rehackt";
import * as React from "react";

import type {
ApolloClient,
Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/useSubscription.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { TypedDocumentNode } from "@graphql-typed-document-node/core";
import { equal } from "@wry/equality";
import type { DocumentNode } from "graphql";
import * as React from "rehackt";
import * as React from "react";
import { Observable } from "rxjs";

import type {
Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/useSuspenseFragment.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as React from "rehackt";
import * as React from "react";

import { canonicalStringify } from "@apollo/client/cache";
import type {
Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/useSuspenseQuery.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as React from "rehackt";
import * as React from "react";

import { canonicalStringify } from "@apollo/client/cache";
import type {
Expand Down
2 changes: 1 addition & 1 deletion src/react/hooks/useSyncExternalStore.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as React from "rehackt";
import * as React from "react";

import { canUseLayoutEffect } from "@apollo/client/utilities";
import { __DEV__ } from "@apollo/client/utilities/environment";
Expand Down
Loading
Loading