salix/client/core/src/multi-check/multi-check.js

70 lines
1.7 KiB
JavaScript
Raw Normal View History

2017-06-26 08:52:22 +00:00
import {module} from '../module';
import './multi-check.scss';
export default class MultiCheck {
2017-06-26 12:41:08 +00:00
constructor() {
this._checkAll = 0;
2017-06-26 11:53:52 +00:00
this.type = {};
this.labelType = null;
this.showDropDown = false;
2017-06-26 08:52:22 +00:00
}
get checkAll() {
return this._checkAll;
}
set checkAll(value) {
this._checkAll = value;
2017-06-26 11:53:52 +00:00
this.switchChecks();
2017-06-26 08:52:22 +00:00
}
2017-06-26 11:53:52 +00:00
switchChecks() {
this.models.forEach(
el => {
let checked;
if (this.labelType) {
if (this.labelType.length > 3 && this.labelType.substr(0, 3) === 'no-') {
checked = el[this.labelType.replace('no-', '')] ? false : true;
} else {
checked = el[this.labelType] ? true : false;
}
} else {
2017-06-26 12:41:08 +00:00
checked = this.checkAll === 1;
2017-06-26 11:53:52 +00:00
}
el.checked = checked;
}
);
2017-06-26 08:52:22 +00:00
}
2017-06-26 11:53:52 +00:00
$doCheck() {
if (this.type && this.type.id) {
switch (this.type.id) {
case 'all':
this.labelType = null;
2017-06-26 12:41:08 +00:00
this.checkAll = 1;
2017-06-26 11:53:52 +00:00
break;
case 'any':
this.labelType = null;
2017-06-26 12:41:08 +00:00
this.checkAll = 0;
2017-06-26 11:53:52 +00:00
break;
default:
this.labelType = this.type.id;
2017-06-26 12:41:08 +00:00
this.checkAll = 2;
2017-06-26 11:53:52 +00:00
break;
}
this.type = {};
2017-06-26 12:52:43 +00:00
this.labelType = null;
2017-06-26 11:53:52 +00:00
}
2017-06-26 08:52:22 +00:00
}
}
2017-06-26 12:41:08 +00:00
MultiCheck.$inject = [];
2017-06-26 08:52:22 +00:00
module.component('vnMultiCheck', {
template: require('./multi-check.html'),
controller: MultiCheck,
bindings: {
options: '<',
2017-06-26 11:53:52 +00:00
models: '=',
2017-06-26 08:52:22 +00:00
className: '@?'
}
});