mirror of https://github.com/freeCodeCamp/devdocs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
648 B
38 lines
648 B
app.views.Notice = class Notice extends app.View {
|
|
static className = "_notice";
|
|
static 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);
|
|
}
|
|
};
|