-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess_quick_notes.js
321 lines (271 loc) · 10.3 KB
/
process_quick_notes.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
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
/* *********************************************************************
Initialize QuickNotes settings variables
********************************************************************* */
// get mail recipient to receive notes and pending tasks
// using Credential object https://scripting.getdrafts.com/classes/credential
const credential = Credential.create("QuickNotes Mail Address", " Enter a mail address to receive pending tasks");
credential.addTextField("recipientMail", "QuickNotes Recipient Mail Address");
credential.authorize();
// create QuickNotes title
const quickNotesTitle = "# QuickNotes"
// create tag to be assigned to quick notes drafts
const quickNotesTag = "quick-notes";
/* *********************************************************************
QuickNotes processing classes and functions
********************************************************************* */
// class to create current date and time strings
class DateTimeString {
constructor() {
this._now = new Date();
}
_pad2(n) {
return n < 10 ? '0' + n : n
}
get ym() {
return this._now.getFullYear().toString() + "/"
+ this._pad2(this._now.getMonth() + 1)
}
get ymd() {
return this.ym + "/"
+ this._pad2(this._now.getDate())
}
get ymdHM() {
return this.ymd + " "
+ this._pad2(this._now.getHours()) + ":"
+ this._pad2(this._now.getMinutes())
}
get ymdHMS() {
return this.ymdHM + ":"
+ this._pad2(this._now.getSeconds())
}
}
// class to collect all notes and tasks
class QuickNotesCollection {
constructor() {
// initialize property to distinguish "note" mode, "task-done" mode and "task-pending" mode
this._mode = "";
// initialize property to collect all lines of the current note
this._currentNote = "";
// initialize property to collect all lines of the current task
this._currentTask = "";
// initialize property to collect all notes - CURRENTLY NOT USED AFTER PARSING
this._notes = "";
// initialize property to collect all pending tasks
this._tasksPending = Array();
// initialize property to collect all done tasks - CURRENTLY NOT USED AFTER PARSING
this._tasksDone = Array();
// initialize property to collect all lines of the archive entry
this._archiveEntry = "";
}
// method to add line to current item (note or task)
addLine(line) {
switch (this._mode) {
case "note":
this._currentNote += line.trim() + "\n";
break;
case "task-pending":
case "task-done":
this._currentTask += line.trim() + "\n";
break;
}
}
//method to add line to archive entry
addLineArchive(line) {
this._archiveEntry += line.trim() + "\n";
}
// method to push current item (note or task)
push() {
switch (this._mode) {
case "note":
// add '_currentNote' to '_notes' and empty '_currentNote'
if (this._currentNote !== "") {
this._notes += this._currentNote + "\n";
this._currentNote = "";
}
break;
case "task-pending":
// add '_currentTask' to '_tasksPending' and empty '_currentTask'
if (this._currentTask !== "") {
this._tasksPending.push(this._currentTask);
this._currentTask = "";
}
break;
case "task-done":
// add '_currentTask' to '_tasksDone' and empty '_currentTask'
if (this._currentTask !== "") {
this._tasksDone.push(this._currentTask);
this._currentTask = "";
}
break;
}
}
// setter to set _mode
set mode(modeId) {
this._mode = modeId;
}
// getter to get all notes
get notes() {
return this._notes.trim();
}
// getter to get all pending tasks
get tasksPending() {
return this._tasksPending;
}
// getter to get all done tasks
get tasksDone() {
return this._tasksDone;
}
// getter to get archive entry
get archiveEntry() {
return this._archiveEntry.trim();
}
}
// function to find or create draft starting with 'queryString'
function get_draft(queryString, filter) {
// query for drafts
let drafts = Draft.query(queryString, filter, [quickNotesTag], [], "modified", true);
// loop over found drafts looking for a matching draft
let d;
for (let draft of drafts) {
if (draft.content.startsWith(queryString)) {
d = draft;
}
}
// if we didn't find the draft, create it
if (!d) {
d = Draft.create();
d.content = queryString;
d.addTag(quickNotesTag);
if (filter === "archive") d.isArchived = true;
}
// add one empty line
d.content = d.content.trim() + "\n\n";
d.update();
return d;
}
// function to mail a single task
function mail_task(task) {
let mail = Mail.create();
mail.toRecipients = [credential.getValue("recipientMail")];
mail.sendInBackground = true;
// get lines
let lines = task.trim().split("\n");
// first line is the actual task - use as mail subject
mail.subject = lines[0];
// get task comments - use as mail body
if (lines.length > 1) {
lines.shift();
mail.body = lines.join("\n");
} else {
mail.body = "-";
}
// send mail
let success = mail.send();
if (!success) {
console.log(mail.status);
context.fail();
}
}
/* *********************************************************************
Initialize QuickNotes other variables
********************************************************************* */
// create current date and time strings
const now = new DateTimeString;
// create quick notes collection
let quickNotes = new QuickNotesCollection();
/* *********************************************************************
Process current draft
********************************************************************* */
// get current draft
const currentDraft = draft;
// get current draft's content
const currentContent = currentDraft.content.trim();
// split draft to loop over paragraphs
let paragraphs = currentContent.split("\n\n");
// loop over paragraphs
for (let paragraph of paragraphs) {
// skip QuickNotes title
if (paragraph === quickNotesTitle) continue;
// always assume a paragraph is a note
quickNotes.mode = "note";
// split each paragraph to loop over lines
let lines = paragraph.split("\n");
for (let line of lines) {
// check if a new task starts on the current line
if (line.startsWith("[ ]") || line.startsWith("- [ ]")) {
// current line is a pending task, push previous task and change mode
quickNotes.push();
quickNotes.mode = "task-pending";
// adding to task array without task prefix
quickNotes.addLine(line.replace(/^(- |)\[[ x]]/, ""))
quickNotes.addLineArchive(line.replace("[ ]", "[>]"));
} else if (line.startsWith("[x]") || line.startsWith("- [x]")) {
// current line is a done task, push previous task and change mode
quickNotes.push();
quickNotes.mode = "task-done";
// adding to task array without task prefix
quickNotes.addLine(line.replace(/^(- |)\[[ x]]/, ""));
quickNotes.addLineArchive(line);
} else {
// current line still belongs to the current item
quickNotes.addLine(line);
// add current line to archive
if (line.startsWith("#")) {
// current line is a header line - in archive we will replace '#' at the beginning with '*** #'
quickNotes.addLineArchive(line.replace("#", "*** #"));
} else {
// current line is not a header line
quickNotes.addLineArchive(line);
}
}
}
// add empty line to archive
quickNotes.addLineArchive("");
// before processing next paragraph push current task
quickNotes.push();
// before processing next paragraph push current note
quickNotes.mode = "note";
quickNotes.push();
}
/* *********************************************************************
Archive content of the current draft and mail pending tasks
********************************************************************* */
// get QuickNotes archive draft for the current month
let archivedQuickNotes = get_draft(quickNotesTitle + " " + now.ym, "archive")
// if archiveEntry is not empty, update archived QuickNotes draft
if (quickNotes.archiveEntry.length !== 0) {
archivedQuickNotes.content += "## QuickNotes - " + now.ymdHMS + "\n\n";
archivedQuickNotes.content += quickNotes.archiveEntry + "\n\n";
archivedQuickNotes.update();
}
// mail pending tasks one by one, if any
if (quickNotes.tasksPending.length !== 0) {
for (let task of quickNotes.tasksPending) {
mail_task(task);
}
}
/* *********************************************************************
Trash and Open QuickNotes
********************************************************************* */
if ((currentContent.startsWith(quickNotesTitle)) && (currentContent !== quickNotesTitle)) {
// if current draft is QuickNotes and it is not empty, move it to trash
currentDraft.isTrashed = true;
currentDraft.update();
// get new empty QuickNotes draft
let quickNotes = get_draft(quickNotesTitle, "inbox")
// open it in the editor and go to the end
editor.activate();
editor.load(quickNotes);
editor.setSelectedRange(quickNotes.content.length, 0);
} else if (!currentContent.startsWith("#") && currentContent !== "") {
// if current draft does not start with heading and it is not empty, move it to trash
currentDraft.isTrashed = true;
currentDraft.update();
// activate editor and create a new blank draft
editor.activate();
editor.new();
} else {
// if current draft starts with heading or it is empty, show editor to hide actions
editor.activate();
editor.deactivate();
}