"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MATCH_INIT = void 0; exports.addGoogleMapsAppDelegateImport = addGoogleMapsAppDelegateImport; exports.addGoogleMapsAppDelegateInit = addGoogleMapsAppDelegateInit; exports.addMapsCocoaPods = addMapsCocoaPods; exports.getGoogleMapsApiKey = getGoogleMapsApiKey; exports.removeGoogleMapsAppDelegateImport = removeGoogleMapsAppDelegateImport; exports.removeGoogleMapsAppDelegateInit = removeGoogleMapsAppDelegateInit; exports.removeMapsCocoaPods = removeMapsCocoaPods; exports.setGoogleMapsApiKey = setGoogleMapsApiKey; exports.withMaps = void 0; function _fs() { const data = _interopRequireDefault(require("fs")); _fs = function () { return data; }; return data; } function _path() { const data = _interopRequireDefault(require("path")); _path = function () { return data; }; return data; } function _resolveFrom() { const data = _interopRequireDefault(require("resolve-from")); _resolveFrom = function () { return data; }; return data; } function _iosPlugins() { const data = require("../plugins/ios-plugins"); _iosPlugins = function () { return data; }; return data; } function _withDangerousMod() { const data = require("../plugins/withDangerousMod"); _withDangerousMod = function () { return data; }; return data; } function _generateCode() { const data = require("../utils/generateCode"); _generateCode = function () { return data; }; return data; } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } const debug = require('debug')('expo:config-plugins:ios:maps'); // Match against `UMModuleRegistryAdapter` (unimodules), and React Native without unimodules (Expo Modules), and SDK +44 React AppDelegate subscriber. const MATCH_INIT = /(?:(self\.|_)(\w+)\s?=\s?\[\[UMModuleRegistryAdapter alloc\])|(?:RCTBridge\s?\*\s?(\w+)\s?=\s?\[\[RCTBridge alloc\])|(\[self\.reactDelegate createBridgeWithDelegate:self launchOptions:launchOptions\])/g; exports.MATCH_INIT = MATCH_INIT; const withGoogleMapsKey = (0, _iosPlugins().createInfoPlistPlugin)(setGoogleMapsApiKey, 'withGoogleMapsKey'); const withMaps = config => { config = withGoogleMapsKey(config); const apiKey = getGoogleMapsApiKey(config); // Technically adds react-native-maps (Apple maps) and google maps. debug('Google Maps API Key:', apiKey); config = withMapsCocoaPods(config, { useGoogleMaps: !!apiKey }); // Adds/Removes AppDelegate setup for Google Maps API on iOS config = withGoogleMapsAppDelegate(config, { apiKey }); return config; }; exports.withMaps = withMaps; function getGoogleMapsApiKey(config) { var _config$ios$config$go, _config$ios, _config$ios$config; return (_config$ios$config$go = (_config$ios = config.ios) === null || _config$ios === void 0 ? void 0 : (_config$ios$config = _config$ios.config) === null || _config$ios$config === void 0 ? void 0 : _config$ios$config.googleMapsApiKey) !== null && _config$ios$config$go !== void 0 ? _config$ios$config$go : null; } function setGoogleMapsApiKey(config, { GMSApiKey, ...infoPlist }) { const apiKey = getGoogleMapsApiKey(config); if (apiKey === null) { return infoPlist; } return { ...infoPlist, GMSApiKey: apiKey }; } function addGoogleMapsAppDelegateImport(src) { const newSrc = []; newSrc.push('#if __has_include()', '#import ', '#endif'); return (0, _generateCode().mergeContents)({ tag: 'react-native-maps-import', src, newSrc: newSrc.join('\n'), anchor: /#import "AppDelegate\.h"/, offset: 1, comment: '//' }); } function removeGoogleMapsAppDelegateImport(src) { return (0, _generateCode().removeContents)({ tag: 'react-native-maps-import', src }); } function addGoogleMapsAppDelegateInit(src, apiKey) { const newSrc = []; newSrc.push('#if __has_include()', ` [GMSServices provideAPIKey:@"${apiKey}"];`, '#endif'); return (0, _generateCode().mergeContents)({ tag: 'react-native-maps-init', src, newSrc: newSrc.join('\n'), anchor: MATCH_INIT, offset: 0, comment: '//' }); } function removeGoogleMapsAppDelegateInit(src) { return (0, _generateCode().removeContents)({ tag: 'react-native-maps-init', src }); } /** * @param src The contents of the Podfile. * @returns Podfile with Google Maps added. */ function addMapsCocoaPods(src) { return (0, _generateCode().mergeContents)({ tag: 'react-native-maps', src, newSrc: ` pod 'react-native-google-maps', path: File.dirname(\`node --print "require.resolve('react-native-maps/package.json')"\`)`, anchor: /use_native_modules/, offset: 0, comment: '#' }); } function removeMapsCocoaPods(src) { return (0, _generateCode().removeContents)({ tag: 'react-native-maps', src }); } function isReactNativeMapsInstalled(projectRoot) { const resolved = _resolveFrom().default.silent(projectRoot, 'react-native-maps/package.json'); return resolved ? _path().default.dirname(resolved) : null; } function isReactNativeMapsAutolinked(config) { // Only add the native code changes if we know that the package is going to be linked natively. // This is specifically for monorepo support where one app might have react-native-maps (adding it to the node_modules) // but another app will not have it installed in the package.json, causing it to not be linked natively. // This workaround only exists because react-native-maps doesn't have a config plugin vendored in the package. // TODO: `react-native-maps` doesn't use Expo autolinking so we cannot safely disable the module. return true; // return ( // !config._internal?.autolinkedModules || // config._internal.autolinkedModules.includes('react-native-maps') // ); } const withMapsCocoaPods = (config, { useGoogleMaps }) => { return (0, _withDangerousMod().withDangerousMod)(config, ['ios', async config => { const filePath = _path().default.join(config.modRequest.platformProjectRoot, 'Podfile'); const contents = await _fs().default.promises.readFile(filePath, 'utf-8'); let results; // Only add the block if react-native-maps is installed in the project (best effort). // Generally prebuild runs after a yarn install so this should always work as expected. const googleMapsPath = isReactNativeMapsInstalled(config.modRequest.projectRoot); const isLinked = isReactNativeMapsAutolinked(config); debug('Is Expo Autolinked:', isLinked); debug('react-native-maps path:', googleMapsPath); if (isLinked && googleMapsPath && useGoogleMaps) { try { results = addMapsCocoaPods(contents); } catch (error) { if (error.code === 'ERR_NO_MATCH') { throw new Error(`Cannot add react-native-maps to the project's ios/Podfile because it's malformed. Please report this with a copy of your project Podfile.`); } throw error; } } else { // If the package is no longer installed, then remove the block. results = removeMapsCocoaPods(contents); } if (results.didMerge || results.didClear) { await _fs().default.promises.writeFile(filePath, results.contents); } return config; }]); }; const withGoogleMapsAppDelegate = (config, { apiKey }) => { return (0, _iosPlugins().withAppDelegate)(config, config => { if (['objc', 'objcpp'].includes(config.modResults.language)) { if (apiKey && isReactNativeMapsAutolinked(config) && isReactNativeMapsInstalled(config.modRequest.projectRoot)) { try { config.modResults.contents = addGoogleMapsAppDelegateImport(config.modResults.contents).contents; config.modResults.contents = addGoogleMapsAppDelegateInit(config.modResults.contents, apiKey).contents; } catch (error) { if (error.code === 'ERR_NO_MATCH') { throw new Error(`Cannot add Google Maps to the project's AppDelegate because it's malformed. Please report this with a copy of your project AppDelegate.`); } throw error; } } else { config.modResults.contents = removeGoogleMapsAppDelegateImport(config.modResults.contents).contents; config.modResults.contents = removeGoogleMapsAppDelegateInit(config.modResults.contents).contents; } } else { throw new Error(`Cannot setup Google Maps because the project AppDelegate is not a supported language: ${config.modResults.language}`); } return config; }); }; //# sourceMappingURL=Maps.js.map