-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Closed
Labels
Resolution: AnsweredWhen the issue is resolved with a simple answerWhen the issue is resolved with a simple answerType: New ArchitectureIssues and PRs related to new architecture (Fabric/Turbo Modules)Issues and PRs related to new architecture (Fabric/Turbo Modules)
Description
Description
Description
Codegen doesn't support ReactNode or ReactElement as prop types, blocking a common React Native pattern that works in the old architecture.
Error
Unknown prop type for "FallbackComponent": "ReactElement"
I believe this is a common pattern that is widely used in popular libraries like react-native-masked-view. The ability to pass React elements as props is fundamental to many component patterns in React Native, and the lack of support in Codegen seems like a significant limitation for migrating existing libraries to Fabric.
Is there a recommended approach for handling this use case, or is this a known limitation that's being addressed?
Steps to reproduce
- Create a new Fabric view library:
pnpx create-react-native-library@latest react-native-secure-view
# Select: Fabric view
- Add ReactElement/ReactNode prop to
src/SecureViewNativeComponent.ts
:
import type { ViewProps } from 'react-native';
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
interface NativeProps extends ViewProps {
enable?: boolean;
maskElement?: React.ReactElement; // <- Add this line
}
export default codegenNativeComponent<NativeProps>('SecureView');
- Run codegen:
cd example/ios
pod install
- Observe error:
[Codegen] Unknown prop type for "maskElement": "undefined"
React Native Version
0.79.2
Affected Platforms
Runtime - iOS
Areas
Codegen
Output of npx @react-native-community/cli info
info Fetching system and libraries information...
System:
OS: macOS 15.5
CPU: (10) arm64 Apple M1 Pro
Memory: 78.47 MB / 32.00 GB
Shell:
version: "5.9"
path: /bin/zsh
Binaries:
Node:
version: 22.18.0
path: ~/.nvm/versions/node/v22.18.0/bin/node
Yarn:
version: 3.6.1
path: ~/.nvm/versions/node/v21.7.3/bin/yarn
npm:
version: 10.9.3
path: ~/.nvm/versions/node/v22.18.0/bin/npm
Watchman:
version: 2025.03.10.00
path: /opt/homebrew/bin/watchman
Managers:
CocoaPods:
version: 1.16.2
path: /Users/effx/.rbenv/shims/pod
SDKs:
iOS SDK:
Platforms:
- DriverKit 24.4
- iOS 18.4
- macOS 15.4
- tvOS 18.4
- visionOS 2.4
- watchOS 11.4
Android SDK: Not Found
IDEs:
Android Studio: 2024.3 AI-243.26053.27.2432.13536105
Xcode:
version: 16.3/16E140
path: /usr/bin/xcodebuild
Languages:
Java:
version: 21.0.4
path: /usr/bin/javac
Ruby:
version: 2.7.6
path: /Users/effx/.rbenv/shims/ruby
npmPackages:
"@react-native-community/cli":
installed: 18.0.0
wanted: 18.0.0
react:
installed: 19.0.0
wanted: 19.0.0
react-native:
installed: 0.79.2
wanted: 0.79.2
react-native-macos: Not Found
npmGlobalPackages:
"*react-native*": Not Found
Android:
hermesEnabled: true
newArchEnabled: true
iOS:
hermesEnabled: true
newArchEnabled: true
info React Native v0.80.2 is now available (your project is running on v0.79.2).
info Changelog: https://github.com/facebook/react-native/releases/tag/v0.80.2
info Diff: https://react-native-community.github.io/upgrade-helper/?from=0.79.2&to=0.80.2
info For more info, check out "https://reactnative.dev/docs/upgrading?os=macos".
Stacktrace or Logs
pod install
Found 1 module for target `SecureViewExample`
link_native_modules! {:ios_packages=>[{:configurations=>[], :name=>"react-native-secure-view", :root=>"/Users/effx/Git/react-native-secure-view", :path=>"../..", :podspec_path=>"/Users/effx/Git/react-native-secure-view/SecureView.podspec", :script_phases=>[]}], :ios_project_root_path=>"/Users/effx/Git/react-native-secure-view/example/ios", :react_native_path=>"../node_modules/react-native"}
Auto-linking React Native module for target `SecureViewExample`: SecureView
Framework build type is static library
Configuring the target with the New Architecture
[!] Invalid `Podfile` file: [!] /Users/effx/.nvm/versions/node/v22.18.0/bin/node ./../node_modules/react-native/scripts/generate-codegen-artifacts.js -p /Users/effx/Git/react-native-secure-view/example/ios/.. -o /Users/effx/Git/react-native-secure-view/example/ios -t ios
[Codegen] Analyzing /Users/effx/Git/react-native-secure-view/example/package.json
[Codegen] Searching for codegen-enabled libraries in the app.
[Codegen] The "codegenConfig" field is not defined in package.json. Assuming there is nothing to generate at the app level.
[Codegen] Searching for codegen-enabled libraries in the project dependencies.
[Codegen] Found react-native
[Codegen] Searching for codegen-enabled libraries in react-native.config.js
[Codegen] Found react-native-secure-view
[Codegen] Processing FBReactNativeSpec
[Codegen] Searching for podspec in the project dependencies.
[Codegen] Processing rncore
[Codegen] Searching for podspec in the project dependencies.
[Codegen] Processing SecureViewSpec
[Codegen] Searching for podspec in the project dependencies.
[Codegen] Supported Apple platforms: ios for SecureViewSpec
[Codegen] Error: Unknown prop type for "FallbackComponent": "ReactElement"
[Codegen] Done.
.
# from /Users/effx/Git/react-native-secure-view/example/ios/Podfile:22
# -------------------------------------------
#
> use_react_native!(
# :path => config[:reactNativePath],
# -------------------------------------------
MANDATORY Reproducer
https://github.com/effx13/react-native-secure-view
Screenshots and Videos
No response
Metadata
Metadata
Assignees
Labels
Resolution: AnsweredWhen the issue is resolved with a simple answerWhen the issue is resolved with a simple answerType: New ArchitectureIssues and PRs related to new architecture (Fabric/Turbo Modules)Issues and PRs related to new architecture (Fabric/Turbo Modules)