-
Notifications
You must be signed in to change notification settings - Fork 0
/
kindle_to_np3.user.js
405 lines (353 loc) · 11 KB
/
kindle_to_np3.user.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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
// ==UserScript==
// @name Kindle Noteplan3 X-Callbacks
// @namespace Violentmonkey Scripts
// @match *://read.amazon.com/*
// @grant GM.setValue
// @grant GM.getValue
// @version 2.4
// @author John Collins
// @description Adds links for creating notes with highlights automatically
// @downloadURL https://raw.githubusercontent.com/jlc467/np3_user_scripts/main/kindle_to_np3.user.js
// @updateURL https://raw.githubusercontent.com/jlc467/np3_user_scripts/main/kindle_to_np3.user.js
// ==/UserScript==
// Changelog
// 2.4 July 18, 2022
// Fix: Use kp-annotation-location for annotation location, which works with page numbers
// Fix: Kindle URL when using Copy wasn't working, now using decodeURIComponent
(function () {
var currentTitle;
var allAnnotationMD = "";
var exportData = {};
var locations = [];
var exportElements = [];
function startScript() {
setInterval(detectChange, 1000);
}
// used to detect if user has navigated to new book
async function detectChange() {
try {
let newTitle = getTitle();
if (!newTitle) {
//console.log("empty new title");
return;
}
if (!getAnnotationsElementArray().length) {
//console.log("empty annotations");
return;
}
if (newTitle !== currentTitle) {
currentTitle = newTitle;
//console.log("title changed!");
try {
exportData = await GM.getValue(getBookASIN(), {});
} catch (err) {}
cleanup();
addActions();
}
} catch (err) {
console.log("detectChange ~ err", err);
}
}
// adds x-callback anchor tags to title of book and individual annotations
function addActions() {
var authors = getAuthors();
getAnnotationsElementArray().forEach(renderAnnotation);
addTitleLinks(allAnnotationMD, authors);
}
function renderAnnotation(a) {
try {
var annotationMD = "";
const annotationElement = getAnnotationElement(a);
if (!annotationElement) {
// haven't seen this yet but guess it can happen
return;
}
var authors = getAuthors();
var highlightText = getHighlightText(a);
var noteText = getNoteText(a);
var location = getLocation(a);
var link = getMDLinkToNote(a);
var exportedStatusElement;
if (location) {
exportedStatusElement = getExportedStatus(location);
exportElements.push(exportedStatusElement);
}
if (noteText) {
annotationMD += "\n- " + noteText;
if (link) {
annotationMD += link;
}
}
if (highlightText) {
annotationMD += "\n> " + highlightText.replace("\n", "\n> ");
if (link) {
annotationMD += link;
}
}
allAnnotationMD += annotationMD + "\n";
if (location) {
locations.push(location);
}
appendPipeSeperator(annotationElement);
annotationElement.appendChild(
getAddSingleHighlightLink(
annotationMD,
`${currentTitle}${location ? ` location ${location}` : ""}`,
authors,
location,
exportedStatusElement
)
);
appendPipeSeperator(annotationElement);
annotationElement.appendChild(
getAddToExistingLink(
annotationMD,
currentTitle,
location,
exportedStatusElement
)
);
appendPipeSeperator(annotationElement);
annotationElement.appendChild(getClipboardLink(annotationMD));
if (exportedStatusElement) {
appendPipeSeperator(annotationElement);
annotationElement.appendChild(exportedStatusElement);
}
} catch (err) {
console.log("getAnnotationsElementArray forEach ~ err", err);
}
}
// adds links near title of book, uses all annotations for book
function addTitleLinks(allAnnotationMD, authors) {
const authorsElement = getAuthorsElement();
var topLevelLinkContainerElement = document.createElement("div");
topLevelLinkContainerElement.appendChild(
getAddSingleHighlightLink(allAnnotationMD, currentTitle, authors)
);
appendPipeSeperator(topLevelLinkContainerElement);
topLevelLinkContainerElement.appendChild(getClipboardLink(allAnnotationMD));
appendPipeSeperator(topLevelLinkContainerElement);
topLevelLinkContainerElement.appendChild(getExportedStatus());
authorsElement.parentNode.insertBefore(
topLevelLinkContainerElement,
authorsElement.nextSibling
);
}
// creates new note
function getAddSingleHighlightLink(text, title, authors, loc, exportStatus) {
var a = document.createElement("a");
var linkText = document.createTextNode("new");
var textWithAuthor = `Author(s): ${authors}\n${text}`;
var textWithFrontMatter = getFrontMatterMeta() + text;
a.appendChild(linkText);
a.className = "a-size-small a-color-secondary np3";
a.title =
"Create note with this highlight in NP3. Title of note will be the title of book.";
a.href = `noteplan://x-callback-url/addNote?noteTitle=${encodeURIComponent(
title
)}&openNote=yes&text=${encodeURIComponent(textWithFrontMatter)}`;
if (loc) {
a.addEventListener("click", () => {
setExport(loc, exportStatus);
});
} else {
a.addEventListener("click", () => {
var d = new Date().toISOString();
var dRender = new Date(d).toLocaleString();
locations.forEach((loc) => {
exportData[loc] = d;
});
exportElements.forEach((ele) => {
ele.innerHTML = dRender;
});
GM.setValue(`${getBookASIN()}`, exportData);
document.getElementById("top-export-count").innerHTML =
getTopExportCount();
});
}
return a;
}
// appends to existing note
function getAddToExistingLink(text, title, loc, exportStatus) {
var a = document.createElement("a");
var linkText = document.createTextNode("append");
a.appendChild(linkText);
a.className = "a-size-small a-color-secondary np3";
a.title =
"Add to existing note in NP3, assuming note title is the title of book.";
a.href = `noteplan://x-callback-url/addText?noteTitle=${encodeURIComponent(
title
)}&text=${text}&mode=append`;
if (loc) {
a.addEventListener("click", () => {
setExport(loc, exportStatus);
});
}
return a;
}
// copies to clipboard
function getClipboardLink(text) {
var a = document.createElement("a");
var linkText = document.createTextNode("copy");
a.appendChild(linkText);
a.className = "a-size-small a-color-secondary np3";
a.title = "Copy to clipboard for NP3";
a.href = "javascript:void(0);";
a.addEventListener("click", () => {
copyToClipboard(decodeURIComponent(text));
});
return a;
}
function setExport(loc, exportStatus) {
exportData[loc] = new Date().toISOString();
exportStatus.innerHTML = new Date(exportData[loc]).toLocaleString();
GM.setValue(`${getBookASIN()}`, exportData);
document.getElementById("top-export-count").innerHTML = getTopExportCount();
}
function getMDLinkToNote(note) {
try {
let url = getDirectUrlToNote(note);
let loc = getLocation(note);
if (url && loc) {
return " [loc " + loc + "](" + encodeURIComponent(url) + ")";
}
return "";
} catch (err) {}
}
function getDirectUrlToNote(note) {
try {
let location = getLocation(note);
let asin = getBookASIN();
return "kindle://book?action=open&asin=" + asin + "&location=" + location;
} catch (err) {}
}
function getAuthors() {
const authors = getAuthorsElement()
.textContent.split("、")
.map((a) => `[[${a}]]`)
.join(" ");
return authors;
}
function getTitle() {
const title = getTitleElement().textContent;
return title;
}
// start element / text getters, liable to change
function getLocation(note) {
try {
var node = note.querySelector("#kp-annotation-location");
if (node) {
var loc = node.value;
return loc
}
return "";
} catch (err) {}
return "";
}
function getBookASIN() {
let asinInput = document.getElementById("kp-notebook-annotations-asin");
if (asinInput) {
return asinInput.value;
}
return false;
}
function getTitleElement() {
return document.querySelector("#annotation-section h3");
}
function getAuthorsElement() {
const titleElement = getTitleElement();
const authorsElement = titleElement.nextElementSibling;
return authorsElement;
}
function getAnnotationsElementArray() {
return [
...document
.getElementById("kp-notebook-annotations")
.getElementsByClassName("kp-notebook-row-separator"),
];
}
function getHighlightText(note) {
var node = note.querySelector("#highlight");
if (node) {
return node.textContent;
}
return "";
}
function getNoteText(note) {
var node = note.querySelector("#note");
if (node) {
return node.textContent;
}
return "";
}
function getAnnotationElement(a) {
return (
a.querySelector("#annotationHighlightHeader") ||
a.querySelector("#annotationNoteHeader")
);
}
// end element / text getters
function cleanup() {
// remove elements with np3 class.. seems like they get destroyed by themselves, not necessary.
allAnnotationMD = "";
locations = [];
exportElements = [];
}
function appendPipeSeperator(ele) {
ele.appendChild(document.createTextNode(" | "));
}
async function copyToClipboard(textToCopy) {
try {
// 1) Copy text
await navigator.clipboard.writeText(textToCopy);
// 2) Catch errors
} catch (err) {
//console.error("Failed to copy: ", err);
}
}
function getFrontMatterMeta() {
return `---
title: ${currentTitle}
type: book-note
Author: ${getAuthorsElement().textContent}
source: my Kindle highlights
book: https://www.amazon.com/dp/${getBookASIN() || "unknown"}
---
`;
}
function getTopExportCount() {
let exportCount = Object.keys(exportData).length;
let neverExportedCount = 0;
locations.forEach((loc) => {
if (!exportData[loc]) {
neverExportedCount++;
}
});
var text = !exportCount
? "never exported"
: `${neverExportedCount} unexported`;
return text;
}
function getExportedStatus(loc) {
var a = document.createElement("span");
var text = "";
if (!loc) {
a.id = "top-export-count";
text = getTopExportCount();
} else {
text = exportData[loc]
? `exported ${new Date(exportData[loc]).toLocaleString()}`
: "never exported";
}
var exportText = document.createTextNode(text);
a.appendChild(exportText);
a.className = "a-size-small a-color-secondary np3";
return a;
}
setTimeout(() => {
startScript();
}, 500);
})();
// Credit to these scripts that helped build this:
// https://github.com/yanncharlou/GreaseMonkeyKindleNotesExtractor
// https://github.com/serizawa-jp/roamkit/blob/b3edbbd8aa5fda53abb25e9a32f87dec676ffdf9/bookmarklets/kindle2roam/kindle2roam.js