salix/front/core/components/th/index.js

79 lines
1.6 KiB
JavaScript
Raw Permalink Normal View History

import ngModule from '../../module';
2021-01-12 06:45:13 +00:00
import './style.scss';
2020-11-20 14:05:57 +00:00
export default class Th {
constructor($element) {
this._order = 'ASC';
this.column = $element[0];
2019-02-10 21:52:35 +00:00
$element.on('click', () => this.onToggleOrder());
}
$onInit() {
if (!this.field) return;
this.updateArrow();
}
set order(order) {
this._order = order;
this.table.setOrder(this.field, order);
}
get order() {
return this._order;
}
get field() {
return this.column.getAttribute('field');
}
2019-02-10 21:52:35 +00:00
/**
2019-04-05 13:20:12 +00:00
* Toggle order ASC/DESC
*/
toggleOrder() {
2019-04-05 13:20:12 +00:00
if (this.order === 'ASC')
this.order = 'DESC';
2019-04-05 13:20:12 +00:00
else
this.order = 'ASC';
}
2019-02-10 21:52:35 +00:00
/**
2019-04-05 13:20:12 +00:00
* Applies a new filter order to the model and
* updates the cell arrow
*/
onToggleOrder() {
if (!this.field) return;
2019-04-05 13:20:12 +00:00
if (this.table.field == this.field)
this.toggleOrder();
2019-04-05 13:20:12 +00:00
else
this.table.setOrder(this.field, this.order);
2019-04-05 13:20:12 +00:00
this.updateArrow();
2018-07-16 06:00:04 +00:00
this.table.applyOrder(this.field, this.order);
}
2019-02-10 21:52:35 +00:00
/**
2019-04-05 13:20:12 +00:00
* Set cell class to asc/desc
*/
updateArrow() {
this.column.classList.remove('asc', 'desc');
2019-04-05 13:20:12 +00:00
if (this.order === 'DESC')
this.column.classList.add('desc');
2019-04-05 13:20:12 +00:00
else
this.column.classList.add('asc');
}
}
2020-11-20 14:05:57 +00:00
Th.$inject = ['$element'];
ngModule.vnComponent('vnTh', {
2020-11-20 14:05:57 +00:00
template: require('./index.html'),
transclude: true,
controller: Th,
require: {
table: '^^vnTable'
}
});