Files
react-native/packages/rn-tester/js/utils/RNTesterList.android.js
Jakub Piasecki fd273f83e0 Add RNTester examples for display: contents (#47201)
Summary:
Adds a page dedicated to `display: contents` to RNTester APIs section. Those can be used to verify that it's working correctly visually.

Needs https://github.com/facebook/react-native/pull/47194

## Changelog:

[INTERNAL] [ADDED] - Added `display: contents` examples to RNTester

Pull Request resolved: https://github.com/facebook/react-native/pull/47201

Test Plan:
Row styles are ignored in new arch and TextInputs as leaf are hidden

https://www.internalfb.com/compare-screenshots-from-diff/D65248256

Reviewed By: javache

Differential Revision: D65248256

Pulled By: NickGerleman

fbshipit-source-id: 90410e1380e4cdb22cb4cac5c8c21e08a088ce69
2024-10-31 16:12:46 -07:00

394 lines
9.9 KiB
JavaScript

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @flow
*/
'use strict';
import type {RNTesterModule, RNTesterModuleInfo} from '../types/RNTesterTypes';
import ReactNativeFeatureFlags from 'react-native/Libraries/ReactNative/ReactNativeFeatureFlags';
const Components: Array<RNTesterModuleInfo> = [
{
key: 'DrawerLayoutAndroid',
category: 'UI',
module: require('../examples/DrawerLayoutAndroid/DrawerLayoutAndroidExample'),
},
{
key: 'PopupMenuAndroidExample',
category: 'UI',
module: require('../examples/PopupMenuAndroid/PopupMenuAndroidExample'),
},
{
key: 'ActivityIndicatorExample',
category: 'UI',
module: require('../examples/ActivityIndicator/ActivityIndicatorExample'),
},
{
key: 'ButtonExample',
category: 'UI',
module: require('../examples/Button/ButtonExample'),
},
{
key: 'FlatListExampleIndex',
module: require('../examples/FlatList/FlatListExampleIndex').default,
category: 'ListView',
},
{
key: 'ImageExample',
category: 'Basic',
module: require('../examples/Image/ImageExample'),
},
{
key: 'JSResponderHandlerExample',
module: require('../examples/JSResponderHandlerExample/JSResponderHandlerExample'),
},
{
key: 'KeyboardAvoidingViewExample',
module: require('../examples/KeyboardAvoidingView/KeyboardAvoidingViewExample'),
},
{
key: 'ModalExample',
category: 'UI',
module: require('../examples/Modal/ModalExample'),
},
{
key: 'NewAppScreenExample',
module: require('../examples/NewAppScreen/NewAppScreenExample'),
},
{
key: 'PressableExample',
category: 'UI',
module: require('../examples/Pressable/PressableExample'),
},
{
key: 'RefreshControlExample',
module: require('../examples/RefreshControl/RefreshControlExample'),
},
{
key: 'ScrollViewExample',
category: 'Basic',
module: require('../examples/ScrollView/ScrollViewExample'),
},
{
key: 'ScrollViewSimpleExample',
category: 'Basic',
module: require('../examples/ScrollView/ScrollViewSimpleExample'),
},
{
key: 'ScrollViewAnimatedExample',
category: 'Basic',
module: require('../examples/ScrollView/ScrollViewAnimatedExample'),
},
{
key: 'SectionListExample',
category: 'ListView',
module: require('../examples/SectionList/SectionListIndex'),
},
{
key: 'StatusBarExample',
category: 'UI',
module: require('../examples/StatusBar/StatusBarExample'),
},
{
key: 'SwipeableCardExample',
category: 'UI',
module: require('../examples/SwipeableCardExample/SwipeableCardExample'),
},
{
key: 'SwitchExample',
category: 'UI',
module: require('../examples/Switch/SwitchExample'),
},
{
key: 'TextExample',
category: 'Basic',
module: require('../examples/Text/TextExample'),
},
{
key: 'TextInputExample',
category: 'Basic',
module: require('../examples/TextInput/TextInputExample'),
},
{
key: 'TextInputs with key prop',
module: require('../examples/TextInput/TextInputKeyProp'),
},
{
key: 'TouchableExample',
category: 'UI',
module: require('../examples/Touchable/TouchableExample'),
},
{
key: 'ViewExample',
category: 'Basic',
module: require('../examples/View/ViewExample').default,
},
{
key: 'NewArchitectureExample',
category: 'UI',
module: require('../examples/NewArchitecture/NewArchitectureExample'),
},
{
key: 'PerformanceComparisonExample',
category: 'Basic',
module: require('../examples/Performance/PerformanceComparisonExample'),
},
{
key: 'OSSLibraryExample',
module: require('../examples/OSSLibraryExample/OSSLibraryExample'),
},
];
const APIs: Array<RNTesterModuleInfo> = ([
{
key: 'AccessibilityExample',
category: 'Basic',
module: require('../examples/Accessibility/AccessibilityExample'),
},
{
key: 'AccessibilityAndroidExample',
category: 'Android',
module: require('../examples/Accessibility/AccessibilityAndroidExample'),
},
{
key: 'AlertExample',
category: 'UI',
module: require('../examples/Alert/AlertExample').default,
},
{
key: 'AnimatedIndex',
category: 'UI',
module: require('../examples/Animated/AnimatedIndex').default,
},
{
key: 'Animation - GratuitousAnimation',
category: 'UI',
module: require('../examples/AnimatedGratuitousApp/AnExApp'),
},
{
key: 'AppearanceExample',
category: 'UI',
module: require('../examples/Appearance/AppearanceExample'),
},
{
key: 'AppStateExample',
category: 'Basic',
module: require('../examples/AppState/AppStateExample'),
},
{
key: 'BorderExample',
category: 'UI',
module: require('../examples/Border/BorderExample').default,
},
{
key: 'CrashExample',
category: 'Basic',
module: require('../examples/Crash/CrashExample'),
},
{
key: 'DevSettings',
category: 'Basic',
module: require('../examples/DevSettings/DevSettingsExample'),
},
{
key: 'Dimensions',
category: 'UI',
module: require('../examples/Dimensions/DimensionsExample'),
},
{
key: 'DisplayContentsExample',
category: 'UI',
module: require('../examples/DisplayContents/DisplayContentsExample')
.default,
},
// Only show the link for the example if the API is available.
typeof IntersectionObserver === 'function'
? {
key: 'IntersectionObserver',
category: 'UI',
module: require('../examples/IntersectionObserver/IntersectionObserverIndex'),
}
: null,
{
key: 'InvalidPropsExample',
module: require('../examples/InvalidProps/InvalidPropsExample'),
},
{
key: 'Keyboard',
category: 'Basic',
module: require('../examples/Keyboard/KeyboardExample').default,
},
{
key: 'LayoutEventsExample',
category: 'UI',
module: require('../examples/Layout/LayoutEventsExample'),
},
{
key: 'LinkingExample',
category: 'Basic',
module: require('../examples/Linking/LinkingExample'),
},
{
key: 'LayoutAnimationExample',
category: 'UI',
module: require('../examples/Layout/LayoutAnimationExample'),
},
{
key: 'LayoutExample',
category: 'UI',
module: require('../examples/Layout/LayoutExample'),
},
typeof MutationObserver === 'function'
? {
key: 'MutationObserver',
category: 'UI',
module: require('../examples/MutationObserver/MutationObserverIndex'),
}
: null,
{
key: 'NativeAnimationsExample',
category: 'UI',
module: require('../examples/NativeAnimation/NativeAnimationsExample'),
},
{
key: 'OrientationChangeExample',
category: 'UI',
module: require('../examples/OrientationChange/OrientationChangeExample'),
},
{
key: 'PanResponderExample',
category: 'Basic',
module: require('../examples/PanResponder/PanResponderExample'),
},
{
key: 'PixelRatio',
category: 'UI',
module: require('../examples/PixelRatio/PixelRatioExample'),
},
{
key: 'PermissionsExampleAndroid',
category: 'Android',
module: require('../examples/PermissionsAndroid/PermissionsExample'),
},
{
key: 'PlatformColorExample',
category: 'UI',
module: require('../examples/PlatformColor/PlatformColorExample'),
},
{
key: 'PointerEventsExample',
category: 'Basic',
module: require('../examples/PointerEvents/PointerEventsExample'),
},
{
key: 'RTLExample',
category: 'Basic',
module: require('../examples/RTL/RTLExample'),
},
{
key: 'ShareExample',
category: 'Basic',
module: require('../examples/Share/ShareExample'),
},
{
key: 'TimerExample',
category: 'UI',
module: require('../examples/Timer/TimerExample'),
},
{
key: 'ToastAndroidExample',
category: 'Android',
module: require('../examples/ToastAndroid/ToastAndroidExample'),
},
{
key: 'TransformExample',
category: 'UI',
module: require('../examples/Transform/TransformExample'),
},
{
key: 'FilterExample',
category: 'UI',
module: require('../examples/Filter/FilterExample'),
},
{
key: 'LinearGradient',
category: 'UI',
module: require('../examples/LinearGradient/LinearGradientExample'),
},
{
key: 'MixBlendModeExample',
category: 'UI',
module: require('../examples/MixBlendMode/MixBlendModeExample'),
},
{
key: 'VibrationExample',
category: 'Basic',
module: require('../examples/Vibration/VibrationExample'),
},
{
key: 'WebSocketExample',
category: 'Basic',
module: require('../examples/WebSocket/WebSocketExample'),
},
{
key: 'XHRExample',
category: 'Basic',
module: require('../examples/XHR/XHRExample'),
},
{
key: 'TurboModuleExample',
category: 'Basic',
module: require('../examples/TurboModule/TurboModuleExample'),
},
{
key: 'LegacyModuleExample',
module: require('../examples/TurboModule/LegacyModuleExample'),
},
{
key: 'TurboCxxModuleExample',
category: 'Basic',
module: require('../examples/TurboModule/TurboCxxModuleExample'),
},
{
key: 'PerformanceApiExample',
category: 'Basic',
module: require('../examples/Performance/PerformanceApiExample'),
},
]: Array<?RNTesterModuleInfo>).filter(Boolean);
if (ReactNativeFeatureFlags.shouldEmitW3CPointerEvents()) {
APIs.push({
key: 'W3C PointerEvents',
category: 'Experimental',
module: require('../examples/Experimental/W3CPointerEventsExample').default,
});
}
const Playgrounds: Array<RNTesterModuleInfo> = [
{
key: 'PlaygroundExample',
module: require('../examples/Playground/PlaygroundExample'),
},
];
const Modules: {[key: string]: RNTesterModule} = {};
[...APIs, ...Components, ...Playgrounds].forEach(Example => {
Modules[Example.key] = Example.module;
});
const RNTesterList = {
APIs,
Components,
Modules,
};
module.exports = RNTesterList;