2019-08-23 05:31:02 +08:00
|
|
|
import optionsInit from "../services/options_init.js";
|
|
|
|
|
2019-08-16 03:08:41 +08:00
|
|
|
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>
|
|
|
|
|
2019-08-16 03:18:33 +08:00
|
|
|
<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>
|
|
|
|
`;
|
|
|
|
|
|
|
|
class StandardWidget {
|
|
|
|
/**
|
|
|
|
* @param {TabContext} ctx
|
|
|
|
* @param {object} state
|
|
|
|
*/
|
2019-08-17 03:29:44 +08:00
|
|
|
constructor(ctx, state) {
|
2019-08-16 03:08:41 +08:00
|
|
|
this.ctx = ctx;
|
2019-08-23 05:31:02 +08:00
|
|
|
this.state = state;
|
|
|
|
// construct in camelCase
|
|
|
|
this.widgetName = this.constructor.name.substr(0, 1).toLowerCase() + this.constructor.name.substr(1);
|
|
|
|
|
|
|
|
}
|
2019-08-16 03:18:33 +08:00
|
|
|
|
2019-08-23 05:31:02 +08:00
|
|
|
getWidgetTitle() { return "Untitled widget"; }
|
|
|
|
|
|
|
|
getHeaderActions() { return []; }
|
|
|
|
|
|
|
|
getMaxHeight() { return null; }
|
|
|
|
|
|
|
|
async render() {
|
|
|
|
const widgetId = `tab-${this.ctx.tabId}-widget-${this.widgetName}`;
|
2019-08-16 03:08:41 +08:00
|
|
|
|
|
|
|
this.$widget = $(WIDGET_TPL);
|
2019-08-16 03:18:33 +08:00
|
|
|
this.$widget.find('[data-target]').attr('data-target', "#" + widgetId);
|
2019-08-16 03:08:41 +08:00
|
|
|
|
|
|
|
this.$bodyWrapper = this.$widget.find('.body-wrapper');
|
2019-08-16 03:18:33 +08:00
|
|
|
this.$bodyWrapper.attr('id', widgetId);
|
2019-08-16 03:08:41 +08:00
|
|
|
|
2019-08-23 05:31:02 +08:00
|
|
|
if (this.state && this.state.expanded) {
|
2019-08-17 03:29:44 +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.$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');
|
2019-08-17 16:45:20 +08:00
|
|
|
this.$title.text(this.getWidgetTitle());
|
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());
|
|
|
|
|
2019-08-23 05:31:02 +08:00
|
|
|
await this.renderBody();
|
2019-08-17 16:45:20 +08:00
|
|
|
|
2019-08-23 05:31:02 +08:00
|
|
|
return this.$widget;
|
|
|
|
}
|
2019-08-20 02:59:40 +08:00
|
|
|
|
2019-08-16 03:08:41 +08:00
|
|
|
async renderBody() {
|
2019-08-23 02:58:43 +08:00
|
|
|
if (!this.isExpanded() || this.rendered) {
|
2019-08-16 03:08:41 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.rendered = true;
|
|
|
|
|
|
|
|
await this.doRenderBody();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** for overriding */
|
|
|
|
async doRenderBody() {}
|
|
|
|
|
2019-08-23 05:31:02 +08:00
|
|
|
async isEnabled() {
|
|
|
|
const option = await optionsInit.getJsonOption(this.widgetName + 'Widget');
|
|
|
|
|
|
|
|
return option ? option.enabled : true;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
getWidgetState() {
|
|
|
|
return {
|
2019-08-16 03:18:33 +08:00
|
|
|
name: this.widgetName,
|
2019-08-23 02:58:43 +08:00
|
|
|
expanded: this.isExpanded()
|
2019-08-16 03:08:41 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
syncDataReceived(syncData) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default StandardWidget;
|