forked from WorldBrain/Memex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotifications.ts
298 lines (292 loc) · 9.98 KB
/
notifications.ts
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
// Use these keys in case of action buttons, import the keys in the storage-keys-notif module
import * as actionTypes from './action-types'
import { NotifDefinition } from './types'
/** Time when create the notif, get the current unix time (Date.now()) - Important, the notif insertation in db depends on it */
export const releaseTime: number = 1559735977587
/* Example Notification:
{
id: 'direct_links_inital_notification',
search: {
title: 'New Feature: Memex.Link',
message:
'Test Message',
buttons: [
{
action: {
type: actionTypes.OPEN_URL,
url: 'https://worldbrain.io',
context: 'new-tab',
},
label: 'Learn More',
},
],
},
system: {
title: 'New Feature: Memex.Link',
message:
'Test Message',
buttons: [
{
action: {
type: actionTypes.OPEN_URL,
url: 'https://worldbrain.io',
context: 'new-tab',
},
label: 'Learn More',
},
],
},
overview: {
title: 'New Feature: Memex.Link',
message:
'Test Message',
buttons: [
{
action: {
type: actionTypes.OPEN_URL,
url: 'https://worldbrain.io',
context: 'new-tab',
},
label: 'Learn More',
},
],
},
},
*/
export const UPDATE_NOTIFS: NotifDefinition[] = []
export interface EventNotifsDict {
[name: string]: NotifDefinition
}
export const EVENT_NOTIFS: EventNotifsDict = {
db_error: {
id: 'db_error',
overview: {
title: 'Database errors encountered.',
message:
'Your memex may be functioning unexpectedly due to issues with your database. It may be low on space.',
},
},
quota_warning: {
id: 'quota_warning',
system: {
title: '⚠️ Low storage space',
message: 'Data might be deleted. Click to backup & free up space.',
buttons: [
{
action: {
type: actionTypes.OPEN_URL,
url: '/options.html#/overview?showInbox=true',
context: 'self',
},
label: 'Learn more',
},
],
},
overview: {
title:
"⚠️ You're almost out of storage space. Your browser may delete Memex data",
message:
'Due to the browsers policy to evict local storage when space gets low it might happen that your Memex data gets deleted. Free up disk space and make sure to backup your data for the worst case',
buttons: [
{
action: {
type: actionTypes.OPEN_URL,
url: '/options.html#/backup',
context: 'self',
},
label: 'Backup Now',
},
],
},
search: {
title:
"⚠️ You're almost out of storage space. Your browser may delete Memex data",
message:
'Due to the browsers policy to evict local storage on low disc space it might happen that your Memex data gets deleted. Free up disk space and make sure to backup your data for the worst case',
buttons: [
{
action: {
type: actionTypes.OPEN_URL,
url:
'https://www.notion.so/worldbrain/2318f14ceeb741d6b7aa6c0ff00cb607',
context: 'new-tab',
},
label: 'Find out more',
},
],
},
},
backup_error: {
id: 'backup_error',
system: {
title: 'Error backing up data.',
message: 'Please check your internet connectivity',
buttons: [
{
action: {
type: actionTypes.OPEN_URL,
url: '/options.html#/overview?showInbox=true',
context: 'self',
},
label: 'Backup Now',
},
],
},
overview: {
title: 'Backup Error due to poor internet connectivity.',
message: `Please make sure that you have an internet connection
for a successful backup.`,
buttons: [
{
action: {
type: actionTypes.OPEN_URL,
url: '/options.html#/backup',
context: 'self',
},
label: 'Retry',
},
],
},
},
drive_size_empty: {
id: 'drive_size_empty',
system: {
title: 'Drive Size',
message: 'There seems to be no space in your Google Drive',
buttons: [
{
action: {
type: actionTypes.OPEN_URL,
url: '/options.html#/overview?showInbox=true',
},
label: 'Retry',
},
],
},
overview: {
title: 'No Drive Size Available',
message: `There is no space available in your Google Drive.
Please clear some space in your drive to be able to successfully
backup your future data.`,
buttons: [
{
action: {
type: actionTypes.OPEN_URL,
url: 'https://drive.google.com',
},
label: 'Go to Google Drive',
},
],
},
},
auto_backup_expired: {
id: 'auto_backup_expired',
system: {
title: 'Auto Backup',
message: 'Your Auto Backup subscription has expired.',
buttons: [
{
action: {
type: actionTypes.OPEN_URL,
url: 'https://worldbrain.io/pricing',
context: 'self',
},
label: 'Renew Subscription',
},
],
},
overview: {
title: 'Auto Backup Subscription',
message: `Your Auto Backup subscription has expired. If you want to
renew your subscription click on the button below.`,
buttons: [
{
action: {
type: actionTypes.OPEN_URL,
url: 'https://worldbrain.io/pricing',
context: 'self',
},
label: 'Renew Subscription',
},
],
},
},
incremental_backup_down: {
id: 'incremental_backup_down',
system: {
title: 'Auto Backup Down',
message: `Your Auto Backup hasn't ran in more than 24 hours.`,
// buttons: [
// {
// action: {
// type: actionTypes.OPEN_URL,
// url: 'https://worldbrain.io/pricing',
// context: 'self',
// },
// label: 'Renew Subscription',
// },
// ],
},
overview: {
title: 'Auto Backup Down',
message: `Your Auto Backup hasn't ran in more than 24 hours. Is the Memex Backup Helper running?`,
// buttons: [
// {
// action: {
// type: actionTypes.OPEN_URL,
// url: 'https://worldbrain.io/pricing',
// context: 'self',
// },
// label: 'Renew Subscription',
// },
// ],
},
},
usage_survey_1: {
id: 'usage_survey_1',
search: {
title: 'How disappointed would you be if Memex does not exist?',
message:
'Take a 2-5min survey, get 1 month Memex Pro',
buttons: [
{
action: {
type: actionTypes.OPEN_URL,
url: 'https://worldbrain.typeform.com/to/PHt3uZ',
context: 'new-tab',
},
label: 'Take Survey',
},
],
},
overview: {
title: 'How disappointed would you be if Memex does not exist?',
message:
'Take a 2-5min survey, get 1 month free premium and a chance to win 12 additional months.',
buttons: [
{
action: {
type: actionTypes.OPEN_URL,
url: 'https://worldbrain.typeform.com/to/PHt3uZ',
context: 'new-tab',
},
label: 'Take Survey',
},
],
},
system: {
title: 'Take a 2-5min survey',
message: 'Get 1 month free premium and a chance to win 12 months!',
buttons: [
{
action: {
type: actionTypes.OPEN_URL,
url: 'https://worldbrain.typeform.com/to/PHt3uZ',
context: 'new-tab',
},
label: 'Take Survey',
},
],
},
},
}