Skip to content

Commit af6f73c

Browse files
authored
Merge pull request #1884 from reduxjs/feature/react18-shim-swap
2 parents eeedae2 + 687ddfa commit af6f73c

File tree

8 files changed

+116
-120
lines changed

8 files changed

+116
-120
lines changed

.github/workflows/test.yml

+1-19
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
fail-fast: false
4141
matrix:
4242
node: ['14.x']
43-
ts: ['4.0', '4.1', '4.2', '4.3', '4.4', '4.5', 'next']
43+
ts: ['4.0', '4.1', '4.2', '4.3', '4.4', '4.5', '4.6', 'next']
4444
steps:
4545
- name: Checkout repo
4646
uses: actions/checkout@v2
@@ -57,24 +57,6 @@ jobs:
5757
- name: Install TypeScript ${{ matrix.ts }}
5858
run: yarn add typescript@${{ matrix.ts }}
5959

60-
# - uses: actions/download-artifact@v2
61-
# with:
62-
# name: package
63-
# path: packages/toolkit
64-
65-
# - name: Install build artifact
66-
# run: yarn add ./package.tgz
67-
68-
# - run: sed -i -e /@remap-prod-remove-line/d ./tsconfig.base.json ./jest.config.js ./src/tests/*.* ./src/query/tests/*.*
69-
70-
# - name: "@ts-ignore stuff that didn't exist pre-4.1 in the tests"
71-
# if: ${{ matrix.ts < 4.1 }}
72-
# run: sed -i -e 's/@pre41-ts-ignore/@ts-ignore/' -e '/pre41-remove-start/,/pre41-remove-end/d' ./src/tests/*.* ./src/query/tests/*.ts*
73-
74-
# - name: 'disable strictOptionalProperties'
75-
# if: ${{ matrix.ts == 'next' }}
76-
# run: sed -i -e 's|//\(.*strictOptionalProperties.*\)$|\1|' tsconfig.base.json
77-
7860
- name: Test types
7961
run: |
8062
yarn tsc --version

jest.config.js

+17-5
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const tsTestFolderPath = (folderName) =>
1313

1414
const tsStandardConfig = {
1515
...defaults,
16-
displayName: 'ReactDOM',
16+
displayName: 'ReactDOM 18',
1717
preset: 'ts-jest',
1818
testMatch: NORMAL_TEST_FOLDERS.map(tsTestFolderPath),
1919
}
@@ -29,18 +29,30 @@ const rnConfig = {
2929
},
3030
}
3131

32-
const compatEntryConfig = {
32+
const standardReact17Config = {
3333
...tsStandardConfig,
34-
displayName: 'Compat',
34+
displayName: 'ReactDOM 17',
3535
moduleNameMapper: {
3636
'^react$': 'react-17',
3737
'^react-dom$': 'react-dom-17',
3838
'^react-test-renderer$': 'react-test-renderer-17',
3939
'^@testing-library/react$': '@testing-library/react-12',
40-
'../../src/index': '<rootDir>/src/compat',
40+
},
41+
}
42+
43+
const nextEntryConfig = {
44+
...tsStandardConfig,
45+
displayName: 'Next',
46+
moduleNameMapper: {
47+
'../../src/index': '<rootDir>/src/next',
4148
},
4249
}
4350

4451
module.exports = {
45-
projects: [tsStandardConfig, rnConfig, compatEntryConfig],
52+
projects: [
53+
tsStandardConfig,
54+
rnConfig,
55+
standardReact17Config,
56+
nextEntryConfig,
57+
],
4658
}

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"coverage": "codecov"
4141
},
4242
"peerDependencies": {
43-
"react": "^18.0.0-rc"
43+
"react": "^18.0.0"
4444
},
4545
"peerDependenciesMeta": {
4646
"react-dom": {
@@ -55,8 +55,8 @@
5555
"@types/hoist-non-react-statics": "^3.3.1",
5656
"@types/use-sync-external-store": "^0.0.3",
5757
"hoist-non-react-statics": "^3.3.2",
58-
"react-is": "^18.0.0-rc.0",
59-
"use-sync-external-store": "^1.0.0-rc.0"
58+
"react-is": "^18.0.0",
59+
"use-sync-external-store": "^1.0.0"
6060
},
6161
"devDependencies": {
6262
"@babel/cli": "^7.12.1",
@@ -76,14 +76,14 @@
7676
"@rollup/plugin-replace": "^2.3.3",
7777
"@testing-library/jest-dom": "^5.11.5",
7878
"@testing-library/jest-native": "^3.4.3",
79-
"@testing-library/react": "13.0.0-alpha.4",
79+
"@testing-library/react": "13.0.0",
8080
"@testing-library/react-12": "npm:@testing-library/react@^12",
8181
"@testing-library/react-hooks": "^3.4.2",
8282
"@testing-library/react-native": "^7.1.0",
8383
"@types/object-assign": "^4.0.30",
84-
"@types/react": "^17.0.35",
85-
"@types/react-dom": "^17.0.11",
86-
"@types/react-is": "^17.0.1",
84+
"@types/react": "^17.0.43",
85+
"@types/react-dom": "^17.0.14",
86+
"@types/react-is": "^17.0.3",
8787
"@types/react-native": "^0.64.12",
8888
"@types/react-redux": "^7.1.18",
8989
"@typescript-eslint/eslint-plugin": "^4.28.0",
@@ -100,12 +100,12 @@
100100
"glob": "^7.1.6",
101101
"jest": "^26.6.1",
102102
"prettier": "^2.1.2",
103-
"react": "18.0.0-beta-fdc1d617a-20211118",
103+
"react": "18.0.0",
104104
"react-17": "npm:react@^17",
105-
"react-dom": "18.0.0-beta-fdc1d617a-20211118",
105+
"react-dom": "18.0.0",
106106
"react-dom-17": "npm:react-dom@^17",
107107
"react-native": "^0.64.1",
108-
"react-test-renderer": "18.0.0-beta-fdc1d617a-20211118",
108+
"react-test-renderer": "18.0.0",
109109
"react-test-renderer-17": "npm:react-test-renderer@^17",
110110
"redux": "^4.0.5",
111111
"rimraf": "^3.0.2",

src/connect/wrapMapToProps.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ type StateOrDispatch<S = AnyState> = S | Dispatch
88

99
type AnyProps = { [key: string]: any }
1010

11-
export type MapToProps<P = AnyProps> = {
11+
export type MapToProps<P extends AnyProps = AnyProps> = {
1212
// eslint-disable-next-line no-unused-vars
1313
(stateOrDispatch: StateOrDispatch, ownProps?: P): FixTypeLater
1414
dependsOnOwnProps?: boolean
@@ -65,7 +65,7 @@ export function getDependsOnOwnProps(mapToProps: MapToProps) {
6565
// * On first call, verifies the first result is a plain object, in order to warn
6666
// the developer that their mapToProps function is not returning a valid result.
6767
//
68-
export function wrapMapToPropsFunc<P = AnyProps>(
68+
export function wrapMapToPropsFunc<P extends AnyProps = AnyProps>(
6969
mapToProps: MapToProps,
7070
methodName: string
7171
) {

src/index.ts

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
// The default entry point assumes we are working with React 18, and thus have
2-
// useSyncExternalStore available. We can import that directly from React itself.
3-
// The useSyncExternalStoreWithSelector has to be imported, but we can use the
4-
// non-shim version. This shaves off the byte size of the shim.
1+
// The primary entry point assumes we're working with standard ReactDOM/RN, but
2+
// older versions that do not include `useSyncExternalStore` (React 16.9 - 17.x).
3+
// Because of that, the useSyncExternalStore compat shim is needed.
54

6-
// @ts-ignore React types not updated yet
7-
import { useSyncExternalStore } from 'react'
8-
import { useSyncExternalStoreWithSelector } from 'use-sync-external-store/with-selector'
5+
import { useSyncExternalStore } from 'use-sync-external-store/shim'
6+
import { useSyncExternalStoreWithSelector } from 'use-sync-external-store/shim/with-selector'
97

108
import { unstable_batchedUpdates as batch } from './utils/reactBatchedUpdates'
119
import { setBatch } from './utils/batch'

src/compat.ts src/next.ts

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
// The "compat" entry point assumes we're working with standard ReactDOM/RN, but
2-
// older versions that do not include `useSyncExternalStore` (React 16.9 - 17.x).
3-
// Because of that, the useSyncExternalStore compat shim is needed.
1+
// The secondary entry point assumes we are working with React 18, and thus have
2+
// useSyncExternalStore available. We can import that directly from React itself.
3+
// The useSyncExternalStoreWithSelector has to be imported, but we can use the
4+
// non-shim version. This shaves off the byte size of the shim.
45

5-
import { useSyncExternalStore } from 'use-sync-external-store/shim'
6-
import { useSyncExternalStoreWithSelector } from 'use-sync-external-store/shim/with-selector'
6+
import { useSyncExternalStore } from 'react'
7+
import { useSyncExternalStoreWithSelector } from 'use-sync-external-store/with-selector'
78

89
import { unstable_batchedUpdates as batch } from './utils/reactBatchedUpdates'
910
import { setBatch } from './utils/batch'

test/components/connect.spec.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -845,8 +845,10 @@ describe('React', () => {
845845
<OuterComponent ref={outerComponent} />
846846
</ProviderMock>
847847
)
848-
outerComponent.current!.setFoo('BAR')
849-
outerComponent.current!.setFoo('DID')
848+
rtl.act(() => {
849+
outerComponent.current!.setFoo('BAR')
850+
outerComponent.current!.setFoo('DID')
851+
})
850852

851853
expect(invocationCount).toEqual(1)
852854
})

0 commit comments

Comments
 (0)