mirror of
https://github.com/zadam/trilium.git
synced 2024-11-18 13:41:59 +08:00
120 lines
No EOL
3.2 KiB
JavaScript
120 lines
No EOL
3.2 KiB
JavaScript
import optionsService from "../services/options.js";
|
|
|
|
const WIDGET_TPL = `
|
|
<div class="card widget">
|
|
<div class="card-header">
|
|
<button class="btn btn-sm widget-title" data-toggle="collapse" data-target="#[to be set]">
|
|
Collapsible Group Item
|
|
</button>
|
|
|
|
<div class="widget-header-actions"></div>
|
|
</div>
|
|
|
|
<div id="[to be set]" class="collapse body-wrapper" style="transition: none;">
|
|
<div class="card-body"></div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
class StandardWidget {
|
|
/**
|
|
* @param {TabContext} ctx
|
|
* @param {Options} options
|
|
* @param {object} sidebarState
|
|
*/
|
|
constructor(ctx, options, sidebarState) {
|
|
this.ctx = ctx;
|
|
// construct in camelCase
|
|
this.widgetName = this.constructor.name.substr(0, 1).toLowerCase() + this.constructor.name.substr(1);
|
|
this.widgetOptions = options.getJson(this.widgetName) || {};
|
|
this.state = sidebarState.widgets.find(s => s.name === this.widgetName) || {
|
|
expanded: this.widgetOptions.expanded
|
|
};
|
|
}
|
|
|
|
getWidgetTitle() { return "Untitled widget"; }
|
|
|
|
getHeaderActions() { return []; }
|
|
|
|
getMaxHeight() { return null; }
|
|
|
|
getPosition() { return this.widgetOptions.position; }
|
|
|
|
async render() {
|
|
const widgetId = `tab-${this.ctx.tabId}-widget-${this.widgetName}`;
|
|
|
|
this.$widget = $(WIDGET_TPL);
|
|
this.$widget.find('[data-target]').attr('data-target', "#" + widgetId);
|
|
|
|
this.$bodyWrapper = this.$widget.find('.body-wrapper');
|
|
this.$bodyWrapper.attr('id', widgetId);
|
|
|
|
if (this.state.expanded) {
|
|
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.$widget.on('shown.bs.collapse', () => this.renderBody());
|
|
this.$widget.on('shown.bs.collapse', () => this.ctx.stateChanged());
|
|
this.$widget.on('hidden.bs.collapse', () => this.ctx.stateChanged());
|
|
this.$title = this.$widget.find('.widget-title');
|
|
this.$title.text(this.getWidgetTitle());
|
|
this.$headerActions = this.$widget.find('.widget-header-actions');
|
|
this.$headerActions.append(...this.getHeaderActions());
|
|
|
|
await this.renderBody();
|
|
|
|
return this.$widget;
|
|
}
|
|
|
|
async renderBody() {
|
|
if (!this.isExpanded() || this.rendered) {
|
|
return;
|
|
}
|
|
|
|
this.rendered = true;
|
|
|
|
await this.doRenderBody();
|
|
}
|
|
|
|
/** for overriding */
|
|
async doRenderBody() {}
|
|
|
|
async isEnabled() {
|
|
const label = await this.ctx.note.getLabelValue(this.widgetName);
|
|
|
|
if (label === 'enabled') {
|
|
return true;
|
|
} else if (label === 'disabled') {
|
|
return false;
|
|
}
|
|
else {
|
|
return this.widgetOptions.enabled;
|
|
}
|
|
}
|
|
|
|
isExpanded() {
|
|
return this.$bodyWrapper.hasClass("show");
|
|
}
|
|
|
|
getWidgetState() {
|
|
return {
|
|
name: this.widgetName,
|
|
expanded: this.isExpanded()
|
|
};
|
|
}
|
|
|
|
syncDataReceived(syncData) {}
|
|
|
|
cleanup() {}
|
|
}
|
|
|
|
export default StandardWidget; |