mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
169 lines
4.7 KiB
JavaScript
169 lines
4.7 KiB
JavaScript
import TabAwareWidget from "../tab_aware_widget.js";
|
|
|
|
const TPL = `
|
|
<div class="section-container">
|
|
<style>
|
|
.section-container {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.section-title-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
margin-top: 7px;
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.section-title {
|
|
padding-right: 10px;
|
|
padding-left: 10px;
|
|
color: var(--muted-text-color);
|
|
border-bottom: 1px solid var(--main-border-color);
|
|
}
|
|
|
|
.section-title.active {
|
|
color: var(--main-text-color);
|
|
border-bottom: 1px solid var(--main-text-color);
|
|
}
|
|
|
|
.section-title:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.section-title:hover {
|
|
color: var(--main-text-color);
|
|
}
|
|
|
|
.section-title-empty {
|
|
flex-shrink: 1;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.section-body {
|
|
display: none;
|
|
border-bottom: 1px solid var(--main-border-color);
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.section-body.active {
|
|
display: block;
|
|
}
|
|
</style>
|
|
|
|
<div class="section-title-container"></div>
|
|
<div class="section-body-container"></div>
|
|
</div>`;
|
|
|
|
export default class CollapsibleSectionContainer extends TabAwareWidget {
|
|
constructor() {
|
|
super();
|
|
|
|
this.children = [];
|
|
|
|
this.positionCounter = 10;
|
|
}
|
|
|
|
child(...components) {
|
|
if (!components) {
|
|
return this;
|
|
}
|
|
|
|
super.child(...components);
|
|
|
|
for (const component of components) {
|
|
if (!component.position) {
|
|
component.position = this.positionCounter;
|
|
this.positionCounter += 10;
|
|
}
|
|
}
|
|
|
|
this.children.sort((a, b) => a.position - b.position < 0 ? -1 : 1);
|
|
|
|
return this;
|
|
}
|
|
|
|
doRender() {
|
|
this.$widget = $(TPL);
|
|
this.overflowing();
|
|
|
|
this.$titleContainer = this.$widget.find('.section-title-container');
|
|
this.$bodyContainer = this.$widget.find('.section-body-container');
|
|
|
|
for (const widget of this.children) {
|
|
this.$bodyContainer.append(
|
|
$('<div class="section-body">')
|
|
.attr('data-section-component-id', widget.componentId)
|
|
.append(widget.render())
|
|
);
|
|
}
|
|
|
|
this.$titleContainer.on('click', '.section-title-real', e => {
|
|
const $sectionTitle = $(e.target).closest('.section-title-real');
|
|
|
|
const activate = !$sectionTitle.hasClass("active");
|
|
|
|
this.$titleContainer.find('.section-title-real').removeClass("active");
|
|
this.$bodyContainer.find('.section-body').removeClass("active");
|
|
|
|
if (activate) {
|
|
const sectionComponentId = $sectionTitle.attr('data-section-component-id');
|
|
|
|
this.lastActiveComponentId = sectionComponentId;
|
|
|
|
this.$titleContainer.find(`.section-title-real[data-section-component-id="${sectionComponentId}"]`).addClass("active");
|
|
this.$bodyContainer.find(`.section-body[data-section-component-id="${sectionComponentId}"]`).addClass("active");
|
|
}
|
|
else {
|
|
this.lastActiveComponentId = null;
|
|
}
|
|
});
|
|
}
|
|
|
|
async refreshWithNote(note, noExplicitActivation = false) {
|
|
let $sectionToActivate, $lastActiveSection;
|
|
|
|
this.$titleContainer.empty().append('<div class="section-title section-title-empty">');
|
|
|
|
for (const widget of this.children) {
|
|
const ret = widget.renderTitle(note);
|
|
|
|
if (!ret.show) {
|
|
continue;
|
|
}
|
|
|
|
const $sectionTitle = $('<div class="section-title section-title-real">')
|
|
.attr('data-section-component-id', widget.componentId)
|
|
.append(ret.$title);
|
|
|
|
this.$titleContainer.append($sectionTitle);
|
|
this.$titleContainer.append('<div class="section-title section-title-empty">');
|
|
|
|
if (ret.activate && !$sectionToActivate && !noExplicitActivation) {
|
|
$sectionToActivate = $sectionTitle;
|
|
}
|
|
|
|
if (this.lastActiveComponentId === widget.componentId) {
|
|
$lastActiveSection = $sectionTitle;
|
|
}
|
|
}
|
|
|
|
if (!$sectionToActivate) {
|
|
$sectionToActivate = $lastActiveSection;
|
|
}
|
|
|
|
if ($sectionToActivate) {
|
|
$sectionToActivate.trigger('click');
|
|
}
|
|
else {
|
|
this.$bodyContainer.find('.section-body').removeClass("active");
|
|
}
|
|
}
|
|
|
|
refreshSectionContainerCommand() {
|
|
this.refreshWithNote(this.note, true);
|
|
}
|
|
}
|