-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.js
73 lines (68 loc) · 1.78 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
const jsonApiHeader = {
"Content-Type": "application/json; charset=UTF-8",
"Authorization": "key=YOUR_KEY",
};
var app = new Vue({
el: '#app',
data: {
alertMsg : "",
fcmUrl : "https://fcm.googleapis.com/fcm/send",
fcmJson :{
<<<<<<< HEAD
to : "/topics/your_topics_to_send",
=======
to : "/topics/your_topic_to_send",
>>>>>>> d113d677eb9b1d3b74765a2ebf702c8168d4ea21
content_available : true,
notification : {
title : "",
body : "" ,
click_action : "FCM_PLUGIN_ACTIVITY",
sound : "default",
priority : "priority",
},
data : {
app_notification : "1",
term : "48",
activity_date : "2018-08-16 15:30:00",
msg_type : "1",
student_id : "1111",
college_code : "edrdemo",
notification_from_firebase : "1",
avatar_img_url : "0",
}
}
},
methods: {
submitAction: function () {
if(!this.fcmJson.notification.title || !this.fcmJson.notification.body || !this.fcmJson.to){
this.alertMsg = '<span class="text-danger">title, body, to can\'t empty</span>'
}else{
this.alertMsg = 'Please wait...'
console.log('submitAction');
this.postToFirebase().then((resualt) => {
console.log(resualt);
this.alertMsg = '';
});
}
},
async postToFirebase() {
console.log('postToFirebase');
const dataParam = this.fcmJson;
try {
const response = await axios({
method: 'post',
url: this.fcmUrl,
headers: jsonApiHeader,
data: dataParam
});
return response;
} catch (error) {
console.error(error);
}
<<<<<<< HEAD
=======
>>>>>>> d113d677eb9b1d3b74765a2ebf702c8168d4ea21
}
}
})