File tree 33 files changed +64
-14
lines changed
packages/react-native-web/src
modules/UnimplementedView
33 files changed +64
-14
lines changed Original file line number Diff line number Diff line change 6
6
*
7
7
* @flow
8
8
*/
9
+
10
+ 'use client' ;
11
+
9
12
import canUseDOM from '../../modules/canUseDom' ;
10
13
11
14
function isScreenReaderEnabled ( ) : Promise < * > {
Original file line number Diff line number Diff line change 8
8
* @flow
9
9
*/
10
10
11
+ 'use client' ;
12
+
11
13
import type { ViewProps } from '../View' ;
12
14
13
15
import * as React from 'react' ;
Original file line number Diff line number Diff line change 7
7
* @flow
8
8
*/
9
9
10
+ 'use client' ;
11
+
10
12
import Animated from '../../vendor/react-native/Animated/Animated' ;
11
13
export default Animated ;
Original file line number Diff line number Diff line change 8
8
* @flow
9
9
*/
10
10
11
+ 'use client' ;
12
+
11
13
import type { Application } from './renderApplication' ;
12
14
import type { ComponentType , Node } from 'react' ;
13
15
Original file line number Diff line number Diff line change 8
8
* @noflow
9
9
*/
10
10
11
+ 'use client' ;
12
+
11
13
import invariant from 'fbjs/lib/invariant' ;
12
14
import EventEmitter from '../../vendor/react-native/vendor/emitter/EventEmitter' ;
13
15
import canUseDOM from '../../modules/canUseDom' ;
Original file line number Diff line number Diff line change 7
7
*
8
8
* @flow
9
9
*/
10
+
11
+ 'use client' ;
12
+
10
13
import canUseDOM from '../../modules/canUseDom' ;
11
14
12
15
export type ColorSchemeName = 'light' | 'dark' ;
Original file line number Diff line number Diff line change 8
8
* @flow
9
9
*/
10
10
11
+ 'use client' ;
12
+
11
13
import type { ColorValue } from '../../types' ;
12
14
import type { ViewProps } from '../View' ;
13
15
Original file line number Diff line number Diff line change 8
8
* @flow
9
9
*/
10
10
11
+ 'use client' ;
12
+
11
13
let clipboardAvailable ;
12
14
13
15
export default class Clipboard {
Original file line number Diff line number Diff line change 8
8
* @flow
9
9
*/
10
10
11
+ 'use client' ;
12
+
11
13
import type { EventSubscription } from '../../vendor/react-native/vendor/emitter/EventEmitter' ;
12
14
import invariant from 'fbjs/lib/invariant' ;
13
15
import canUseDOM from '../../modules/canUseDom' ;
Original file line number Diff line number Diff line change 8
8
* @flow
9
9
*/
10
10
11
+ 'use client' ;
12
+
11
13
import FlatList from '../../vendor/react-native/FlatList' ;
12
14
export default FlatList ;
Original file line number Diff line number Diff line change 8
8
* @flow
9
9
*/
10
10
11
+ 'use client' ;
12
+
11
13
import type { ImageProps } from './types' ;
12
14
13
15
import * as React from 'react' ;
Original file line number Diff line number Diff line change 8
8
* @flow
9
9
*/
10
10
11
+ 'use client' ;
12
+
11
13
import type { LayoutEvent , LayoutValue } from '../../types' ;
12
14
import type { ViewProps } from '../View' ;
13
15
Original file line number Diff line number Diff line change 8
8
* @flow
9
9
*/
10
10
11
+ 'use client' ;
12
+
11
13
import type { ViewProps } from '../View' ;
12
14
13
15
import * as React from 'react' ;
Original file line number Diff line number Diff line change 8
8
* @flow
9
9
*/
10
10
11
+ 'use client' ;
12
+
11
13
import type { PlatformMethods } from '../../types' ;
12
14
import type { ViewProps } from '../View' ;
13
15
Original file line number Diff line number Diff line change 7
7
* @flow strict-local
8
8
*/
9
9
10
- 'use strict ' ;
10
+ 'use client ' ;
11
11
12
12
import type { HoverEventsConfig } from '../../modules/useHover' ;
13
13
import type { PressResponderConfig } from '../../modules/usePressEvents/PressResponder' ;
Original file line number Diff line number Diff line change 7
7
* @flow
8
8
*/
9
9
10
+ 'use client' ;
11
+
10
12
import type { ColorValue } from '../../types' ;
11
13
import type { ViewProps } from '../View' ;
12
14
Original file line number Diff line number Diff line change 8
8
* @noflow
9
9
*/
10
10
11
+ 'use client' ;
12
+
11
13
import type { ViewProps , ViewStyle } from '../View/types' ;
12
14
13
15
import Dimensions from '../Dimensions' ;
Original file line number Diff line number Diff line change 7
7
* @flow
8
8
*/
9
9
10
+ 'use client' ;
11
+
10
12
import SectionList from '../../vendor/react-native/SectionList' ;
11
13
export default SectionList ;
Original file line number Diff line number Diff line change 7
7
* @flow
8
8
*/
9
9
10
+ 'use client' ;
11
+
10
12
import type { ColorValue } from '../../types' ;
11
13
import type { ViewProps } from '../View' ;
12
14
Original file line number Diff line number Diff line change 7
7
* @flow strict
8
8
*/
9
9
10
+ 'use client' ;
11
+
10
12
import type { Context } from 'react' ;
11
13
12
14
import { createContext } from 'react' ;
Original file line number Diff line number Diff line change 8
8
* @flow
9
9
*/
10
10
11
+ 'use client' ;
12
+
11
13
import type { PlatformMethods } from '../../types' ;
12
14
import type { TextProps } from './types' ;
13
15
Original file line number Diff line number Diff line change 8
8
* @flow
9
9
*/
10
10
11
+ 'use client' ;
12
+
11
13
import type { PlatformMethods } from '../../types' ;
12
14
import type { TextInputProps } from './types' ;
13
15
Original file line number Diff line number Diff line change 8
8
* @format
9
9
*/
10
10
11
- 'use strict ' ;
11
+ 'use client ' ;
12
12
13
13
import type { ColorValue } from '../../types' ;
14
14
import type { Props as TouchableWithoutFeedbackProps } from '../TouchableWithoutFeedback' ;
Original file line number Diff line number Diff line change 8
8
* @format
9
9
*/
10
10
11
- 'use strict ' ;
11
+ 'use client ' ;
12
12
13
13
import type { Props as TouchableWithoutFeedbackProps } from '../TouchableWithoutFeedback' ;
14
14
import type { ViewProps } from '../View' ;
Original file line number Diff line number Diff line change 8
8
* @format
9
9
*/
10
10
11
- 'use strict ' ;
11
+ 'use client ' ;
12
12
13
13
import type { PressResponderConfig } from '../../modules/usePressEvents/PressResponder' ;
14
14
import type { ViewProps } from '../View' ;
Original file line number Diff line number Diff line change 8
8
* @flow
9
9
*/
10
10
11
+ 'use client' ;
12
+
11
13
import type { PlatformMethods } from '../../types' ;
12
14
import type { ViewProps } from './types' ;
13
15
Original file line number Diff line number Diff line change 7
7
* @flow
8
8
*/
9
9
10
+ 'use client' ;
11
+
10
12
import VirtualizedList from '../../vendor/react-native/VirtualizedList' ;
11
13
export default VirtualizedList ;
Original file line number Diff line number Diff line change 7
7
* @noflow
8
8
*/
9
9
10
+ 'use client' ;
11
+
10
12
import AccessibilityUtil from '../../modules/AccessibilityUtil' ;
11
13
import createDOMProps from '../../modules/createDOMProps' ;
12
14
import React from 'react' ;
Original file line number Diff line number Diff line change 7
7
* @noflow
8
8
*/
9
9
10
+ 'use client' ;
11
+
10
12
import {
11
13
hydrate as domLegacyHydrate ,
12
14
render as domLegacyRender
Original file line number Diff line number Diff line change 8
8
* @flow
9
9
*/
10
10
11
+ 'use client' ;
12
+
11
13
import * as React from 'react' ;
12
14
import type { ColorSchemeName } from '../Appearance' ;
13
15
import Appearance from '../Appearance' ;
Original file line number Diff line number Diff line change 7
7
* @flow strict
8
8
*/
9
9
10
+ 'use client' ;
11
+
10
12
import { useLocaleContext } from '../../modules/useLocale' ;
11
13
export default useLocaleContext ;
Original file line number Diff line number Diff line change 8
8
* @flow strict-local
9
9
*/
10
10
11
- 'use strict ' ;
11
+ 'use client ' ;
12
12
13
13
import type { DisplayMetrics } from '../Dimensions' ;
14
14
Original file line number Diff line number Diff line change 6
6
*
7
7
* @flow
8
8
*/
9
-
10
9
import type { Node } from 'React' ;
10
+ import type { ViewProps } from '../../exports/View/types' ;
11
11
12
12
import View from '../../exports/View' ;
13
13
import React from 'react' ;
14
14
15
15
/**
16
16
* Common implementation for a simple stubbed view.
17
17
*/
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 ] } /> ;
26
20
}
27
21
28
22
const unimplementedViewStyles =
You can’t perform that action at this time.
0 commit comments