import { FileTransforms } from '../../../Transforms.types'; const objcFilesPattern = '*.{h,m,mm}'; const swiftFilesPattern = '*.swift'; export function expoModulesTransforms(prefix: string): FileTransforms { return { path: [ // Here we prefix names of Objective-C/C++ files. // There is no need to do the same for Swift files // as we don't change the symbols inside. In Swift we don't use `EX` nor `UM` // for symbols as the framework name takes part of the symbol signature, // so there is no way we'll get duplicate symbols compilation errors. // Files starting with `Expo` needs to be prefixed though, // for umbrella headers (e.g. `ExpoModulesCore.h`). { find: /\b(Expo|EX|UM|EAS)([^/]*\.)(h|m|mm|cpp)\b/, replaceWith: `${prefix}$1$2$3`, }, { // versioning category files, e.g. RCTComponentData+Privates.h find: /\b(RCT)([^/]*)\+([^/]*\.)(h|m|mm|cpp)\b/, replaceWith: `${prefix}$1$2+$3$4`, }, ], content: [ { find: /\bReact(?!Common)/g, replaceWith: `${prefix}React`, }, { // Prefix symbols and imports. find: /\b(EX|UM|RCT)/g, replaceWith: `${prefix}$1`, }, // Only Swift { paths: swiftFilesPattern, find: /\bimport (Expo|EX|EAS)(\w+)/g, replaceWith: `import ${prefix}$1$2`, }, { paths: swiftFilesPattern, find: /@objc\((Expo|EX|EAS)\)/g, replaceWith: `@objc(${prefix}$1)`, }, { paths: swiftFilesPattern, find: /r(eactTag)/gi, replaceWith: (_, p1) => `${prefix.toLowerCase()}R${p1}`, }, // Only Objective-C { // Prefix `Expo*` frameworks in imports. paths: objcFilesPattern, find: /#import <(Expo|EAS)(.*?)\//g, replaceWith: `#import <${prefix}$1$2/`, }, { paths: objcFilesPattern, find: /#import <(.*?)\/(Expo|EAS)(.*?)\.h>/g, replaceWith: `#import <$1/${prefix}$2$3.h>`, }, { // Rename Swift compatibility headers from frameworks starting with `Expo`. paths: objcFilesPattern, find: /#import "(Expo|EAS)(.+?)-Swift\.h"/g, replaceWith: `#import "${prefix}$1$2-Swift.h"`, }, { // Unprefix imports to unversionable (e.g. expo-gl-cpp) modules. paths: [objcFilesPattern, 'EXGL'], find: new RegExp(`#import <${prefix}(EXGL_CPP)\\b`), replaceWith: '#import <$1', }, { paths: objcFilesPattern, find: /@import (Expo|EX|EAS)(\w+)/g, replaceWith: `@import ${prefix}$1$2`, }, { // Prefixes Objective-C name of the Swift modules provider. paths: ['EXNativeModulesProxy.mm'], find: 'NSClassFromString(@"ExpoModulesProvider")', replaceWith: `NSClassFromString(@"${prefix}ExpoModulesProvider")`, }, { // Prefixes Objective-C name of the Swift modules provider. paths: ['EXNativeModulesProxy.mm'], find: '[NSString stringWithFormat:@"%@.ExpoModulesProvider"', replaceWith: `[NSString stringWithFormat:@"%@.${prefix}ExpoModulesProvider"`, }, { // Prefixes imports from other React Native libs paths: objcFilesPattern, find: new RegExp(`#import <(ReactCommon|jsi)/(${prefix})?`, 'g'), replaceWith: `#import <${prefix}$1/${prefix}`, }, { // Prefixes versionable namespaces paths: objcFilesPattern, find: /\bnamespace (expo|facebook)\b/g, replaceWith: `namespace ${prefix}$1`, }, { // Prefixes usages of versionable namespaces paths: objcFilesPattern, find: /\b(expo|facebook)::/g, replaceWith: `${prefix}$1::`, }, // Prefixes versionable namespaces (react namespace is already prefixed with uppercased "R") { paths: objcFilesPattern, find: /\busing namespace react;/g, replaceWith: `using namespace ${prefix}React;`, }, { paths: objcFilesPattern, find: /::react(::|;)/g, replaceWith: `::${prefix}React$1`, }, { paths: objcFilesPattern, find: /\bnamespace react(\s+[^=])/g, replaceWith: `namespace ${prefix}React$1`, }, // Prefix umbrella header imports { paths: '*.h', // Use negative look ahead regexp for `prefix` to prevent duplicated versioning find: new RegExp(`\b(!?${prefix})(\w+-umbrella\.h)\b`, 'g'), replaceWith: `${prefix}$1`, }, ], }; }