Skip to content

Commit 1e795ba

Browse files
EvanBaconnecolas
authored andcommitted
Add basic support for React Server Components
Close #2678 Fix #2672 Co-authored-by: evanbacon <[email protected]>
1 parent bb7911c commit 1e795ba

File tree

33 files changed

+64
-14
lines changed

33 files changed

+64
-14
lines changed

packages/react-native-web/src/exports/AccessibilityInfo/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
*
77
* @flow
88
*/
9+
10+
'use client';
11+
912
import canUseDOM from '../../modules/canUseDom';
1013

1114
function isScreenReaderEnabled(): Promise<*> {

packages/react-native-web/src/exports/ActivityIndicator/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* @flow
99
*/
1010

11+
'use client';
12+
1113
import type { ViewProps } from '../View';
1214

1315
import * as React from 'react';

packages/react-native-web/src/exports/Animated/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,7 @@
77
* @flow
88
*/
99

10+
'use client';
11+
1012
import Animated from '../../vendor/react-native/Animated/Animated';
1113
export default Animated;

packages/react-native-web/src/exports/AppRegistry/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* @flow
99
*/
1010

11+
'use client';
12+
1113
import type { Application } from './renderApplication';
1214
import type { ComponentType, Node } from 'react';
1315

packages/react-native-web/src/exports/AppState/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* @noflow
99
*/
1010

11+
'use client';
12+
1113
import invariant from 'fbjs/lib/invariant';
1214
import EventEmitter from '../../vendor/react-native/vendor/emitter/EventEmitter';
1315
import canUseDOM from '../../modules/canUseDom';

packages/react-native-web/src/exports/Appearance/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
*
88
* @flow
99
*/
10+
11+
'use client';
12+
1013
import canUseDOM from '../../modules/canUseDom';
1114

1215
export type ColorSchemeName = 'light' | 'dark';

packages/react-native-web/src/exports/CheckBox/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* @flow
99
*/
1010

11+
'use client';
12+
1113
import type { ColorValue } from '../../types';
1214
import type { ViewProps } from '../View';
1315

packages/react-native-web/src/exports/Clipboard/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* @flow
99
*/
1010

11+
'use client';
12+
1113
let clipboardAvailable;
1214

1315
export default class Clipboard {

packages/react-native-web/src/exports/Dimensions/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* @flow
99
*/
1010

11+
'use client';
12+
1113
import type { EventSubscription } from '../../vendor/react-native/vendor/emitter/EventEmitter';
1214
import invariant from 'fbjs/lib/invariant';
1315
import canUseDOM from '../../modules/canUseDom';

packages/react-native-web/src/exports/FlatList/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,7 @@
88
* @flow
99
*/
1010

11+
'use client';
12+
1113
import FlatList from '../../vendor/react-native/FlatList';
1214
export default FlatList;

packages/react-native-web/src/exports/Image/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* @flow
99
*/
1010

11+
'use client';
12+
1113
import type { ImageProps } from './types';
1214

1315
import * as React from 'react';

packages/react-native-web/src/exports/KeyboardAvoidingView/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* @flow
99
*/
1010

11+
'use client';
12+
1113
import type { LayoutEvent, LayoutValue } from '../../types';
1214
import type { ViewProps } from '../View';
1315

packages/react-native-web/src/exports/Modal/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* @flow
99
*/
1010

11+
'use client';
12+
1113
import type { ViewProps } from '../View';
1214

1315
import * as React from 'react';

packages/react-native-web/src/exports/Picker/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* @flow
99
*/
1010

11+
'use client';
12+
1113
import type { PlatformMethods } from '../../types';
1214
import type { ViewProps } from '../View';
1315

packages/react-native-web/src/exports/Pressable/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @flow strict-local
88
*/
99

10-
'use strict';
10+
'use client';
1111

1212
import type { HoverEventsConfig } from '../../modules/useHover';
1313
import type { PressResponderConfig } from '../../modules/usePressEvents/PressResponder';

packages/react-native-web/src/exports/ProgressBar/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
* @flow
88
*/
99

10+
'use client';
11+
1012
import type { ColorValue } from '../../types';
1113
import type { ViewProps } from '../View';
1214

packages/react-native-web/src/exports/ScrollView/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* @noflow
99
*/
1010

11+
'use client';
12+
1113
import type { ViewProps, ViewStyle } from '../View/types';
1214

1315
import Dimensions from '../Dimensions';

packages/react-native-web/src/exports/SectionList/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,7 @@
77
* @flow
88
*/
99

10+
'use client';
11+
1012
import SectionList from '../../vendor/react-native/SectionList';
1113
export default SectionList;

packages/react-native-web/src/exports/Switch/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
* @flow
88
*/
99

10+
'use client';
11+
1012
import type { ColorValue } from '../../types';
1113
import type { ViewProps } from '../View';
1214

packages/react-native-web/src/exports/Text/TextAncestorContext.js

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
* @flow strict
88
*/
99

10+
'use client';
11+
1012
import type { Context } from 'react';
1113

1214
import { createContext } from 'react';

packages/react-native-web/src/exports/Text/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* @flow
99
*/
1010

11+
'use client';
12+
1113
import type { PlatformMethods } from '../../types';
1214
import type { TextProps } from './types';
1315

packages/react-native-web/src/exports/TextInput/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* @flow
99
*/
1010

11+
'use client';
12+
1113
import type { PlatformMethods } from '../../types';
1214
import type { TextInputProps } from './types';
1315

packages/react-native-web/src/exports/TouchableHighlight/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @format
99
*/
1010

11-
'use strict';
11+
'use client';
1212

1313
import type { ColorValue } from '../../types';
1414
import type { Props as TouchableWithoutFeedbackProps } from '../TouchableWithoutFeedback';

packages/react-native-web/src/exports/TouchableOpacity/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @format
99
*/
1010

11-
'use strict';
11+
'use client';
1212

1313
import type { Props as TouchableWithoutFeedbackProps } from '../TouchableWithoutFeedback';
1414
import type { ViewProps } from '../View';

packages/react-native-web/src/exports/TouchableWithoutFeedback/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @format
99
*/
1010

11-
'use strict';
11+
'use client';
1212

1313
import type { PressResponderConfig } from '../../modules/usePressEvents/PressResponder';
1414
import type { ViewProps } from '../View';

packages/react-native-web/src/exports/View/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* @flow
99
*/
1010

11+
'use client';
12+
1113
import type { PlatformMethods } from '../../types';
1214
import type { ViewProps } from './types';
1315

packages/react-native-web/src/exports/VirtualizedList/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,7 @@
77
* @flow
88
*/
99

10+
'use client';
11+
1012
import VirtualizedList from '../../vendor/react-native/VirtualizedList';
1113
export default VirtualizedList;

packages/react-native-web/src/exports/createElement/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
* @noflow
88
*/
99

10+
'use client';
11+
1012
import AccessibilityUtil from '../../modules/AccessibilityUtil';
1113
import createDOMProps from '../../modules/createDOMProps';
1214
import React from 'react';

packages/react-native-web/src/exports/render/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
* @noflow
88
*/
99

10+
'use client';
11+
1012
import {
1113
hydrate as domLegacyHydrate,
1214
render as domLegacyRender

packages/react-native-web/src/exports/useColorScheme/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* @flow
99
*/
1010

11+
'use client';
12+
1113
import * as React from 'react';
1214
import type { ColorSchemeName } from '../Appearance';
1315
import Appearance from '../Appearance';

packages/react-native-web/src/exports/useLocaleContext/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,7 @@
77
* @flow strict
88
*/
99

10+
'use client';
11+
1012
import { useLocaleContext } from '../../modules/useLocale';
1113
export default useLocaleContext;

packages/react-native-web/src/exports/useWindowDimensions/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @flow strict-local
99
*/
1010

11-
'use strict';
11+
'use client';
1212

1313
import type { DisplayMetrics } from '../Dimensions';
1414

packages/react-native-web/src/modules/UnimplementedView/index.js

+3-9
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,17 @@
66
*
77
* @flow
88
*/
9-
109
import type { Node } from 'React';
10+
import type { ViewProps } from '../../exports/View/types';
1111

1212
import View from '../../exports/View';
1313
import React from 'react';
1414

1515
/**
1616
* Common implementation for a simple stubbed view.
1717
*/
18-
class UnimplementedView extends React.Component<*, *> {
19-
render(): Node {
20-
return (
21-
<View style={[unimplementedViewStyles, this.props.style]}>
22-
{this.props.children}
23-
</View>
24-
);
25-
}
18+
function UnimplementedView({ style, ...props }: ViewProps): Node {
19+
return <View {...props} style={[unimplementedViewStyles, style]} />;
2620
}
2721

2822
const unimplementedViewStyles =

0 commit comments

Comments
 (0)