| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // TODO: This file was created by bulk-decaffeinate.
- // Sanity-check the conversion and remove this comment.
- /*
- * decaffeinate suggestions:
- * DS206: Consider reworking classes to avoid initClass
- * Full docs: https://github.com/decaffeinate/decaffeinate/blob/main/docs/suggestions.md
- */
- app.views.Notice = class Notice extends app.View {
- static initClass() {
- this.className = "_notice";
- this.attributes = { role: "alert" };
- }
- constructor(type, ...args) {
- super();
- this.type = type;
- this.args = args || [];
- this.init0(); // needs this.args
- this.refreshElements();
- }
- init0() {
- this.activate();
- }
- activate() {
- if (super.activate(...arguments)) {
- this.show();
- }
- }
- deactivate() {
- if (super.deactivate(...arguments)) {
- this.hide();
- }
- }
- show() {
- this.html(this.tmpl(`${this.type}Notice`, ...this.args));
- this.prependTo(app.el);
- }
- hide() {
- $.remove(this.el);
- }
- };
- app.views.Notice.initClass();
|