forked from react-native-share/react-native-share
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
255 lines (239 loc) · 6.86 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
// @flow
import * as React from 'react';
import {
View,
StyleSheet,
TouchableOpacity,
BackHandler,
NativeModules,
Platform,
ActionSheetIOS,
PermissionsAndroid,
} from 'react-native';
import Overlay from './components/Overlay';
import Sheet from './components/Sheet';
import Button from './components/Button';
const styles = StyleSheet.create({
actionSheetContainer: {
flex: 1,
paddingTop: 10,
paddingBottom: 0,
justifyContent: 'flex-end',
backgroundColor: 'rgba(0, 0, 0, 0.5)',
},
buttonContainer: {
overflow: 'hidden',
backgroundColor: 'white',
paddingBottom: 5,
paddingTop: 5,
},
});
type Props = {
visible: boolean,
onCancel: () => void,
children: React.Node,
};
class ShareSheet extends React.Component<Props> {
backButtonHandler: () => boolean;
componentDidMount() {
this.backButtonHandler = this.backButtonHandler.bind(this);
BackHandler.addEventListener('backPress', this.backButtonHandler);
}
componentWillUnmount() {
BackHandler.removeEventListener('backPress', this.backButtonHandler);
}
backButtonHandler() {
if (this.props.visible) {
this.props.onCancel();
return true;
}
return false;
}
render() {
return (
<Overlay visible={this.props.visible} {...this.props}>
<View style={styles.actionSheetContainer}>
<TouchableOpacity style={{ flex: 1 }} onPress={this.props.onCancel} />
<Sheet visible={this.props.visible}>
<View style={styles.buttonContainer}>{this.props.children}</View>
</Sheet>
</View>
</Overlay>
);
}
}
type Options = {
url: string,
urls?: Array<string>,
type?: string,
message?: string,
title?: string,
subject?: string,
excludedActivityTypes?: string,
failOnCancel?: boolean,
showAppsToView?: boolean,
};
type MultipleOptions = {
url?: string,
urls: Array<string>,
type?: string,
message?: string,
title?: string,
subject?: string,
excludedActivityTypes?: string,
failOnCancel?: boolean,
showAppsToView?: boolean,
};
type OpenReturn = { app?: string, dismissedAction?: boolean };
type ShareSingleReturn = { message: string };
const requireAndAskPermissions = async (options: Options | MultipleOptions): Promise<any> => {
if ((options.url || options.urls) && Platform.OS === 'android') {
const urls: Array<string> = options.urls || [options.url];
try {
const resultArr = await Promise.all(
urls.map(
url =>
new Promise((res, rej) => {
NativeModules.RNShare.isBase64File(
url,
e => {
rej(e);
},
isBase64 => {
res(isBase64);
},
);
}),
),
);
const requirePermission = resultArr.includes(true);
if (!requirePermission) {
return Promise.resolve(true);
}
const hasPermission = await PermissionsAndroid.check(
PermissionsAndroid.PERMISSIONS.WRITE_EXTERNAL_STORAGE,
);
if (hasPermission) {
return Promise.resolve(true);
}
const result = await PermissionsAndroid.request(
PermissionsAndroid.PERMISSIONS.WRITE_EXTERNAL_STORAGE,
);
if (result === PermissionsAndroid.RESULTS.GRANTED) {
return Promise.resolve();
}
throw new Error('Write Permission not available');
} catch (e) {
return Promise.reject(e);
}
}
return Promise.resolve(true);
};
class RNShare {
static Button: any;
static ShareSheet: React.createElement;
static Overlay: any;
static Sheet: any;
static Social = {
FACEBOOK: NativeModules.RNShare.FACEBOOK || 'facebook',
PAGESMANAGER: NativeModules.RNShare.PAGESMANAGER || 'pagesmanager',
TWITTER: NativeModules.RNShare.TWITTER || 'twitter',
WHATSAPP: NativeModules.RNShare.WHATSAPP || 'whatsapp',
INSTAGRAM: NativeModules.RNShare.INSTAGRAM || 'instagram',
GOOGLEPLUS: NativeModules.RNShare.GOOGLEPLUS || 'googleplus',
EMAIL: NativeModules.RNShare.EMAIL || 'email',
};
static open(options: Options | MultipleOptions): Promise<OpenReturn> {
return new Promise((resolve, reject) => {
requireAndAskPermissions(options)
.then(() => {
if (Platform.OS === 'ios') {
if (options.urls) {
// Handle for multiple file share
NativeModules.RNShare.open(
options,
error => {
return reject({ error: error });
},
(success, activityType) => {
if (success) {
return resolve({
app: activityType,
});
} else if (options.failOnCancel === false) {
return resolve({
dismissedAction: true,
});
} else {
reject({ error: 'User did not share' });
}
},
);
} else {
// Handle for single file share
ActionSheetIOS.showShareActionSheetWithOptions(
options,
error => {
return reject({ error: error });
},
(success, activityType) => {
if (success) {
return resolve({
app: activityType,
});
} else if (options.failOnCancel === false) {
return resolve({
dismissedAction: true,
});
} else {
reject({ error: 'User did not share' });
}
},
);
}
} else {
NativeModules.RNShare.open(
options,
e => {
return reject({ error: e });
},
e => {
resolve({
message: e,
});
},
);
}
})
.catch(e => reject(e));
});
}
static shareSingle(options: Options): Promise<ShareSingleReturn> {
if (Platform.OS === 'ios' || Platform.OS === 'android') {
return new Promise((resolve, reject) => {
requireAndAskPermissions(options)
.then(() => {
NativeModules.RNShare.shareSingle(
options,
e => {
return reject({ error: e });
},
e => {
return resolve({
message: e,
});
},
);
})
.catch(e => reject(e));
});
} else {
throw new Error('Not implemented');
}
}
}
module.exports = RNShare;
module.exports.Overlay = Overlay;
module.exports.Sheet = Sheet;
module.exports.Button = Button;
module.exports.ShareSheet = ShareSheet;