trilium/src/public/javascripts/widgets/collapsible_widget.js

82 lines
2.2 KiB
JavaScript
Raw Normal View History

import TabAwareWidget from "./tab_aware_widget.js";
2019-08-16 03:08:41 +08:00
const WIDGET_TPL = `
<div class="card widget">
<div class="card-header">
<div>
<button class="btn btn-sm widget-title" data-toggle="collapse" data-target="#[to be set]">
Collapsible Group Item
</button>
<a class="widget-help external no-arrow bx bx-info-circle"></a>
</div>
2019-08-16 03:08:41 +08:00
<div class="widget-header-actions"></div>
</div>
<div id="[to be set]" class="collapse body-wrapper" style="transition: none;">
2019-08-16 03:08:41 +08:00
<div class="card-body"></div>
</div>
</div>
`;
2020-02-03 03:02:08 +08:00
export default class CollapsibleWidget extends TabAwareWidget {
getWidgetTitle() { return "Untitled widget"; }
getHeaderActions() { return []; }
getHelp() { return {}; }
getMaxHeight() { return null; }
2020-02-03 03:02:08 +08:00
doRender() {
2019-08-16 03:08:41 +08:00
this.$widget = $(WIDGET_TPL);
2020-02-03 01:46:50 +08:00
this.$widget.find('[data-target]').attr('data-target', "#" + this.componentId);
2019-08-16 03:08:41 +08:00
this.$bodyWrapper = this.$widget.find('.body-wrapper');
2020-02-03 01:46:50 +08:00
this.$bodyWrapper.attr('id', this.componentId);
2019-08-16 03:08:41 +08:00
2020-02-03 01:46:50 +08:00
this.$bodyWrapper.collapse("show");
2019-08-16 03:08:41 +08:00
this.$body = this.$bodyWrapper.find('.card-body');
2019-08-20 02:59:40 +08:00
const maxHeight = this.getMaxHeight();
if (maxHeight) {
this.$body.css("max-height", maxHeight);
this.$body.css("overflow", "auto");
}
2019-08-16 03:08:41 +08:00
this.$title = this.$widget.find('.widget-title');
2019-08-17 16:45:20 +08:00
this.$title.text(this.getWidgetTitle());
this.$help = this.$widget.find('.widget-help');
const help = this.getHelp();
if (help.title) {
this.$help.attr("title", help.title);
this.$help.attr("href", help.url || "javascript:");
if (!help.url) {
this.$help.addClass('no-link');
}
}
else {
this.$help.hide();
}
2019-08-16 03:08:41 +08:00
this.$headerActions = this.$widget.find('.widget-header-actions');
2019-08-17 16:45:20 +08:00
this.$headerActions.append(...this.getHeaderActions());
2020-02-03 03:02:08 +08:00
this.initialized = this.doRenderBody();
2019-08-17 16:45:20 +08:00
return this.$widget;
}
2019-08-20 02:59:40 +08:00
2019-08-16 03:08:41 +08:00
/** for overriding */
async doRenderBody() {}
2019-08-23 02:58:43 +08:00
isExpanded() {
2019-08-17 03:52:36 +08:00
return this.$bodyWrapper.hasClass("show");
2019-08-16 03:08:41 +08:00
}
2020-02-03 03:02:08 +08:00
}