fixes and right pane layout changes

This commit is contained in:
zadam 2020-02-25 16:31:44 +01:00
parent d821ea4095
commit 7270bf287d
7 changed files with 14 additions and 21 deletions

View file

@ -105,8 +105,8 @@ class TreeCache {
const targetNote = this.notes[attributeRow.value];
if (targetNote) {
if (!note.targetRelations.includes(attributeId)) {
note.targetRelations.push(attributeId);
if (!targetNote.targetRelations.includes(attributeId)) {
targetNote.targetRelations.push(attributeId);
}
}
}

View file

@ -288,7 +288,7 @@ async function processSyncRows(syncRows) {
}
if (targetNote) {
targetNote.targetRelations = targetNote.targetRelations.filter(attributeId => attributeId !== attribute.value);
targetNote.targetRelations = targetNote.targetRelations.filter(attributeId => attributeId !== attribute.attributeId);
}
}
}

View file

@ -14,7 +14,7 @@ const WIDGET_TPL = `
<div class="widget-header-actions"></div>
</div>
<div id="[to be set]" class="collapse body-wrapper" style="transition: none;">
<div id="[to be set]" class="collapse body-wrapper" style="transition: none; ">
<div class="card-body"></div>
</div>
</div>
@ -27,26 +27,16 @@ export default class CollapsibleWidget extends TabAwareWidget {
getHelp() { return {}; }
getMaxHeight() { return null; }
doRender() {
this.$widget = $(WIDGET_TPL);
this.$widget.find('[data-target]').attr('data-target', "#" + this.componentId);
this.$bodyWrapper = this.$widget.find('.body-wrapper');
this.$bodyWrapper.attr('id', this.componentId);
this.$bodyWrapper.attr('id', this.componentId); // for toggle to work we need id
this.$bodyWrapper.collapse("show");
this.$body = this.$bodyWrapper.find('.card-body');
const maxHeight = this.getMaxHeight();
if (maxHeight) {
this.$body.css("max-height", maxHeight);
this.$body.css("overflow", "auto");
}
this.$title = this.$widget.find('.widget-title');
this.$title.text(this.getWidgetTitle());

View file

@ -12,8 +12,6 @@ export default class EditedNotesWidget extends CollapsibleWidget {
};
}
getMaxHeight() { return "200px"; }
isEnabled() {
return super.isEnabled()
&& this.note.hasOwnedLabel("dateNote");

View file

@ -12,8 +12,6 @@ export default class SimilarNotesWidget extends CollapsibleWidget {
};
}
getMaxHeight() { return "200px"; }
noteSwitched() {
const noteId = this.noteId;

View file

@ -4,8 +4,6 @@ import linkService from "../services/link.js";
export default class WhatLinksHereWidget extends CollapsibleWidget {
getWidgetTitle() { return "What links here"; }
getMaxHeight() { return "200px"; }
getHelp() {
return {
title: "This list contains all notes which link to this note through links and relations."

View file

@ -142,6 +142,9 @@ body {
#right-pane .card {
border: 0;
min-height: 0;
display: flex;
flex-direction: column;
}
#right-pane .card-header {
@ -183,10 +186,16 @@ body {
text-decoration: none;
}
#right-pane .body-wrapper {
overflow: auto;
}
#right-pane .card-body {
width: 100%;
padding: 8px;
border: 0;
height: 100%;
overflow: auto;
}
#right-pane .card-body ul {