react-native-test-app
Version:
react-native-test-app provides a test app for all supported platforms as a package
87 lines (79 loc) • 2.67 kB
JavaScript
// @ts-check
const { withMod } = require("@expo/config-plugins");
/**
* @import {
* ExportedConfig,
* ExportedConfigWithProps,
* Mod,
* ModConfig,
* } from "@expo/config-plugins";
* @typedef {ExportedConfigWithProps & { macos?: { infoPlist?: Record<string, unknown> }}} ExportedConfigWithPropsMac
*/
const macosPlatform = /** @type {keyof ModConfig} */ ("macos");
/**
* Provides the `ReactNativeHost` file for modification.
* @param {ExportedConfig} config Exported config
* @param {Mod} action Method to run on the mod when the config is compiled
* @returns {ExportedConfig} Modified config
*/
function withReactNativeHost(config, action) {
return withMod(config, {
platform: macosPlatform,
mod: "reactNativeHost",
action,
});
}
/**
* Provides the `AppDelegate` file for modification.
* @see {@link https://github.com/expo/expo/blob/sdk-51/packages/%40expo/config-plugins/src/plugins/ios-plugins.ts#L101}
* @param {ExportedConfig} config Exported config
* @param {Mod} action Method to run on the mod when the config is compiled
* @returns {ExportedConfig} Modified config
*/
function withAppDelegate(config, action) {
return withMod(config, {
platform: macosPlatform,
mod: "appDelegate",
action,
});
}
/**
* Provides the `Info.plist` file for modification.
* @see {@link https://github.com/expo/expo/blob/sdk-51/packages/%40expo/config-plugins/src/plugins/ios-plugins.ts#L116}
* @param {ExportedConfig} config Exported config
* @param {Mod} action Method to run on the mod when the config is compiled
* @returns {ExportedConfig} Modified config
*/
function withInfoPlist(config, action) {
return withMod(config, {
platform: macosPlatform,
mod: "infoPlist",
async action(cfg) {
/** @type {ExportedConfigWithPropsMac} */
const config = await action(cfg);
if (!config.macos) {
config.macos = {};
}
config.macos.infoPlist = config.modResults;
return config;
},
});
}
/**
* Provides the main `.xcodeproj` for modification.
* @see {@link https://github.com/expo/expo/blob/sdk-51/packages/%40expo/config-plugins/src/plugins/ios-plugins.ts#L173}
* @param {ExportedConfig} config Exported config
* @param {Mod} action Method to run on the mod when the config is compiled
* @returns {ExportedConfig} Modified config
*/
function withXcodeProject(config, action) {
return withMod(config, {
platform: macosPlatform,
mod: "xcodeproj",
action,
});
}
exports.withAppDelegate = withAppDelegate;
exports.withInfoPlist = withInfoPlist;
exports.withXcodeProject = withXcodeProject;
exports.withReactNativeHost = withReactNativeHost;