-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: use macro for header fixes
- Loading branch information
1 parent
828bc0f
commit 3161150
Showing
14 changed files
with
151 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
diff --git a/ios/RNIContextMenuButton/RNIContextMenuButton.mm b/ios/RNIContextMenuButton/RNIContextMenuButton.mm | ||
index 3d91bae..0870791 100644 | ||
--- a/ios/RNIContextMenuButton/RNIContextMenuButton.mm | ||
+++ b/ios/RNIContextMenuButton/RNIContextMenuButton.mm | ||
@@ -23,8 +23,13 @@ | ||
#if RCT_NEW_ARCH_ENABLED | ||
#include "RNIContextMenuButtonComponentDescriptor.h" | ||
|
||
+#if __has_include(<react_native_ios_utilities/RNIBaseViewState.h>) | ||
#include <react_native_ios_utilities/RNIBaseViewState.h> | ||
#include <react_native_ios_utilities/RNIBaseViewProps.h> | ||
+#else | ||
+#include <react-native-ios-utilities/RNIBaseViewState.h> | ||
+#include <react-native-ios-utilities/RNIBaseViewProps.h> | ||
+#endif | ||
|
||
#import <React/RCTConversions.h> | ||
#import <React/RCTFabricComponentsPlugins.h> | ||
diff --git a/ios/RNIContextMenuButton/RNIContextMenuButtonComponentDescriptor.h b/ios/RNIContextMenuButton/RNIContextMenuButtonComponentDescriptor.h | ||
index 0fe922b..7cf637e 100644 | ||
--- a/ios/RNIContextMenuButton/RNIContextMenuButtonComponentDescriptor.h | ||
+++ b/ios/RNIContextMenuButton/RNIContextMenuButtonComponentDescriptor.h | ||
@@ -11,7 +11,11 @@ | ||
#include "RNIContextMenuButtonShadowNode.h" | ||
#include "RNIBaseViewComponentDescriptor.h" | ||
|
||
+#if __has_include(<react_native_ios_utilities/RNIBaseViewState.h>) | ||
#include <react_native_ios_utilities/RNIBaseViewState.h> | ||
+#else | ||
+#include <react-native-ios-utilities/RNIBaseViewState.h> | ||
+#endif | ||
|
||
#include <react/renderer/core/ConcreteComponentDescriptor.h> | ||
|
||
diff --git a/ios/RNIContextMenuButton/RNIContextMenuButtonShadowNode.h b/ios/RNIContextMenuButton/RNIContextMenuButtonShadowNode.h | ||
index ac1b293..d9ffbb6 100644 | ||
--- a/ios/RNIContextMenuButton/RNIContextMenuButtonShadowNode.h | ||
+++ b/ios/RNIContextMenuButton/RNIContextMenuButtonShadowNode.h | ||
@@ -8,9 +8,15 @@ | ||
#if __cplusplus | ||
#pragma once | ||
|
||
+#if __has_include(<react_native_ios_utilities/RNIBaseViewShadowNode.h>) | ||
#include <react_native_ios_utilities/RNIBaseViewShadowNode.h> | ||
#include <react_native_ios_utilities/RNIBaseViewProps.h> | ||
#include <react_native_ios_utilities/RNIBaseViewEventEmitter.h> | ||
+#else | ||
+#include <react-native-ios-utilities/RNIBaseViewShadowNode.h> | ||
+#include <react-native-ios-utilities/RNIBaseViewProps.h> | ||
+#include <react-native-ios-utilities/RNIBaseViewEventEmitter.h> | ||
+#endif | ||
|
||
#include <react/renderer/components/RNIContextMenuViewSpec/EventEmitters.h> | ||
#include <react/renderer/components/RNIContextMenuViewSpec/Props.h> | ||
diff --git a/ios/RNIContextMenuView/RNIContextMenuViewComponentDescriptor.h b/ios/RNIContextMenuView/RNIContextMenuViewComponentDescriptor.h | ||
index 2e30bbb..5aa27cd 100644 | ||
--- a/ios/RNIContextMenuView/RNIContextMenuViewComponentDescriptor.h | ||
+++ b/ios/RNIContextMenuView/RNIContextMenuViewComponentDescriptor.h | ||
@@ -8,11 +8,17 @@ | ||
#if __cplusplus | ||
#pragma once | ||
|
||
+ | ||
#include "RNIContextMenuViewShadowNode.h" | ||
#include "RNIBaseViewComponentDescriptor.h" | ||
|
||
+#if __has_include(<react_native_ios_utilities/RNIBaseViewComponentDescriptor.h>) | ||
#include <react_native_ios_utilities/RNIBaseViewComponentDescriptor.h> | ||
#include <react_native_ios_utilities/RNIBaseViewState.h> | ||
+#else | ||
+#include <react-native-ios-utilities/RNIBaseViewComponentDescriptor.h> | ||
+#include <react-native-ios-utilities/RNIBaseViewState.h> | ||
+#endif | ||
|
||
#include <react/renderer/core/ConcreteComponentDescriptor.h> | ||
|
||
diff --git a/ios/RNIContextMenuView/RNIContextMenuViewShadowNode.h b/ios/RNIContextMenuView/RNIContextMenuViewShadowNode.h | ||
index a72e1fc..d0a0106 100644 | ||
--- a/ios/RNIContextMenuView/RNIContextMenuViewShadowNode.h | ||
+++ b/ios/RNIContextMenuView/RNIContextMenuViewShadowNode.h | ||
@@ -8,9 +8,15 @@ | ||
#if __cplusplus | ||
#pragma once | ||
|
||
+#if __has_include(<react_native_ios_utilities/RNIBaseViewShadowNode.h>) | ||
#include <react_native_ios_utilities/RNIBaseViewShadowNode.h> | ||
#include <react_native_ios_utilities/RNIBaseViewProps.h> | ||
#include <react_native_ios_utilities/RNIBaseViewEventEmitter.h> | ||
+#else | ||
+#include <react-native-ios-utilities/RNIBaseViewShadowNode.h> | ||
+#include <react-native-ios-utilities/RNIBaseViewProps.h> | ||
+#include <react-native-ios-utilities/RNIBaseViewEventEmitter.h> | ||
+#endif | ||
|
||
#include <react/renderer/components/RNIContextMenuViewSpec/EventEmitters.h> | ||
#include <react/renderer/components/RNIContextMenuViewSpec/Props.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#pragma once | ||
|
||
#if __has_include(<react_native_ios_utilities/header>) | ||
#define RNI_INCLUDE_HEADER(header) <react_native_ios_utilities/header> | ||
#else | ||
#define RNI_INCLUDE_HEADER(header) <react-native-ios-utilities/header> | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters