forked from Expensify/App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
react-native-permissions.js
84 lines (73 loc) · 2.09 KB
/
react-native-permissions.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
const {PERMISSIONS} = require('react-native-permissions/dist/commonjs/permissions');
const {RESULTS} = require('react-native-permissions/dist/commonjs/results');
const _ = require('underscore');
export {PERMISSIONS, RESULTS};
const openLimitedPhotoLibraryPicker = jest.fn(() => {});
const openSettings = jest.fn(() => {});
const check = jest.fn(() => RESULTS.GRANTED);
const request = jest.fn(() => RESULTS.GRANTED);
const checkLocationAccuracy = jest.fn(() => 'full');
const requestLocationAccuracy = jest.fn(() => 'full');
const notificationOptions = ['alert', 'badge', 'sound', 'carPlay', 'criticalAlert', 'provisional'];
const notificationSettings = {
alert: true,
badge: true,
sound: true,
carPlay: true,
criticalAlert: true,
provisional: true,
lockScreen: true,
notificationCenter: true,
};
const checkNotifications = jest.fn(() => ({
status: RESULTS.GRANTED,
settings: notificationSettings,
}));
const requestNotifications = jest.fn((options) => ({
status: RESULTS.GRANTED,
settings: _.chain(options)
.filter((option) => _.contains(notificationOptions, option))
.reduce((acc, option) => ({...acc, [option]: true}), {
lockScreen: true,
notificationCenter: true,
})
.value(),
}));
const checkMultiple = jest.fn((permissions) =>
_.reduce(permissions, (acc, permission) => ({
...acc,
[permission]: RESULTS.GRANTED,
})),
);
const requestMultiple = jest.fn((permissions) =>
_.reduce(permissions, (acc, permission) => ({
...acc,
[permission]: RESULTS.GRANTED,
})),
);
export default {
PERMISSIONS,
RESULTS,
check,
checkLocationAccuracy,
checkMultiple,
checkNotifications,
openLimitedPhotoLibraryPicker,
openSettings,
request,
requestLocationAccuracy,
requestMultiple,
requestNotifications,
};
export {
openLimitedPhotoLibraryPicker,
openSettings,
check,
request,
checkLocationAccuracy,
requestLocationAccuracy,
checkNotifications,
requestNotifications,
checkMultiple,
requestMultiple,
};