@things-factory/notification 6.1.18 → 6.1.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/{bootstrap.js → bootstrap.ts} +13 -9
- package/client/pages/notification/notification-list-page.ts +267 -0
- package/client/pages/notification-rule/notification-rule-importer.ts +93 -0
- package/client/pages/notification-rule/notification-rule-list-page.ts +395 -0
- package/client/route.ts +10 -0
- package/client/tsconfig.json +13 -0
- package/client/viewparts/notification-badge.ts +58 -0
- package/client/viewparts/notification-item.ts +242 -0
- package/client/viewparts/notification-list.ts +171 -0
- package/client/viewparts/notification-sender.ts +126 -0
- package/client/viewparts/{notification-setting-let.js → notification-setting-let.ts} +48 -52
- package/dist-client/actions/notification-fcm.d.ts +7 -0
- package/dist-client/actions/notification-fcm.js +125 -0
- package/dist-client/actions/notification-fcm.js.map +1 -0
- package/dist-client/bootstrap.d.ts +1 -0
- package/dist-client/bootstrap.js +112 -0
- package/dist-client/bootstrap.js.map +1 -0
- package/dist-client/index.d.ts +5 -0
- package/dist-client/index.js +6 -0
- package/dist-client/index.js.map +1 -0
- package/dist-client/pages/notification/notification-list-page.d.ts +49 -0
- package/dist-client/pages/notification/notification-list-page.js +262 -0
- package/dist-client/pages/notification/notification-list-page.js.map +1 -0
- package/dist-client/pages/notification-rule/notification-rule-importer.d.ts +22 -0
- package/dist-client/pages/notification-rule/notification-rule-importer.js +100 -0
- package/dist-client/pages/notification-rule/notification-rule-importer.js.map +1 -0
- package/dist-client/pages/notification-rule/notification-rule-list-page.d.ts +62 -0
- package/dist-client/pages/notification-rule/notification-rule-list-page.js +380 -0
- package/dist-client/pages/notification-rule/notification-rule-list-page.js.map +1 -0
- package/dist-client/reducers/notification.d.ts +8 -0
- package/dist-client/reducers/notification.js +22 -0
- package/dist-client/reducers/notification.js.map +1 -0
- package/dist-client/route.d.ts +1 -0
- package/dist-client/route.js +11 -0
- package/dist-client/route.js.map +1 -0
- package/dist-client/tsconfig.tsbuildinfo +1 -0
- package/dist-client/viewparts/notification-badge.d.ts +15 -0
- package/dist-client/viewparts/notification-badge.js +61 -0
- package/dist-client/viewparts/notification-badge.js.map +1 -0
- package/dist-client/viewparts/notification-item.d.ts +16 -0
- package/dist-client/viewparts/notification-item.js +249 -0
- package/dist-client/viewparts/notification-item.js.map +1 -0
- package/dist-client/viewparts/notification-list.d.ts +20 -0
- package/dist-client/viewparts/notification-list.js +160 -0
- package/dist-client/viewparts/notification-list.js.map +1 -0
- package/dist-client/viewparts/notification-sender.d.ts +13 -0
- package/dist-client/viewparts/notification-sender.js +122 -0
- package/dist-client/viewparts/notification-sender.js.map +1 -0
- package/dist-client/viewparts/notification-setting-let.d.ts +20 -0
- package/dist-client/viewparts/notification-setting-let.js +193 -0
- package/dist-client/viewparts/notification-setting-let.js.map +1 -0
- package/dist-server/service/index.js +10 -1
- package/dist-server/service/index.js.map +1 -1
- package/dist-server/service/notification/index.js +6 -3
- package/dist-server/service/notification/index.js.map +1 -1
- package/dist-server/service/notification/notification-mutation.js +110 -0
- package/dist-server/service/notification/notification-mutation.js.map +1 -0
- package/dist-server/service/notification/notification-query.js +109 -0
- package/dist-server/service/notification/notification-query.js.map +1 -0
- package/dist-server/service/notification/notification-subscription.js +45 -0
- package/dist-server/service/notification/notification-subscription.js.map +1 -0
- package/dist-server/service/notification/notification-type.js +82 -0
- package/dist-server/service/notification/notification-type.js.map +1 -0
- package/dist-server/service/notification/notification.js +81 -8
- package/dist-server/service/notification/notification.js.map +1 -1
- package/dist-server/service/notification-rule/event-subscriber.js +21 -0
- package/dist-server/service/notification-rule/event-subscriber.js.map +1 -0
- package/dist-server/service/notification-rule/index.js +12 -0
- package/dist-server/service/notification-rule/index.js.map +1 -0
- package/dist-server/service/notification-rule/notification-rule-history.js +146 -0
- package/dist-server/service/notification-rule/notification-rule-history.js.map +1 -0
- package/dist-server/service/notification-rule/notification-rule-mutation.js +170 -0
- package/dist-server/service/notification-rule/notification-rule-mutation.js.map +1 -0
- package/dist-server/service/notification-rule/notification-rule-query.js +97 -0
- package/dist-server/service/notification-rule/notification-rule-query.js.map +1 -0
- package/dist-server/service/notification-rule/notification-rule-type.js +102 -0
- package/dist-server/service/notification-rule/notification-rule-type.js.map +1 -0
- package/dist-server/service/notification-rule/notification-rule.js +146 -0
- package/dist-server/service/notification-rule/notification-rule.js.map +1 -0
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/helps/notification/noti-box.md +160 -0
- package/helps/notification/noti-rule.md +160 -0
- package/helps/notification/notibox.md +160 -0
- package/package.json +15 -12
- package/server/service/index.ts +14 -0
- package/server/service/notification/index.ts +6 -3
- package/server/service/notification/notification-mutation.ts +119 -0
- package/server/service/notification/notification-query.ts +70 -0
- package/server/service/notification/{notification-resolver.ts → notification-subscription.ts} +4 -4
- package/server/service/notification/notification-type.ts +55 -0
- package/server/service/notification/notification.ts +87 -14
- package/server/service/notification-rule/event-subscriber.ts +20 -0
- package/server/service/notification-rule/index.ts +9 -0
- package/server/service/notification-rule/notification-rule-history.ts +130 -0
- package/server/service/notification-rule/notification-rule-mutation.ts +203 -0
- package/server/service/notification-rule/notification-rule-query.ts +62 -0
- package/server/service/notification-rule/notification-rule-type.ts +71 -0
- package/server/service/notification-rule/notification-rule.ts +125 -0
- package/server/tsconfig.json +9 -0
- package/things-factory.config.js +7 -1
- package/client/viewparts/notification-badge.js +0 -63
- package/client/viewparts/notification-item.js +0 -250
- package/client/viewparts/notification-list.js +0 -177
- package/client/viewparts/notification-sender.js +0 -128
- package/tsconfig.json +0 -9
- /package/client/actions/{notification-fcm.js → notification-fcm.ts} +0 -0
- /package/client/{index.js → index.ts} +0 -0
- /package/client/reducers/{notification.js → notification.ts} +0 -0
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
# Notification
|
|
2
|
+
|
|
3
|
+
Paragraphs are separated by a blank line.
|
|
4
|
+
|
|
5
|
+
2nd paragraph. _Italic_, **bold**, and `monospace`. Itemized lists
|
|
6
|
+
look like:
|
|
7
|
+
|
|
8
|
+
- this one
|
|
9
|
+
- that one
|
|
10
|
+
- the other one
|
|
11
|
+
|
|
12
|
+
Note that --- not considering the asterisk --- the actual text
|
|
13
|
+
content starts at 4-columns in.
|
|
14
|
+
|
|
15
|
+
> Block quotes are
|
|
16
|
+
> written like so.
|
|
17
|
+
>
|
|
18
|
+
> They can span multiple paragraphs,
|
|
19
|
+
> if you like.
|
|
20
|
+
|
|
21
|
+
Use 3 dashes for an em-dash. Use 2 dashes for ranges (ex., "it's all
|
|
22
|
+
in chapters 12--14"). Three dots ... will be converted to an ellipsis.
|
|
23
|
+
Unicode is supported. ☺
|
|
24
|
+
|
|
25
|
+
## An h2 header
|
|
26
|
+
|
|
27
|
+
Here's a numbered list:
|
|
28
|
+
|
|
29
|
+
1. first item
|
|
30
|
+
2. second item
|
|
31
|
+
3. third item
|
|
32
|
+
|
|
33
|
+
Note again how the actual text starts at 4 columns in (4 characters
|
|
34
|
+
from the left side). Here's a code sample:
|
|
35
|
+
|
|
36
|
+
# Let me re-iterate ...
|
|
37
|
+
|
|
38
|
+
for i in 1 .. 10 { do-something(i) }
|
|
39
|
+
|
|
40
|
+
As you probably guessed, indented 4 spaces. By the way, instead of
|
|
41
|
+
indenting the block, you can use delimited blocks, if you like:
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
define foobar() {
|
|
45
|
+
print "Welcome to flavor country!";
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
(which makes copying & pasting easier). You can optionally mark the
|
|
50
|
+
delimited block for Pandoc to syntax highlight it:
|
|
51
|
+
|
|
52
|
+
```python
|
|
53
|
+
import time
|
|
54
|
+
# Quick, count to ten!
|
|
55
|
+
for i in range(10):
|
|
56
|
+
# (but not *too* quick)
|
|
57
|
+
time.sleep(0.5)
|
|
58
|
+
print(i)
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
### An h3 header
|
|
62
|
+
|
|
63
|
+
Now a nested list:
|
|
64
|
+
|
|
65
|
+
1. First, get these ingredients:
|
|
66
|
+
|
|
67
|
+
- carrots
|
|
68
|
+
- celery
|
|
69
|
+
- lentils
|
|
70
|
+
|
|
71
|
+
2. Boil some water.
|
|
72
|
+
|
|
73
|
+
3. Dump everything in the pot and follow
|
|
74
|
+
this algorithm:
|
|
75
|
+
|
|
76
|
+
find wooden spoon
|
|
77
|
+
uncover pot
|
|
78
|
+
stir
|
|
79
|
+
cover pot
|
|
80
|
+
balance wooden spoon precariously on pot handle
|
|
81
|
+
wait 10 minutes
|
|
82
|
+
goto first step (or shut off burner when done)
|
|
83
|
+
|
|
84
|
+
Do not bump wooden spoon or it will fall.
|
|
85
|
+
|
|
86
|
+
Notice again how text always lines up on 4-space indents (including
|
|
87
|
+
that last line which continues item 3 above).
|
|
88
|
+
|
|
89
|
+
Here's a link to [a website](http://foo.bar), to a [local
|
|
90
|
+
doc](local-doc.html), and to a [section heading in the current
|
|
91
|
+
doc](#an-h2-header). Here's a footnote [^1].
|
|
92
|
+
|
|
93
|
+
[^1]: Some footnote text.
|
|
94
|
+
|
|
95
|
+
Tables can look like this:
|
|
96
|
+
|
|
97
|
+
Name Size Material Color
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
All Business 9 leather brown
|
|
102
|
+
Roundabout 10 hemp canvas natural
|
|
103
|
+
Cinderella 11 glass transparent
|
|
104
|
+
|
|
105
|
+
Table: Shoes sizes, materials, and colors.
|
|
106
|
+
|
|
107
|
+
(The above is the caption for the table.) Pandoc also supports
|
|
108
|
+
multi-line tables:
|
|
109
|
+
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+
Keyword Text
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
red Sunsets, apples, and
|
|
117
|
+
other red or reddish
|
|
118
|
+
things.
|
|
119
|
+
|
|
120
|
+
green Leaves, grass, frogs
|
|
121
|
+
and other things it's
|
|
122
|
+
not easy being.
|
|
123
|
+
|
|
124
|
+
---
|
|
125
|
+
|
|
126
|
+
A horizontal rule follows.
|
|
127
|
+
|
|
128
|
+
---
|
|
129
|
+
|
|
130
|
+
Here's a definition list:
|
|
131
|
+
|
|
132
|
+
apples
|
|
133
|
+
: Good for making applesauce.
|
|
134
|
+
|
|
135
|
+
oranges
|
|
136
|
+
: Citrus!
|
|
137
|
+
|
|
138
|
+
tomatoes
|
|
139
|
+
: There's no "e" in tomatoe.
|
|
140
|
+
|
|
141
|
+
Again, text is indented 4 spaces. (Put a blank line between each
|
|
142
|
+
term and its definition to spread things out more.)
|
|
143
|
+
|
|
144
|
+
Here's a "line block" (note how whitespace is honored):
|
|
145
|
+
|
|
146
|
+
| Line one
|
|
147
|
+
| Line too
|
|
148
|
+
| Line tree
|
|
149
|
+
|
|
150
|
+
and images can be specified like so:
|
|
151
|
+
|
|
152
|
+

|
|
153
|
+
|
|
154
|
+
Inline math equation: $\omega = d\phi / dt$. Display
|
|
155
|
+
math should get its own line like so:
|
|
156
|
+
|
|
157
|
+
$$I = \int \rho R^{2} dV$$
|
|
158
|
+
|
|
159
|
+
And note that you can backslash-escape any punctuation characters
|
|
160
|
+
which you wish to be displayed literally, ex.: \`foo\`, \*bar\*, etc.
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
# NotificationRule
|
|
2
|
+
|
|
3
|
+
Paragraphs are separated by a blank line.
|
|
4
|
+
|
|
5
|
+
2nd paragraph. _Italic_, **bold**, and `monospace`. Itemized lists
|
|
6
|
+
look like:
|
|
7
|
+
|
|
8
|
+
- this one
|
|
9
|
+
- that one
|
|
10
|
+
- the other one
|
|
11
|
+
|
|
12
|
+
Note that --- not considering the asterisk --- the actual text
|
|
13
|
+
content starts at 4-columns in.
|
|
14
|
+
|
|
15
|
+
> Block quotes are
|
|
16
|
+
> written like so.
|
|
17
|
+
>
|
|
18
|
+
> They can span multiple paragraphs,
|
|
19
|
+
> if you like.
|
|
20
|
+
|
|
21
|
+
Use 3 dashes for an em-dash. Use 2 dashes for ranges (ex., "it's all
|
|
22
|
+
in chapters 12--14"). Three dots ... will be converted to an ellipsis.
|
|
23
|
+
Unicode is supported. ☺
|
|
24
|
+
|
|
25
|
+
## An h2 header
|
|
26
|
+
|
|
27
|
+
Here's a numbered list:
|
|
28
|
+
|
|
29
|
+
1. first item
|
|
30
|
+
2. second item
|
|
31
|
+
3. third item
|
|
32
|
+
|
|
33
|
+
Note again how the actual text starts at 4 columns in (4 characters
|
|
34
|
+
from the left side). Here's a code sample:
|
|
35
|
+
|
|
36
|
+
# Let me re-iterate ...
|
|
37
|
+
|
|
38
|
+
for i in 1 .. 10 { do-something(i) }
|
|
39
|
+
|
|
40
|
+
As you probably guessed, indented 4 spaces. By the way, instead of
|
|
41
|
+
indenting the block, you can use delimited blocks, if you like:
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
define foobar() {
|
|
45
|
+
print "Welcome to flavor country!";
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
(which makes copying & pasting easier). You can optionally mark the
|
|
50
|
+
delimited block for Pandoc to syntax highlight it:
|
|
51
|
+
|
|
52
|
+
```python
|
|
53
|
+
import time
|
|
54
|
+
# Quick, count to ten!
|
|
55
|
+
for i in range(10):
|
|
56
|
+
# (but not *too* quick)
|
|
57
|
+
time.sleep(0.5)
|
|
58
|
+
print(i)
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
### An h3 header
|
|
62
|
+
|
|
63
|
+
Now a nested list:
|
|
64
|
+
|
|
65
|
+
1. First, get these ingredients:
|
|
66
|
+
|
|
67
|
+
- carrots
|
|
68
|
+
- celery
|
|
69
|
+
- lentils
|
|
70
|
+
|
|
71
|
+
2. Boil some water.
|
|
72
|
+
|
|
73
|
+
3. Dump everything in the pot and follow
|
|
74
|
+
this algorithm:
|
|
75
|
+
|
|
76
|
+
find wooden spoon
|
|
77
|
+
uncover pot
|
|
78
|
+
stir
|
|
79
|
+
cover pot
|
|
80
|
+
balance wooden spoon precariously on pot handle
|
|
81
|
+
wait 10 minutes
|
|
82
|
+
goto first step (or shut off burner when done)
|
|
83
|
+
|
|
84
|
+
Do not bump wooden spoon or it will fall.
|
|
85
|
+
|
|
86
|
+
Notice again how text always lines up on 4-space indents (including
|
|
87
|
+
that last line which continues item 3 above).
|
|
88
|
+
|
|
89
|
+
Here's a link to [a website](http://foo.bar), to a [local
|
|
90
|
+
doc](local-doc.html), and to a [section heading in the current
|
|
91
|
+
doc](#an-h2-header). Here's a footnote [^1].
|
|
92
|
+
|
|
93
|
+
[^1]: Some footnote text.
|
|
94
|
+
|
|
95
|
+
Tables can look like this:
|
|
96
|
+
|
|
97
|
+
Name Size Material Color
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
All Business 9 leather brown
|
|
102
|
+
Roundabout 10 hemp canvas natural
|
|
103
|
+
Cinderella 11 glass transparent
|
|
104
|
+
|
|
105
|
+
Table: Shoes sizes, materials, and colors.
|
|
106
|
+
|
|
107
|
+
(The above is the caption for the table.) Pandoc also supports
|
|
108
|
+
multi-line tables:
|
|
109
|
+
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+
Keyword Text
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
red Sunsets, apples, and
|
|
117
|
+
other red or reddish
|
|
118
|
+
things.
|
|
119
|
+
|
|
120
|
+
green Leaves, grass, frogs
|
|
121
|
+
and other things it's
|
|
122
|
+
not easy being.
|
|
123
|
+
|
|
124
|
+
---
|
|
125
|
+
|
|
126
|
+
A horizontal rule follows.
|
|
127
|
+
|
|
128
|
+
---
|
|
129
|
+
|
|
130
|
+
Here's a definition list:
|
|
131
|
+
|
|
132
|
+
apples
|
|
133
|
+
: Good for making applesauce.
|
|
134
|
+
|
|
135
|
+
oranges
|
|
136
|
+
: Citrus!
|
|
137
|
+
|
|
138
|
+
tomatoes
|
|
139
|
+
: There's no "e" in tomatoe.
|
|
140
|
+
|
|
141
|
+
Again, text is indented 4 spaces. (Put a blank line between each
|
|
142
|
+
term and its definition to spread things out more.)
|
|
143
|
+
|
|
144
|
+
Here's a "line block" (note how whitespace is honored):
|
|
145
|
+
|
|
146
|
+
| Line one
|
|
147
|
+
| Line too
|
|
148
|
+
| Line tree
|
|
149
|
+
|
|
150
|
+
and images can be specified like so:
|
|
151
|
+
|
|
152
|
+

|
|
153
|
+
|
|
154
|
+
Inline math equation: $\omega = d\phi / dt$. Display
|
|
155
|
+
math should get its own line like so:
|
|
156
|
+
|
|
157
|
+
$$I = \int \rho R^{2} dV$$
|
|
158
|
+
|
|
159
|
+
And note that you can backslash-escape any punctuation characters
|
|
160
|
+
which you wish to be displayed literally, ex.: \`foo\`, \*bar\*, etc.
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
# Notibox
|
|
2
|
+
|
|
3
|
+
Paragraphs are separated by a blank line.
|
|
4
|
+
|
|
5
|
+
2nd paragraph. _Italic_, **bold**, and `monospace`. Itemized lists
|
|
6
|
+
look like:
|
|
7
|
+
|
|
8
|
+
- this one
|
|
9
|
+
- that one
|
|
10
|
+
- the other one
|
|
11
|
+
|
|
12
|
+
Note that --- not considering the asterisk --- the actual text
|
|
13
|
+
content starts at 4-columns in.
|
|
14
|
+
|
|
15
|
+
> Block quotes are
|
|
16
|
+
> written like so.
|
|
17
|
+
>
|
|
18
|
+
> They can span multiple paragraphs,
|
|
19
|
+
> if you like.
|
|
20
|
+
|
|
21
|
+
Use 3 dashes for an em-dash. Use 2 dashes for ranges (ex., "it's all
|
|
22
|
+
in chapters 12--14"). Three dots ... will be converted to an ellipsis.
|
|
23
|
+
Unicode is supported. ☺
|
|
24
|
+
|
|
25
|
+
## An h2 header
|
|
26
|
+
|
|
27
|
+
Here's a numbered list:
|
|
28
|
+
|
|
29
|
+
1. first item
|
|
30
|
+
2. second item
|
|
31
|
+
3. third item
|
|
32
|
+
|
|
33
|
+
Note again how the actual text starts at 4 columns in (4 characters
|
|
34
|
+
from the left side). Here's a code sample:
|
|
35
|
+
|
|
36
|
+
# Let me re-iterate ...
|
|
37
|
+
|
|
38
|
+
for i in 1 .. 10 { do-something(i) }
|
|
39
|
+
|
|
40
|
+
As you probably guessed, indented 4 spaces. By the way, instead of
|
|
41
|
+
indenting the block, you can use delimited blocks, if you like:
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
define foobar() {
|
|
45
|
+
print "Welcome to flavor country!";
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
(which makes copying & pasting easier). You can optionally mark the
|
|
50
|
+
delimited block for Pandoc to syntax highlight it:
|
|
51
|
+
|
|
52
|
+
```python
|
|
53
|
+
import time
|
|
54
|
+
# Quick, count to ten!
|
|
55
|
+
for i in range(10):
|
|
56
|
+
# (but not *too* quick)
|
|
57
|
+
time.sleep(0.5)
|
|
58
|
+
print(i)
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
### An h3 header
|
|
62
|
+
|
|
63
|
+
Now a nested list:
|
|
64
|
+
|
|
65
|
+
1. First, get these ingredients:
|
|
66
|
+
|
|
67
|
+
- carrots
|
|
68
|
+
- celery
|
|
69
|
+
- lentils
|
|
70
|
+
|
|
71
|
+
2. Boil some water.
|
|
72
|
+
|
|
73
|
+
3. Dump everything in the pot and follow
|
|
74
|
+
this algorithm:
|
|
75
|
+
|
|
76
|
+
find wooden spoon
|
|
77
|
+
uncover pot
|
|
78
|
+
stir
|
|
79
|
+
cover pot
|
|
80
|
+
balance wooden spoon precariously on pot handle
|
|
81
|
+
wait 10 minutes
|
|
82
|
+
goto first step (or shut off burner when done)
|
|
83
|
+
|
|
84
|
+
Do not bump wooden spoon or it will fall.
|
|
85
|
+
|
|
86
|
+
Notice again how text always lines up on 4-space indents (including
|
|
87
|
+
that last line which continues item 3 above).
|
|
88
|
+
|
|
89
|
+
Here's a link to [a website](http://foo.bar), to a [local
|
|
90
|
+
doc](local-doc.html), and to a [section heading in the current
|
|
91
|
+
doc](#an-h2-header). Here's a footnote [^1].
|
|
92
|
+
|
|
93
|
+
[^1]: Some footnote text.
|
|
94
|
+
|
|
95
|
+
Tables can look like this:
|
|
96
|
+
|
|
97
|
+
Name Size Material Color
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
All Business 9 leather brown
|
|
102
|
+
Roundabout 10 hemp canvas natural
|
|
103
|
+
Cinderella 11 glass transparent
|
|
104
|
+
|
|
105
|
+
Table: Shoes sizes, materials, and colors.
|
|
106
|
+
|
|
107
|
+
(The above is the caption for the table.) Pandoc also supports
|
|
108
|
+
multi-line tables:
|
|
109
|
+
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+
Keyword Text
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
red Sunsets, apples, and
|
|
117
|
+
other red or reddish
|
|
118
|
+
things.
|
|
119
|
+
|
|
120
|
+
green Leaves, grass, frogs
|
|
121
|
+
and other things it's
|
|
122
|
+
not easy being.
|
|
123
|
+
|
|
124
|
+
---
|
|
125
|
+
|
|
126
|
+
A horizontal rule follows.
|
|
127
|
+
|
|
128
|
+
---
|
|
129
|
+
|
|
130
|
+
Here's a definition list:
|
|
131
|
+
|
|
132
|
+
apples
|
|
133
|
+
: Good for making applesauce.
|
|
134
|
+
|
|
135
|
+
oranges
|
|
136
|
+
: Citrus!
|
|
137
|
+
|
|
138
|
+
tomatoes
|
|
139
|
+
: There's no "e" in tomatoe.
|
|
140
|
+
|
|
141
|
+
Again, text is indented 4 spaces. (Put a blank line between each
|
|
142
|
+
term and its definition to spread things out more.)
|
|
143
|
+
|
|
144
|
+
Here's a "line block" (note how whitespace is honored):
|
|
145
|
+
|
|
146
|
+
| Line one
|
|
147
|
+
| Line too
|
|
148
|
+
| Line tree
|
|
149
|
+
|
|
150
|
+
and images can be specified like so:
|
|
151
|
+
|
|
152
|
+

|
|
153
|
+
|
|
154
|
+
Inline math equation: $\omega = d\phi / dt$. Display
|
|
155
|
+
math should get its own line like so:
|
|
156
|
+
|
|
157
|
+
$$I = \int \rho R^{2} dV$$
|
|
158
|
+
|
|
159
|
+
And note that you can backslash-escape any punctuation characters
|
|
160
|
+
which you wish to be displayed literally, ex.: \`foo\`, \*bar\*, etc.
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/notification",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.22",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
|
-
"browser": "client/index.js",
|
|
5
|
+
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
7
7
|
"author": "heartyoh <heartyoh@hatiolab.com>",
|
|
8
8
|
"description": "module related web push notification service",
|
|
@@ -17,10 +17,12 @@
|
|
|
17
17
|
"directory": "packages/notification"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
|
-
"build": "
|
|
21
|
-
"build:
|
|
22
|
-
"
|
|
23
|
-
"clean": "
|
|
20
|
+
"build": "npm run build:server && npm run build:client",
|
|
21
|
+
"build:client": "npx tsc --p ./client/tsconfig.json",
|
|
22
|
+
"build:server": "npx tsc --p ./server/tsconfig.json",
|
|
23
|
+
"clean:client": "npx rimraf dist-client",
|
|
24
|
+
"clean:server": "npx rimraf dist-server",
|
|
25
|
+
"clean": "npm run clean:server && npm run clean:client",
|
|
24
26
|
"migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
|
|
25
27
|
},
|
|
26
28
|
"dependencies": {
|
|
@@ -28,15 +30,16 @@
|
|
|
28
30
|
"@material/mwc-formfield": "^0.27.0",
|
|
29
31
|
"@material/mwc-switch": "^0.27.0",
|
|
30
32
|
"@operato/layout": "^1.0.1",
|
|
31
|
-
"@things-factory/auth-base": "^6.1.
|
|
32
|
-
"@things-factory/codelingua": "^6.1.
|
|
33
|
-
"@things-factory/i18n-base": "^6.1.
|
|
34
|
-
"@things-factory/
|
|
35
|
-
"@things-factory/
|
|
33
|
+
"@things-factory/auth-base": "^6.1.22",
|
|
34
|
+
"@things-factory/codelingua": "^6.1.22",
|
|
35
|
+
"@things-factory/i18n-base": "^6.1.22",
|
|
36
|
+
"@things-factory/organization": "^6.1.22",
|
|
37
|
+
"@things-factory/setting-base": "^6.1.22",
|
|
38
|
+
"@things-factory/shell": "^6.1.22",
|
|
36
39
|
"clipboard": "^2.0.6",
|
|
37
40
|
"firebase": "^9.14.0",
|
|
38
41
|
"firebase-admin": "^11.3.0",
|
|
39
42
|
"google": "^2.1.0"
|
|
40
43
|
},
|
|
41
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "b745ff277f5bd9359d74201edb88bc88c9392508"
|
|
42
45
|
}
|
package/server/service/index.ts
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
/* EXPORT ENTITY TYPES */
|
|
2
|
+
export * from './notification-rule/notification-rule'
|
|
2
3
|
export * from './notification/notification'
|
|
3
4
|
|
|
4
5
|
/* IMPORT ENTITIES AND RESOLVERS */
|
|
6
|
+
import {
|
|
7
|
+
entities as NotificationRuleEntities,
|
|
8
|
+
resolvers as NotificationRuleResolvers,
|
|
9
|
+
subscribers as NotificationRuleSubscribers
|
|
10
|
+
} from './notification-rule'
|
|
5
11
|
import {
|
|
6
12
|
entities as NotificationEntities,
|
|
7
13
|
typeDefs as NotificationTypeDefs,
|
|
@@ -11,15 +17,23 @@ import {
|
|
|
11
17
|
|
|
12
18
|
export const entities = [
|
|
13
19
|
/* ENTITIES */
|
|
20
|
+
...NotificationRuleEntities,
|
|
14
21
|
...NotificationEntities
|
|
15
22
|
]
|
|
16
23
|
|
|
24
|
+
export const subscribers = [
|
|
25
|
+
/* SUBSCRIBERS */
|
|
26
|
+
...NotificationRuleSubscribers
|
|
27
|
+
]
|
|
28
|
+
|
|
17
29
|
export const schema = {
|
|
18
30
|
typeDefs: {
|
|
19
31
|
...NotificationTypeDefs
|
|
20
32
|
},
|
|
21
33
|
resolverClasses: [
|
|
22
34
|
/* RESOLVER CLASSES */
|
|
35
|
+
...NotificationRuleResolvers,
|
|
36
|
+
...NotificationResolvers,
|
|
23
37
|
...NotificationResolvers
|
|
24
38
|
],
|
|
25
39
|
directives: {
|
|
@@ -1,11 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Notification } from './notification'
|
|
2
|
+
import { NotificationQuery } from './notification-query'
|
|
3
|
+
import { NotificationMutation } from './notification-mutation'
|
|
4
|
+
import { NotificationSubscription } from './notification-subscription'
|
|
2
5
|
import { notificationDirectiveTypeDefs, directiveNotification } from './directive-notification'
|
|
3
6
|
|
|
4
7
|
export const typeDefs = {
|
|
5
8
|
notificationDirectiveTypeDefs
|
|
6
9
|
}
|
|
7
|
-
export const entities = []
|
|
8
|
-
export const resolvers = [
|
|
10
|
+
export const entities = [Notification]
|
|
11
|
+
export const resolvers = [NotificationQuery, NotificationMutation, NotificationSubscription]
|
|
9
12
|
export const directives = {
|
|
10
13
|
notification: directiveNotification
|
|
11
14
|
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { Resolver, Mutation, Arg, Ctx, Directive } from 'type-graphql'
|
|
2
|
+
import { In } from 'typeorm'
|
|
3
|
+
|
|
4
|
+
import { Notification } from './notification'
|
|
5
|
+
import { NewNotification, NotificationPatch } from './notification-type'
|
|
6
|
+
|
|
7
|
+
@Resolver(Notification)
|
|
8
|
+
export class NotificationMutation {
|
|
9
|
+
@Directive('@transaction')
|
|
10
|
+
@Mutation(returns => Notification, { description: 'To create new Notification' })
|
|
11
|
+
async createNotification(
|
|
12
|
+
@Arg('notification') notification: NewNotification,
|
|
13
|
+
@Ctx() context: ResolverContext
|
|
14
|
+
): Promise<Notification> {
|
|
15
|
+
const { domain, user, tx } = context.state
|
|
16
|
+
|
|
17
|
+
return await tx.getRepository(Notification).save({
|
|
18
|
+
...notification,
|
|
19
|
+
domain,
|
|
20
|
+
creator: user,
|
|
21
|
+
updater: user
|
|
22
|
+
})
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@Directive('@transaction')
|
|
26
|
+
@Mutation(returns => Notification, { description: 'To modify Notification information' })
|
|
27
|
+
async updateNotification(
|
|
28
|
+
@Arg('id') id: string,
|
|
29
|
+
@Arg('patch') patch: NotificationPatch,
|
|
30
|
+
@Ctx() context: ResolverContext
|
|
31
|
+
): Promise<Notification> {
|
|
32
|
+
const { domain, user, tx } = context.state
|
|
33
|
+
|
|
34
|
+
const repository = tx.getRepository(Notification)
|
|
35
|
+
const notification = await repository.findOne({
|
|
36
|
+
where: { domain: { id: domain.id }, id }
|
|
37
|
+
})
|
|
38
|
+
|
|
39
|
+
const result = await repository.save({
|
|
40
|
+
...notification,
|
|
41
|
+
...patch,
|
|
42
|
+
updater: user
|
|
43
|
+
})
|
|
44
|
+
|
|
45
|
+
return result
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@Directive('@transaction')
|
|
49
|
+
@Mutation(returns => [Notification], { description: "To modify multiple Notificationes' information" })
|
|
50
|
+
async updateMultipleNotification(
|
|
51
|
+
@Arg('patches', type => [NotificationPatch]) patches: NotificationPatch[],
|
|
52
|
+
@Ctx() context: ResolverContext
|
|
53
|
+
): Promise<Notification[]> {
|
|
54
|
+
const { domain, user, tx } = context.state
|
|
55
|
+
|
|
56
|
+
let results = []
|
|
57
|
+
const _createRecords = patches.filter((patch: any) => patch.cuFlag.toUpperCase() === '+')
|
|
58
|
+
const _updateRecords = patches.filter((patch: any) => patch.cuFlag.toUpperCase() === 'M')
|
|
59
|
+
const notificationRepo = tx.getRepository(Notification)
|
|
60
|
+
|
|
61
|
+
if (_createRecords.length > 0) {
|
|
62
|
+
for (let i = 0; i < _createRecords.length; i++) {
|
|
63
|
+
const newRecord = _createRecords[i]
|
|
64
|
+
|
|
65
|
+
const result = await notificationRepo.save({
|
|
66
|
+
...newRecord,
|
|
67
|
+
domain,
|
|
68
|
+
creator: user,
|
|
69
|
+
updater: user
|
|
70
|
+
})
|
|
71
|
+
|
|
72
|
+
results.push({ ...result, cuFlag: '+' })
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
if (_updateRecords.length > 0) {
|
|
77
|
+
for (let i = 0; i < _updateRecords.length; i++) {
|
|
78
|
+
const updateRecord = _updateRecords[i]
|
|
79
|
+
const notification = await notificationRepo.findOneBy({ id: updateRecord.id })
|
|
80
|
+
|
|
81
|
+
const result = await notificationRepo.save({
|
|
82
|
+
...notification,
|
|
83
|
+
...updateRecord,
|
|
84
|
+
updater: user
|
|
85
|
+
})
|
|
86
|
+
|
|
87
|
+
results.push({ ...result, cuFlag: 'M' })
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
return results
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
@Directive('@transaction')
|
|
95
|
+
@Mutation(returns => Boolean, { description: 'To delete Notification' })
|
|
96
|
+
async deleteNotification(@Arg('id') id: string, @Ctx() context: ResolverContext): Promise<boolean> {
|
|
97
|
+
const { domain, tx } = context.state
|
|
98
|
+
|
|
99
|
+
await tx.getRepository(Notification).delete({ domain: { id: domain.id }, id })
|
|
100
|
+
|
|
101
|
+
return true
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
@Directive('@transaction')
|
|
105
|
+
@Mutation(returns => Boolean, { description: 'To delete multiple Notificationes' })
|
|
106
|
+
async deleteNotificationes(
|
|
107
|
+
@Arg('ids', type => [String]) ids: string[],
|
|
108
|
+
@Ctx() context: ResolverContext
|
|
109
|
+
): Promise<boolean> {
|
|
110
|
+
const { domain, tx } = context.state
|
|
111
|
+
|
|
112
|
+
await tx.getRepository(Notification).delete({
|
|
113
|
+
domain: { id: domain.id },
|
|
114
|
+
id: In(ids)
|
|
115
|
+
})
|
|
116
|
+
|
|
117
|
+
return true
|
|
118
|
+
}
|
|
119
|
+
}
|