@krisdages/aurelia-bootstrap
Version:
Bootstrap components written in Aurelia.
53 lines (41 loc) • 1.3 kB
JavaScript
import {inject, bindable, bindingMode} from "aurelia-framework";
export class AubsBtnRadioCustomAttribute {
model;
value;
constructor(element) {
this.element = element;
if(this.element.tagName !== 'BUTTON' && this.element.tagName !== 'A'){
throw new Error("The aubs-btn-radio attribute can only be used in button and anchor elements");
}
this.clickedListener = () => this.buttonClicked();
}
bind() {
if(this.value == null || this.value == undefined){
throw new Error('Must provide a value for the radio button');
}
}
attached() {
this.element.addEventListener('click', this.clickedListener);
this.setClass();
}
detached(){
this.element.removeEventListener('click', this.clickedListener);
}
modelChanged() {
this.setClass();
}
buttonClicked() {
if(this.model == this.value) {
return;
}
this.model = this.value;
}
setClass() {
if (this.model == this.value) {
this.element.classList.add('active');
} else {
this.element.classList.remove('active');
}
}
}