This repository has been archived by the owner on Aug 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessaging-topic-form.html
102 lines (85 loc) · 2.17 KB
/
messaging-topic-form.html
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
<link rel="import" href="../polymer/polymer.html">
<!--Paper elements-->
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../paper-input/paper-input.html">
<link rel="import" href="../paper-styles/color.html">
<!-- Firebase elements -->
<link rel="import" href="../polymerfire/firebase-document.html">
<!--
`<messaging-topic-form>`
@demo demo/messaging-topic-form/index.html
-->
<dom-module id="messaging-topic-form">
<template>
<style>
:host {
display: block;
}
paper-button.green {
background-color: var(--paper-green-500);
color: white;
}
</style>
<firebase-document id="nofiticationDocument"
data="[[notificationData]]"></firebase-document>
<paper-input
required
disabled
label="Topic"
value="{{topic}}"></paper-input>
<paper-input
required
label="Title"
value="{{title}}"></paper-input>
<paper-input
required
label="Body"
value="{{body}}"></paper-input>
<paper-input
label="Click action"
placeholder="https://google.com"
value="{{click_action}}"></paper-input>
<paper-button class="green"
raised
on-tap="sendNotification">Send</paper-button>
</template>
<script>
Polymer({
is: 'messaging-topic-form',
properties: {
topic: {
type: String,
value: ''
},
title: {
type: String,
value: null
},
body: {
type: String,
value: null
},
click_action: {
type: String,
value: null
},
notificationData: {
type: Object
}
},
sendNotification: function() {
this.set('notificationData', {
topic: this.topic,
notification: {
title: this.title,
body: this.body,
click_action: this.click_action
}
});
this.$.nofiticationDocument.save('/notifications').then(function() {
this.$.nofiticationDocument.reset();
}.bind(this));
}
});
</script>
</dom-module>