-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
153 lines (137 loc) · 4.19 KB
/
App.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
import React from 'react';
import { Alert, Button, Linking, Text, View } from 'react-native';
import { PushNotificationAndroid } from './PushNotification';
export default class App extends React.Component {
/**
* On component init
*/
async componentDidMount() {
const initialUrl = await Linking.getInitialURL();
console.log('initial URL: ', initialUrl);
Linking.addEventListener('url', this.handleDeepLink);
}
/**
* On component remove
*/
componentWillUnmount() {
Linking.removeEventListener('url', this.handleDeepLink);
};
/**
* On deep link appear
*/
handleDeepLink = (event) => {
console.log('on linking URL');
console.log(event);
}
/**
* Creates a new notification channel
*/
onCreateChannelPress = () => {
try {
const channelId = "my_channel_id";
const channelName = "my_channel_name";
const channelDesc = "my_channel_desc";
const channelImportance = PushNotificationAndroid.CHANNEL_IMPORTANCE_DEFAULT;
PushNotificationAndroid.createChannel(channelId, channelName, channelDesc, channelImportance);
Alert.alert("Success", `Channel ${channelName} created`);
} catch (err) {
Alert.alert("Error", err);
}
};
/**
* Show device FCM token
*/
onGetDeviceTokenPress = async () => {
try {
const token = await PushNotificationAndroid.getDeviceToken();
Alert.alert("Token", token);
console.log(token);
} catch(err) {
Alert.alert("Error", err);
}
};
/**
* Show standard notification
*/
onShowCommonNotificationPress = () => {
try {
const notificationId = 1;
const template = PushNotificationAndroid.TEMPLATE_COMMON;
const channelId = 'my_channel_id';
const data = {
title: "my title",
message: "my message"
};
const priority = PushNotificationAndroid.PRIORITY_DEFAULT;
PushNotificationAndroid.show(notificationId, template, channelId, data, priority);
} catch(err) {
Alert.alert("Error", err);
}
}
/**
* Show event notification
*/
onShowEventNotificationPress = () => {
try {
const notificationId = 1;
const template = PushNotificationAndroid.TEMPLATE_EVENT;
const channelId = 'my_channel_id';
const data = {
title: "title",
message: "my message",
media: "http://red-msk.ru/wp-content/uploads/2019/02/canva-photo-editor-22.png",
url: null
};
const priority = PushNotificationAndroid.PRIORITY_DEFAULT;
PushNotificationAndroid.show(notificationId, template, channelId, data, priority);
} catch(err) {
Alert.alert("Error", err);
}
}
/**
* Show event notification with url
*/
onShowEventNotificationWithUrlPress = () => {
try {
const notificationId = 1;
const template = PushNotificationAndroid.TEMPLATE_EVENT;
const channelId = 'my_channel_id';
const data = {
title: "title",
message: "my message",
media: "http://red-msk.ru/wp-content/uploads/2019/02/canva-photo-editor-22.png",
url: "https://google.com"
};
const priority = PushNotificationAndroid.PRIORITY_DEFAULT;
PushNotificationAndroid.show(notificationId, template, channelId, data, priority);
} catch(err) {
Alert.alert("Error", err);
}
}
/**
* Renders JSX template
* @return JSX template
*/
render() {
return (
<View>
<Text>Examples</Text>
<View style={{marginTop: 10}} >
<Button title="Create channel" onPress={this.onCreateChannelPress} />
</View>
<View style={{marginTop: 10}} >
<Button title="Get device token" onPress={this.onGetDeviceTokenPress} />
</View>
<View style={{marginTop: 10}} >
<Button title="Show common notification" onPress={this.onShowCommonNotificationPress} />
</View>
<View style={{marginTop: 10}} >
<Button title="Show event notification" onPress={this.onShowEventNotificationPress} />
</View>
<View style={{marginTop: 10}} >
<Button title="Show event notification with url" onPress={this.onShowEventNotificationWithUrlPress} />
</View>
</View>
);
}
}