trilium/src/public/javascripts/services/note_detail_image.js

74 lines
2.3 KiB
JavaScript
Raw Normal View History

2018-11-08 17:11:00 +08:00
import utils from "./utils.js";
import protectedSessionHolder from "./protected_session_holder.js";
import noteDetailService from "./note_detail.js";
2018-11-09 01:35:23 +08:00
import infoService from "./info.js";
import server from "./server.js";
2018-11-08 17:11:00 +08:00
2018-11-08 17:30:35 +08:00
const $component = $('#note-detail-image');
const $imageView = $('#note-detail-image-view');
2018-11-08 17:11:00 +08:00
const $imageDownloadButton = $("#image-download");
const $copyToClipboardButton = $("#image-copy-to-clipboard");
const $fileName = $("#image-filename");
const $fileType = $("#image-filetype");
const $fileSize = $("#image-filesize");
2018-11-08 17:11:00 +08:00
async function show() {
const currentNote = noteDetailService.getCurrentNote();
const attributes = await server.get('notes/' + currentNote.noteId + '/attributes');
const attributeMap = utils.toObject(attributes, l => [l.name, l.value]);
2018-11-08 17:30:35 +08:00
$component.show();
2018-11-08 17:11:00 +08:00
$fileName.text(attributeMap.originalFileName);
$fileSize.text(attributeMap.fileSize + " bytes");
$fileType.text(currentNote.mime);
2018-11-08 17:30:35 +08:00
$imageView.prop("src", `/api/images/${currentNote.noteId}/${currentNote.title}`);
2018-11-08 17:11:00 +08:00
}
$imageDownloadButton.click(() => utils.download(getFileUrl()));
2018-11-08 17:11:00 +08:00
2018-11-09 01:35:23 +08:00
function selectImage(element) {
const selection = window.getSelection();
const range = document.createRange();
range.selectNodeContents(element);
selection.removeAllRanges();
selection.addRange(range);
}
$copyToClipboardButton.click(() => {
2018-11-09 01:35:23 +08:00
$component.attr('contenteditable','true');
try {
selectImage($component.get(0));
const success = document.execCommand('copy');
if (success) {
infoService.showMessage("Image copied to the clipboard");
}
else {
infoService.showAndLogError("Could not copy the image to clipboard.");
}
}
finally {
window.getSelection().removeAllRanges();
$component.removeAttr('contenteditable');
}
});
2018-11-08 17:11:00 +08:00
function getFileUrl() {
// electron needs absolute URL so we extract current host, port, protocol
return utils.getHost() + "/api/notes/" + noteDetailService.getCurrentNoteId()
+ "/download?protectedSessionId=" + encodeURIComponent(protectedSessionHolder.getProtectedSessionId());
}
export default {
show,
getContent: () => null,
focus: () => null,
onNoteChange: () => null,
cleanup: () => null
}