2021-05-22 12:35:41 +02:00
|
|
|
import NoteContextAwareWidget from "./note_context_aware_widget.js";
|
2024-10-24 18:14:17 +03:00
|
|
|
import toastService from "../services/toast.js";
|
|
|
|
import { t } from "../services/i18n.js";
|
2019-08-22 23:31:02 +02:00
|
|
|
|
2019-08-15 21:08:41 +02:00
|
|
|
const WIDGET_TPL = `
|
|
|
|
<div class="card widget">
|
2023-11-03 10:44:14 +01:00
|
|
|
<div class="card-header">
|
|
|
|
<div class="card-header-title"></div>
|
|
|
|
<div class="card-header-buttons"></div>
|
|
|
|
</div>
|
2019-08-15 21:08:41 +02:00
|
|
|
|
2021-06-03 23:34:40 +02:00
|
|
|
<div id="[to be set]" class="body-wrapper">
|
2019-08-15 21:08:41 +02:00
|
|
|
<div class="card-body"></div>
|
|
|
|
</div>
|
2020-03-07 20:41:03 +01:00
|
|
|
</div>`;
|
2019-08-15 21:08:41 +02:00
|
|
|
|
2023-08-21 04:15:53 -04:00
|
|
|
/**
|
|
|
|
* This widget manages rendering panels in the right-hand pane.
|
|
|
|
* @extends {NoteContextAwareWidget}
|
|
|
|
*/
|
|
|
|
class RightPanelWidget extends NoteContextAwareWidget {
|
|
|
|
/** Title to show in the panel. */
|
2020-03-16 22:14:18 +01:00
|
|
|
get widgetTitle() { return "Untitled widget"; }
|
2019-08-22 23:31:02 +02:00
|
|
|
|
2023-11-03 10:44:14 +01:00
|
|
|
get widgetButtons() { return []; }
|
|
|
|
|
2020-03-16 22:14:18 +01:00
|
|
|
get help() { return {}; }
|
2019-09-09 21:23:04 +02:00
|
|
|
|
2023-11-03 10:44:14 +01:00
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
|
|
|
|
this.child(...this.widgetButtons);
|
|
|
|
}
|
|
|
|
|
2023-08-21 04:15:53 -04:00
|
|
|
/**
|
2023-11-03 10:44:14 +01:00
|
|
|
* Do not override this method unless you know what you're doing.
|
2023-08-21 04:15:53 -04:00
|
|
|
* Do not override this method unless you know what you're doing.
|
|
|
|
*/
|
2020-02-02 20:02:08 +01:00
|
|
|
doRender() {
|
2019-08-15 21:08:41 +02:00
|
|
|
this.$widget = $(WIDGET_TPL);
|
2021-06-13 22:55:31 +02:00
|
|
|
this.contentSized();
|
2022-12-21 15:19:05 +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
|
2020-03-01 20:49:11 +01:00
|
|
|
|
2019-08-15 21:08:41 +02:00
|
|
|
this.$body = this.$bodyWrapper.find('.card-body');
|
|
|
|
|
2023-11-03 10:44:14 +01:00
|
|
|
this.$title = this.$widget.find('.card-header .card-header-title');
|
2020-03-16 22:14:18 +01:00
|
|
|
this.$title.text(this.widgetTitle);
|
2019-09-09 21:23:04 +02:00
|
|
|
|
2023-11-03 10:44:14 +01:00
|
|
|
this.$buttons = this.$widget.find('.card-header .card-header-buttons');
|
|
|
|
this.$buttons.empty();
|
|
|
|
|
|
|
|
for (const buttonWidget of this.children) {
|
|
|
|
this.$buttons.append(buttonWidget.render());
|
|
|
|
}
|
|
|
|
|
2024-10-24 18:14:17 +03:00
|
|
|
this.initialized = this.doRenderBody().catch(e => {
|
2024-10-25 20:50:13 +03:00
|
|
|
this.logRenderingError(e);
|
2024-10-24 18:14:17 +03:00
|
|
|
});
|
2020-03-07 14:31:25 +01:00
|
|
|
}
|
|
|
|
|
2023-08-21 04:15:53 -04:00
|
|
|
/**
|
2023-11-03 10:44:14 +01:00
|
|
|
* Method used for rendering the body of the widget (via existing this.$body)
|
|
|
|
*
|
2023-08-21 04:15:53 -04:00
|
|
|
* Your class should override this method.
|
2023-11-03 10:44:14 +01:00
|
|
|
* @returns {Promise|undefined} if widget needs async operation to initialize, it can return a Promise
|
2023-08-21 04:15:53 -04:00
|
|
|
*/
|
2019-08-15 21:08:41 +02:00
|
|
|
async doRenderBody() {}
|
2020-07-03 22:27:45 +02:00
|
|
|
}
|
2023-08-21 04:15:53 -04:00
|
|
|
|
2023-11-03 10:44:14 +01:00
|
|
|
export default RightPanelWidget;
|