# Notes: # # - All file paths should be relative to the React repo, rather than the Pods dir, or node_modules # # Are you using :path based Pods? dev_pods_react = !File.directory?('Pods/React/React') # Check for whether same_repo_node_modules = File.directory?('node_modules/react-native') previous_repo_node_modules = File.directory?('../node_modules/react-native') # Find out where the files could be rooted $root = 'Pods/React' if dev_pods_react $root = 'node_modules/react-native' if same_repo_node_modules $root = '../node_modules/react-native' if previous_repo_node_modules end # TODO: move to be both file in pods and file in node_mods? def edit_pod_file(path, old_code, new_code) file = File.join($root, path) code = File.read(file) if code.include?(old_code) FileUtils.chmod('+w', file) File.write(file, code.sub(old_code, new_code)) end end def fix_cplusplus_header_compiler_error filepath = File.join($root, 'React/Base/Surface/SurfaceHostingView/RCTSurfaceSizeMeasureMode.h') FileUtils.chmod('+w', filepath) contents = [] file = File.open(filepath, 'r') file.each_line do |line| contents << line end file.close if contents[32].include? '&' contents.insert(26, '#ifdef __cplusplus') contents[36] = '#endif' file = File.open(filepath, 'w') do |f| f.puts(contents) end end end def fix_unused_yoga_headers filepath = 'Pods/Target Support Files/yoga/yoga-umbrella.h' # This only exists when using CocoaPods + Frameworks return unless File.exists?(filepath) contents = [] file = File.open(filepath, 'r') file.each_line do |line| contents << line end file.close if contents[12].include? 'Utils.h' contents.delete_at(15) # #import "YGNode.h" contents.delete_at(15) # #import "YGNodePrint.h" contents.delete_at(15) # #import "Yoga-internal.h" contents.delete_at(12) # #import "Utils.h" file = File.open(filepath, 'w') do |f| f.puts(contents) end end end fix_unused_yoga_headers fix_cplusplus_header_compiler_error # https://github.com/facebook/react-native/pull/14664 animation_view_file = 'Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h' animation_view_old_code = 'import ' animation_view_new_code = 'import "RCTValueAnimatedNode.h"' edit_pod_file animation_view_file, animation_view_old_code, animation_view_new_code # https://github.com/facebook/react-native/issues/13198 # Only needed when you have the DevSupport subspec has_dev_support = File.exist?(File.join($root, 'Libraries/WebSocket/RCTReconnectingWebSocket.m')) if has_dev_support # Move Fishhook to be based on RN's imports websocket = 'Libraries/WebSocket/RCTReconnectingWebSocket.m' websocket_old_code = 'import ' websocket_new_code = 'import ' edit_pod_file websocket, websocket_old_code, websocket_new_code else # There's a link in the DevSettings to dev-only import filepath = "#{$root}/React/Modules/RCTDevSettings.mm" contents = [] file = File.open(filepath, 'r') found = false file.each_line do |line| contents << line end file.close comment_start = '#if ENABLE_PACKAGER_CONNECTION' comment_end = '#endif' if contents[22].rstrip != comment_start contents.insert(22, comment_start) contents.insert(24, comment_end) contents.insert(207, comment_start) contents.insert(231, comment_end) end file = File.open(filepath, 'w') do |f| f.puts(contents) end end