import server from "./server.js"; import linkService from "./link.js"; import utils from "./utils.js"; import treeCache from "./tree_cache.js"; import renderService from "./render.js"; import protectedSessionHolder from "./protected_session_holder.js"; import protectedSessionService from "./protected_session.js"; const MIN_ZOOM_LEVEL = 1; const MAX_ZOOM_LEVEL = 6; const ZOOMS = { 1: { width: "100%", height: "100%" }, 2: { width: "49%", height: "350px" }, 3: { width: "32%", height: "250px" }, 4: { width: "24%", height: "200px" }, 5: { width: "19%", height: "175px" }, 6: { width: "16%", height: "150px" } }; class NoteDetailBook { /** * @param {TabContext} ctx */ constructor(ctx) { this.ctx = ctx; this.$component = ctx.$tabContent.find('.note-detail-book'); this.$content = this.$component.find('.note-detail-book-content'); this.$zoomInButton = this.$component.find('.book-zoom-in-button'); this.$zoomOutButton = this.$component.find('.book-zoom-out-button'); this.$expandChildrenButton = this.$component.find('.expand-children-button'); this.$zoomInButton.click(() => this.setZoom(this.zoomLevel - 1)); this.$zoomOutButton.click(() => this.setZoom(this.zoomLevel + 1)); this.$expandChildrenButton.click(async () => { for (let i = 1; i < 30; i++) { // protection against infinite cycle const $unexpandedLinks = this.$content.find('.note-book-open-children-button:visible'); if ($unexpandedLinks.length === 0) { break; } for (const link of $unexpandedLinks) { const $card = $(link).closest(".note-book-card"); await this.expandCard($card); } } }); this.$content.on('click', '.note-book-open-children-button', async ev => { const $card = $(ev.target).closest('.note-book-card'); await this.expandCard($card); }); this.$content.on('click', '.note-book-hide-children-button', async ev => { const $card = $(ev.target).closest('.note-book-card'); $card.find('.note-book-open-children-button').show(); $card.find('.note-book-hide-children-button').hide(); $card.find('.note-book-children-content').empty(); }); } async expandCard($card) { const noteId = $card.attr('data-note-id'); const note = await treeCache.getNote(noteId); $card.find('.note-book-open-children-button').hide(); $card.find('.note-book-hide-children-button').show(); await this.renderIntoElement(note, $card.find('.note-book-children-content')); } setZoom(zoomLevel) { if (!(zoomLevel in ZOOMS)) { zoomLevel = this.getDefaultZoomLevel(); } this.zoomLevel = zoomLevel; this.$zoomInButton.prop("disabled", zoomLevel === MIN_ZOOM_LEVEL); this.$zoomOutButton.prop("disabled", zoomLevel === MAX_ZOOM_LEVEL); this.$content.find('.note-book-card').css("flex-basis", ZOOMS[zoomLevel].width); this.$content.find('.note-book-content').css("max-height", ZOOMS[zoomLevel].height); } async render() { this.$content.empty(); if (this.isAutoBook()) { const $addTextLink = $('here').click(() => { this.ctx.renderComponent(true); }); this.$content.append($('
') .append(`This note doesn't have any content so we display it's children. Click `) .append($addTextLink) .append(' if you want to add some text.')) } const zoomLevel = parseInt(await this.ctx.note.getLabelValue('bookZoomLevel')) || this.getDefaultZoomLevel(); this.setZoom(zoomLevel); await this.renderIntoElement(this.ctx.note, this.$content); } async renderIntoElement(note, $container) { for (const childNote of await note.getChildNotes()) { const type = this.getRenderingType(childNote); const $card = $('").text(fullNote.content);
}
else if (type === 'image') {
return $("
").attr("src", `api/images/${note.noteId}/${note.title}`);
}
else if (type === 'file') {
function getFileUrl() {
// electron needs absolute URL so we extract current host, port, protocol
return utils.getHost() + "/api/notes/" + note.noteId + "/download";
}
const $downloadButton = $('');
const $openButton = $('');
$downloadButton.click(() => utils.download(getFileUrl()));
$openButton.click(() => {
if (utils.isElectron()) {
const open = require("open");
open(getFileUrl());
}
else {
window.location.href = getFileUrl();
}
});
// open doesn't work for protected notes since it works through browser which isn't in protected session
$openButton.toggle(!note.isProtected);
return $('')
.append($downloadButton)
.append(' ')
.append($openButton);
}
else if (type === 'render') {
const $el = $('');
await renderService.render(note, $el, this.ctx);
return $el;
}
else if (type === 'protected-session') {
const $button = $(``)
.click(protectedSessionService.enterProtectedSession);
return $("")
.append("This note is protected and to access it you need to enter password.")
.append("
")
.append($button);
}
else {
return "Content of this note cannot be displayed in the book format";
}
}
/** @return {boolean} true if this is "auto book" activated (empty text note) and not explicit book note */
isAutoBook() {
return this.ctx.note.type !== 'book';
}
getDefaultZoomLevel() {
return this.isAutoBook() ? 3 : 1;
}
getRenderingType(childNote) {
let type = childNote.type;
if (childNote.isProtected) {
if (protectedSessionHolder.isProtectedSessionAvailable()) {
protectedSessionHolder.touchProtectedSession();
}
else {
type = 'protected-session';
}
}
return type;
}
getContent() {}
show() {
this.$component.show();
}
focus() {}
onNoteChange() {}
cleanup() {
this.$content.empty();
}
scrollToTop() {
this.$component.scrollTop(0);
}
}
export default NoteDetailBook;