import server from "./server.js"; import renderService from "./render.js"; import protectedSessionService from "./protected_session.js"; import protectedSessionHolder from "./protected_session_holder.js"; import libraryLoader from "./library_loader.js"; import openService from "./open.js"; import treeCache from "./tree_cache.js"; async function getRenderedContent(note, options = {}) { options = Object.assign({ trim: false, tooltip: false }, options); const type = getRenderingType(note); const $renderedContent = $('
").text(trim(fullNote.content, options.trim)));
}
else if (type === 'image') {
$renderedContent.append(
$("
")
.attr("src", `api/images/${note.noteId}/${note.title}`)
.css("max-width", "100%")
);
}
else if (!options.tooltip && ['file', 'pdf', 'audio', 'video'].includes(type)) {
const $downloadButton = $('');
const $openButton = $('');
$downloadButton.on('click', () => openService.downloadFileNote(note.noteId));
$openButton.on('click', () => openService.openFileNote(note.noteId));
// open doesn't work for protected notes since it works through browser which isn't in protected session
$openButton.toggle(!note.isProtected);
const $content = $('');
if (type === 'pdf') {
const $pdfPreview = $('');
$pdfPreview.attr("src", openService.getUrlForDownload("api/notes/" + note.noteId + "/open"));
$content.append($pdfPreview);
}
else if (type === 'audio') {
const $audioPreview = $('')
.attr("src", openService.getUrlForDownload("api/notes/" + note.noteId + "/open"))
.attr("type", note.mime)
.css("width", "100%");
$content.append($audioPreview);
}
else if (type === 'video') {
const $videoPreview = $('')
.attr("src", openService.getUrlForDownload("api/notes/" + note.noteId + "/open"))
.attr("type", note.mime)
.css("width", "100%");
$content.append($videoPreview);
}
$content.append(
$('')
.append($downloadButton)
.append($openButton)
);
$renderedContent.append($content);
}
else if (type === 'render') {
const $content = $('');
await renderService.render(note, $content, this.ctx);
$renderedContent.append($content);
}
else if (!options.tooltip && type === 'protected-session') {
const $button = $(``)
.on('click', protectedSessionService.enterProtectedSession);
$renderedContent.append(
$("")
.append("This note is protected and to access it you need to enter password.")
.append("
")
.append($button)
);
}
else {
$renderedContent.append($("Content of this note cannot be displayed in the book format
"));
}
$renderedContent.addClass(note.getCssClass());
return {
$renderedContent,
type
};
}
function trim(text, doTrim) {
if (!doTrim) {
return text;
}
else {
return text.substr(0, Math.min(text.length, 1000));
}
}
function getRenderingType(note) {
let type = note.type;
if (type === 'file' && note.mime === 'application/pdf') {
type = 'pdf';
} else if (type === 'file' && note.mime.startsWith('audio/')) {
type = 'audio';
} else if (type === 'file' && note.mime.startsWith('video/')) {
type = 'video';
}
if (note.isProtected) {
if (protectedSessionHolder.isProtectedSessionAvailable()) {
protectedSessionHolder.touchProtectedSession();
}
else {
type = 'protected-session';
}
}
return type;
}
export default {
getRenderedContent
};