note revisions for images, WIP

This commit is contained in:
zadam 2019-11-08 23:09:57 +01:00
parent 712f67e983
commit 58a857cf79
6 changed files with 44 additions and 5 deletions

View File

@ -61,6 +61,11 @@ $list.on('change', async () => {
else if (note.type === 'code') {
$content.html($("<pre>").text(fullNoteRevision.content));
}
else if (note.type === 'image') {
$content.html($("<img>")
.attr("src", `data:${note.mime};base64,` + fullNoteRevision.content)
.css("width", "100%"));
}
else {
$content.text("Preview isn't available for this note type.");
}

View File

@ -64,6 +64,8 @@ class NoteDetailImage {
if (result.uploaded) {
toastService.showMessage("New revision of the image has been uploaded.")
await utils.clearBrowserCache();
await noteDetailService.reload();
}
else {

View File

@ -205,6 +205,13 @@ function isHtmlEmpty(html) {
return $("<div>").html(html).text().trim().length === 0 && !html.toLowerCase().includes('<img');
}
async function clearBrowserCache() {
if (isElectron()) {
const win = require('electron').remote.getCurrentWindow();
await win.webContents.session.clearCache();
}
}
export default {
reloadApp,
parseDate,
@ -236,5 +243,6 @@ export default {
getNoteTypeClass,
getMimeTypeClass,
closeActiveDialog,
isHtmlEmpty
isHtmlEmpty,
clearBrowserCache
};

View File

@ -18,6 +18,10 @@ async function getNoteRevision(req) {
await noteRevision.getContent();
if (noteRevision.content && ['file', 'image'].includes(noteRevision.type)) {
noteRevision.content = noteRevision.content.toString('base64');
}
return noteRevision;
}

View File

@ -12,6 +12,8 @@ const imageminGifLossy = require('imagemin-giflossy');
const jimp = require('jimp');
const imageType = require('image-type');
const sanitizeFilename = require('sanitize-filename');
const dateUtils = require('./date_utils');
const NoteRevision = require("../entities/note_revision");
async function processImage(uploadBuffer, originalName, shrinkImageSwitch) {
const origImageFormat = imageType(uploadBuffer);
@ -36,12 +38,31 @@ async function updateImage(noteId, uploadBuffer, originalName) {
const note = await repository.getNote(noteId);
const noteRevision = await new NoteRevision({
noteId: note.noteId,
// title and text should be decrypted now
title: note.title,
contentLength: -1, // will be updated in .setContent()
type: note.type,
mime: note.mime,
isProtected: false, // will be fixed in the protectNoteRevisions() call
utcDateLastEdited: note.utcDateModified,
utcDateCreated: dateUtils.utcNowDateTime(),
utcDateModified: dateUtils.utcNowDateTime(),
dateLastEdited: note.dateModified,
dateCreated: dateUtils.localNowDateTime()
}).save();
await noteRevision.setContent(await note.getContent());
note.mime = 'image/' + imageFormat.ext.toLowerCase();
await note.setContent(buffer);
await note.setLabel('originalFileName', originalName);
await note.setLabel('fileSize', buffer.byteLength);
await noteService.protectNoteRevisions(note);
}
async function saveImage(parentNoteId, uploadBuffer, originalName, shrinkImageSwitch) {
@ -62,13 +83,11 @@ async function saveImage(parentNoteId, uploadBuffer, originalName, shrinkImageSw
]
});
const imageHash = note.utcDateModified.replace(" ", "_");
return {
fileName,
note,
noteId: note.noteId,
url: `api/images/${note.noteId}/${fileName}?${imageHash}`
url: `api/images/${note.noteId}/${fileName}`
};
}

View File

@ -537,5 +537,6 @@ module.exports = {
deleteBranch,
protectNoteRecursively,
scanForLinks,
duplicateNote
duplicateNote,
protectNoteRevisions
};