diff --git a/src/public/app/services/note_content_renderer.js b/src/public/app/services/note_content_renderer.js
index ba1056036..f7b38b95e 100644
--- a/src/public/app/services/note_content_renderer.js
+++ b/src/public/app/services/note_content_renderer.js
@@ -26,7 +26,7 @@ async function getRenderedContent(note) {
}
else if (type === 'file' || type === 'pdf') {
function getFileUrl() {
- return utils.getUrlForDownload("api/notes/" + note.noteId + "/download");
+ return utils.getUrlForDownload(`api/notes/${note.noteId}/download`);
}
const $downloadButton = $('');
@@ -51,7 +51,7 @@ async function getRenderedContent(note) {
if (type === 'pdf') {
const $pdfPreview = $('');
- $pdfPreview.attr("src", utils.getUrlForDownload("api/notes/" + note.noteId + "/open"));
+ $pdfPreview.attr("src", utils.getUrlForDownload(`api/notes/${note.noteId}/open`));
$rendered.append($pdfPreview);
}
diff --git a/src/public/app/services/note_list_renderer.js b/src/public/app/services/note_list_renderer.js
index 92477246f..19f585328 100644
--- a/src/public/app/services/note_list_renderer.js
+++ b/src/public/app/services/note_list_renderer.js
@@ -36,6 +36,8 @@ const TPL = `
+
')
@@ -139,34 +172,40 @@ async function renderNote(note) {
const $card = $('
')
.attr('data-note-id', note.noteId)
.css("flex-basis", ZOOMS[zoomLevel].width)
- .append($('
').append(await linkService.createNoteLink(notePath, {showTooltip: false})))
+ .append(
+ $('')
+ .append('')
+ .append(await linkService.createNoteLink(notePath, {showTooltip: false}))
+ )
.append($content);
- try {
- const {type, renderedContent} = await noteContentRenderer.getRenderedContent(note);
+ if (renderContent) {
+ try {
+ const {type, renderedContent} = await noteContentRenderer.getRenderedContent(note);
- $card.addClass("type-" + type);
- $content.append(renderedContent);
- } catch (e) {
- console.log(`Caught error while rendering note ${note.noteId} of type ${note.type}: ${e.message}, stack: ${e.stack}`);
+ $card.addClass("type-" + type);
+ $content.append(renderedContent);
+ } catch (e) {
+ console.log(`Caught error while rendering note ${note.noteId} of type ${note.type}: ${e.message}, stack: ${e.stack}`);
- $content.append("rendering error");
- }
+ $content.append("rendering error");
+ }
- const imageLinks = note.getRelations('imageLink');
+ const imageLinks = note.getRelations('imageLink');
- const childCount = note.getChildNoteIds()
- .filter(childNoteId => !imageLinks.find(rel => rel.value === childNoteId))
- .length;
+ const childCount = note.getChildNoteIds()
+ .filter(childNoteId => !imageLinks.find(rel => rel.value === childNoteId))
+ .length;
- if (childCount > 0) {
- const label = `${childCount} child${childCount > 1 ? 'ren' : ''}`;
+ if (childCount > 0) {
+ const label = `${childCount} child${childCount > 1 ? 'ren' : ''}`;
- $card.append($('')
- .append($(`
+ Show ${label}`))
- .append($(`
- Hide ${label}`).hide())
- .append($('
'))
- );
+ $card.append($('
')
+ .append($(`
+ Show ${label}`))
+ .append($(`
- Hide ${label}`).hide())
+ .append($('
'))
+ );
+ }
}
return $card;
diff --git a/src/public/app/widgets/type_widgets/book.js b/src/public/app/widgets/type_widgets/book.js
index a4200620a..727cf26d5 100644
--- a/src/public/app/widgets/type_widgets/book.js
+++ b/src/public/app/widgets/type_widgets/book.js
@@ -8,6 +8,8 @@ const TPL = `
height: 100%;
padding: 0 10px 10px 10px;
position: relative;
+ display: flex;
+ flex-direction: column;
}
.note-book-auto-message {
@@ -19,8 +21,9 @@ const TPL = `
margin-top: 5px;
}
- .note-book-content {
+ .note-detail-book-content {
flex-grow: 1;
+ min-height: 0;
}