Notes/src/public/app/widgets/collapsible_widget.js

39 lines
1.0 KiB
JavaScript
Raw Normal View History

2021-05-22 12:35:41 +02:00
import NoteContextAwareWidget from "./note_context_aware_widget.js";
2019-08-15 21:08:41 +02:00
const WIDGET_TPL = `
<div class="card widget">
<div class="card-header"></div>
2019-08-15 21:08:41 +02:00
<div id="[to be set]" class="body-wrapper">
2019-08-15 21:08:41 +02:00
<div class="card-body"></div>
</div>
</div>`;
2019-08-15 21:08:41 +02:00
2021-05-22 12:35:41 +02:00
export default class CollapsibleWidget extends NoteContextAwareWidget {
2020-03-16 22:14:18 +01:00
get widgetTitle() { return "Untitled widget"; }
2020-03-16 22:14:18 +01:00
get help() { return {}; }
2020-02-02 20:02:08 +01:00
doRender() {
2019-08-15 21:08:41 +02:00
this.$widget = $(WIDGET_TPL);
2020-02-02 18:46:50 +01:00
this.$widget.find('[data-target]').attr('data-target', "#" + this.componentId);
2019-08-15 21:08:41 +02:00
this.$bodyWrapper = this.$widget.find('.body-wrapper');
2020-02-25 16:31:44 +01:00
this.$bodyWrapper.attr('id', this.componentId); // for toggle to work we need id
2019-08-15 21:08:41 +02:00
this.$body = this.$bodyWrapper.find('.card-body');
this.$title = this.$widget.find('.card-header');
2020-03-16 22:14:18 +01:00
this.$title.text(this.widgetTitle);
2020-02-02 20:02:08 +01:00
this.initialized = this.doRenderBody();
}
2019-08-15 21:08:41 +02:00
/** for overriding */
async doRenderBody() {}
2019-08-22 20:58:43 +02:00
isExpanded() {
2019-08-16 21:52:36 +02:00
return this.$bodyWrapper.hasClass("show");
2019-08-15 21:08:41 +02:00
}
2020-07-03 22:27:45 +02:00
}