|
1 | | -import { |
2 | | - withAndroidManifest, |
3 | | - createRunOncePlugin, |
4 | | - ExportedConfigWithProps, |
5 | | - ExportedConfig, |
6 | | -} from '@expo/config-plugins'; |
7 | | - |
8 | | -// eslint-disable-next-line import/no-commonjs, @typescript-eslint/no-var-requires |
9 | | -const pkg = require('../../package.json'); |
| 1 | +import { ExportedConfig } from '@expo/config-plugins'; |
| 2 | +import { withBuildProperties } from 'expo-build-properties'; |
10 | 3 |
|
11 | 4 | /** |
12 | | - * @type {import('./types').ManifestQueries} |
13 | | - * what we are trying to add: |
14 | | - * <queries> |
15 | | - <package android:name="com.facebook.katana"/> |
16 | | - <package android:name="com.instagram.android"/> |
17 | | - <package android:name="com.twitter.android"/> |
18 | | - <package android:name="com.zhiliaoapp.musically"/> |
19 | | - <intent></intent> |
20 | | - <action android:name="android.intent.action.VIEW"/> |
21 | | - <category android:name="android.intent.category.BROWSABLE"/> |
22 | | - <data android:scheme="https"/> |
23 | | - </intent> |
24 | | - </queries> |
| 5 | + * Handles for edge case when LSApplicationQueriesSchemes is an object or undefined. |
25 | 6 | */ |
26 | | - |
27 | | -/** |
28 | | - * @param {import('@expo/config-plugins').ExportedConfig} config |
29 | | - */ |
30 | | -const withAndroidManifestService = (config: ExportedConfig, props: WithSocialShareProps) => { |
31 | | - return withAndroidManifest(config, (config: ExportedConfigWithProps) => { |
32 | | - config.modResults.manifest = { |
33 | | - ...config.modResults.manifest, |
34 | | - queries: { |
35 | | - package: props?.android?.map((social) => ({ |
36 | | - $: { |
37 | | - 'android:name': social, |
38 | | - }, |
39 | | - })), |
40 | | - intent: [ |
41 | | - { |
42 | | - action: { |
43 | | - $: { |
44 | | - 'android:name': 'android.intent.action.VIEW', |
45 | | - }, |
46 | | - }, |
47 | | - category: { |
48 | | - $: { |
49 | | - 'android:name': 'android.intent.category.BROWSABLE', |
50 | | - }, |
51 | | - }, |
52 | | - data: { |
53 | | - $: { |
54 | | - 'android:scheme': 'https', |
55 | | - }, |
56 | | - }, |
57 | | - }, |
58 | | - ], |
59 | | - }, |
60 | | - }; |
61 | | - |
62 | | - return config; |
63 | | - }); |
64 | | -}; |
65 | | - |
66 | | -/** |
67 | | -* Handles for edge case when LSApplicationQueriesSchemes is an object or undefined. |
68 | | -*/ |
69 | | -const getIOSQuerySchemes = (config: ExportedConfig): Array<string> => { |
| 7 | +const getIOSQuerySchemes = (config: ExportedConfig): string[] => { |
70 | 8 | return Array.isArray(config.ios?.infoPlist?.LSApplicationQueriesSchemes) |
71 | 9 | ? config.ios?.infoPlist?.LSApplicationQueriesSchemes ?? [] |
72 | 10 | : []; |
73 | | -} |
| 11 | +}; |
74 | 12 |
|
75 | | -const withInfoPlist = (config: ExportedConfig, props: WithSocialShareProps) => { |
76 | | - return { |
77 | | - ...config, |
78 | | - ios: { |
79 | | - ...config.ios, |
80 | | - infoPlist: { |
81 | | - ...config.ios?.infoPlist, |
82 | | - LSApplicationQueriesSchemes: [...getIOSQuerySchemes(config), ...props?.ios ?? []] |
| 13 | +export default ( |
| 14 | + config: ExportedConfig, |
| 15 | + props: { |
| 16 | + enableBase64ShareAndroid?: boolean; |
| 17 | + android?: string[]; |
| 18 | + ios?: string[]; |
| 19 | + }, |
| 20 | +) => { |
| 21 | + return withBuildProperties( |
| 22 | + { |
| 23 | + ...config, |
| 24 | + android: { |
| 25 | + ...config.android, |
| 26 | + ...(props.enableBase64ShareAndroid |
| 27 | + ? { |
| 28 | + permissions: [ |
| 29 | + ...new Set([ |
| 30 | + ...(config.android?.permissions ?? []), |
| 31 | + 'android.permission.WRITE_EXTERNAL_STORAGE', |
| 32 | + ]), |
| 33 | + ], |
| 34 | + } |
| 35 | + : {}), |
| 36 | + }, |
| 37 | + ios: { |
| 38 | + ...config.ios, |
| 39 | + infoPlist: { |
| 40 | + ...config.ios?.infoPlist, |
| 41 | + LSApplicationQueriesSchemes: [...getIOSQuerySchemes(config), ...(props?.ios ?? [])], |
| 42 | + }, |
83 | 43 | }, |
84 | 44 | }, |
85 | | - }; |
86 | | -}; |
87 | | - |
88 | | -type WithSocialShareProps = { |
89 | | - ios: string[]; |
90 | | - android: string[]; |
| 45 | + { |
| 46 | + android: { |
| 47 | + manifestQueries: { |
| 48 | + package: props.android ?? [], |
| 49 | + }, |
| 50 | + }, |
| 51 | + }, |
| 52 | + ); |
91 | 53 | }; |
92 | | - |
93 | | -function withSocialShare(config: ExportedConfig, props: WithSocialShareProps) { |
94 | | - config = withAndroidManifestService(config, props); // Android |
95 | | - config = withInfoPlist(config, props); // iOS |
96 | | - return config; |
97 | | -} |
98 | | - |
99 | | -// eslint-disable-next-line import/no-commonjs |
100 | | -module.exports = createRunOncePlugin(withSocialShare, pkg.name, pkg.version); |
0 commit comments