salix/front/core/components/smart-table/index.js

541 lines
17 KiB
JavaScript
Raw Normal View History

2021-10-23 12:26:42 +00:00
import ngModule from '../../module';
import Component from '../../lib/component';
2021-10-26 15:16:01 +00:00
import {buildFilter} from 'vn-loopback/util/filter';
import angular from 'angular';
import {camelToKebab} from '../../lib/string';
import './style.scss';
import './table.scss';
2021-10-23 12:26:42 +00:00
export default class SmartTable extends Component {
constructor($element, $, $transclude) {
super($element, $);
this.currentUserId = window.localStorage.currentUserWorkerId;
2021-10-23 12:26:42 +00:00
this.$transclude = $transclude;
2021-10-25 12:20:17 +00:00
this.sortCriteria = [];
2021-11-12 13:15:35 +00:00
this.$inputsScope;
this.columns = [];
2021-10-25 15:18:57 +00:00
this.autoSave = false;
this.transclude();
2021-10-23 12:26:42 +00:00
}
$onDestroy() {
const styleElement = document.querySelector('style[id="smart-table"]');
if (this.$.css && styleElement)
styleElement.parentNode.removeChild(styleElement);
}
get options() {
return this._options;
}
set options(options) {
this._options = options;
if (!options) return;
if (options.defaultSearch)
this.displaySearch();
const activeButtons = options.activeButtons;
const missingId = activeButtons && activeButtons.shownColumns && !this.viewConfigId;
if (missingId)
throw new Error('vnSmartTable: View identifier not defined');
}
2021-10-23 12:26:42 +00:00
get model() {
return this._model;
}
set model(value) {
this._model = value;
if (value) {
2021-10-23 12:26:42 +00:00
this.$.model = value;
this.defaultOrder();
}
}
getDefaultViewConfig() {
const url = 'DefaultViewConfigs';
const filter = {where: {tableCode: this.viewConfigId}};
return this.$http.get(url, {filter})
.then(res => {
if (res && res.data.length)
return res.data[0].columns;
});
}
get viewConfig() {
return this._viewConfig;
}
set viewConfig(value) {
this._viewConfig = value;
if (!value) return;
if (!value.length) {
this.getDefaultViewConfig().then(columns => {
const defaultViewConfig = columns ? columns : {};
const userViewModel = this.$.userViewModel;
for (const column of this.columns) {
if (defaultViewConfig[column.field] == undefined)
defaultViewConfig[column.field] = true;
}
userViewModel.insert({
userFk: this.currentUserId,
tableConfig: this.viewConfigId,
configuration: defaultViewConfig
});
}).finally(() => this.applyViewConfig());
} else
this.applyViewConfig();
}
2021-10-25 15:18:57 +00:00
get checkedRows() {
const model = this.model;
if (model && model.data)
return model.data.filter(row => row.$checked);
return null;
}
get checkAll() {
return this._checkAll;
}
set checkAll(value) {
this._checkAll = value;
if (value !== undefined) {
const shownColumns = this.viewConfig[0].configuration;
for (let param in shownColumns)
shownColumns[param] = value;
}
}
transclude() {
const slotTable = this.element.querySelector('#table');
2021-11-12 13:15:35 +00:00
this.$transclude($clone => {
const table = $clone[0];
slotTable.appendChild(table);
this.registerColumns();
2021-11-12 13:15:35 +00:00
this.emptyDataRows();
}, null, 'table');
}
saveViewConfig() {
const userViewModel = this.$.userViewModel;
const [viewConfig] = userViewModel.data;
viewConfig.configuration = Object.assign({}, viewConfig.configuration);
userViewModel.save()
.then(() => this.vnApp.showSuccess(this.$t('Data saved!')))
2021-11-12 13:15:35 +00:00
.then(() => this.applyViewConfig())
.then(() => this.$.smartTableColumns.hide());
}
applyViewConfig() {
const userViewModel = this.$.userViewModel;
const [viewConfig] = userViewModel.data;
const selectors = [];
for (const column of this.columns) {
if (viewConfig.configuration[column.field] == false) {
const baseSelector = `smart-table[view-config-id="${this.viewConfigId}"] table`;
selectors.push(`${baseSelector} thead > tr > th:nth-child(${column.index + 1})`);
selectors.push(`${baseSelector} tbody > tr > td:nth-child(${column.index + 1})`);
}
}
const styleElement = document.querySelector('style[id="smart-table"]');
if (styleElement)
styleElement.parentNode.removeChild(styleElement);
if (selectors.length) {
const rule = selectors.join(', ') + '{display: none}';
this.$.css = document.createElement('style');
this.$.css.setAttribute('id', 'smart-table');
document.head.appendChild(this.$.css);
this.$.css.appendChild(document.createTextNode(rule));
}
}
defaultOrder() {
const order = this.model.order;
if (!order) return;
const orderFields = order.split(', ');
for (const fieldString of orderFields) {
const field = fieldString.split(' ');
const fieldName = field[0];
let sortType = 'ASC';
if (field.length === 2)
sortType = field[1];
const priority = this.sortCriteria.length + 1;
const column = this.columns.find(column => column.field == fieldName);
if (column) {
this.sortCriteria.push({field: fieldName, sortType: sortType, priority: priority});
const isASC = sortType == 'ASC';
const isDESC = sortType == 'DESC';
if (isDESC) {
column.element.classList.remove('asc');
column.element.classList.add('desc');
}
if (isASC) {
column.element.classList.remove('desc');
column.element.classList.add('asc');
}
this.setPriority(column.element, priority);
}
}
}
2021-10-23 12:26:42 +00:00
registerColumns() {
const header = this.element.querySelector('thead > tr');
if (!header) return;
const columns = header.querySelectorAll('th');
// Click handler
for (const [index, column] of columns.entries()) {
2021-10-23 12:26:42 +00:00
const field = column.getAttribute('field');
if (field) {
const columnElement = angular.element(column);
const caption = columnElement.text().trim();
this.columns.push({field, caption, index, element: column});
2021-10-23 12:26:42 +00:00
column.addEventListener('click', () => this.orderHandler(column));
}
2021-10-23 12:26:42 +00:00
}
}
2021-11-12 13:15:35 +00:00
emptyDataRows() {
const header = this.element.querySelector('thead > tr');
const columns = header.querySelectorAll('th');
const tbody = this.element.querySelector('tbody');
if (tbody) {
const noSearch = this.$compile(`
<tr class="empty-rows" ng-if="!model.data">
<td colspan="${columns.length}" translate>Enter a new search</td>
</tr>
`)(this.$);
tbody.appendChild(noSearch[0]);
const noRows = this.$compile(`
<tr class="empty-rows" ng-if="model.data.length == 0">
<td colspan="${columns.length}" translate>No data</td>
</tr>
`)(this.$);
tbody.appendChild(noRows[0]);
}
}
2021-10-23 12:26:42 +00:00
orderHandler(element) {
const field = element.getAttribute('field');
2021-10-25 12:20:17 +00:00
const existingCriteria = this.sortCriteria.find(criteria => {
return criteria.field == field;
});
2021-10-26 07:18:31 +00:00
const isASC = existingCriteria && existingCriteria.sortType == 'ASC';
const isDESC = existingCriteria && existingCriteria.sortType == 'DESC';
2021-10-25 12:20:17 +00:00
if (!existingCriteria) {
const priority = this.sortCriteria.length + 1;
2022-01-20 09:43:03 +00:00
this.sortCriteria.push({field: field, sortType: 'ASC', priority: priority});
2021-10-25 12:20:17 +00:00
element.classList.remove('desc');
element.classList.add('asc');
this.setPriority(element, priority);
2021-10-25 12:20:17 +00:00
}
2021-10-26 07:18:31 +00:00
if (isDESC) {
2021-10-25 12:20:17 +00:00
this.sortCriteria.splice(this.sortCriteria.findIndex(criteria => {
return criteria.field == field;
}), 1);
element.classList.remove('desc');
element.classList.remove('asc');
element.querySelector('sort-priority').remove();
2021-10-25 12:20:17 +00:00
}
2021-10-26 15:16:01 +00:00
2021-10-26 07:18:31 +00:00
if (isASC) {
2021-10-25 12:20:17 +00:00
existingCriteria.sortType = 'DESC';
element.classList.remove('asc');
element.classList.add('desc');
}
let priority = 0;
for (const criteria of this.sortCriteria) {
const column = this.columns.find(column => column.field == criteria.field);
if (column) {
criteria.priority = priority;
priority++;
column.element.querySelector('sort-priority').remove();
this.setPriority(column.element, priority);
}
}
2021-10-25 12:20:17 +00:00
this.applySort();
}
setPriority(column, priority) {
const sortPriority = document.createElement('sort-priority');
sortPriority.setAttribute('class', 'sort-priority');
sortPriority.innerHTML = priority;
column.appendChild(sortPriority);
}
2021-10-26 15:16:01 +00:00
displaySearch() {
const header = this.element.querySelector('thead > tr');
if (!header) return;
const tbody = this.element.querySelector('tbody');
const columns = header.querySelectorAll('th');
const hasSearchRow = tbody.querySelector('tr#searchRow');
if (hasSearchRow) {
2021-11-12 13:15:35 +00:00
if (this.$inputsScope)
this.$inputsScope.$destroy();
return hasSearchRow.remove();
}
2021-10-26 15:16:01 +00:00
const searchRow = document.createElement('tr');
searchRow.setAttribute('id', 'searchRow');
2021-11-12 13:15:35 +00:00
this.$inputsScope = this.$.$new();
2021-10-26 15:16:01 +00:00
for (let column of columns) {
const field = column.getAttribute('field');
const cell = document.createElement('td');
2022-05-31 11:36:27 +00:00
cell.setAttribute('centered', '');
2021-10-26 15:16:01 +00:00
if (field) {
let input;
let options;
const columnOptions = this.options && this.options.columns;
if (columnOptions)
options = columnOptions.find(column => column.field == field);
if (options && options.searchable == false) {
searchRow.appendChild(cell);
continue;
}
2022-06-07 12:59:18 +00:00
input = this.$compile(`
<vn-textfield
class="dense"
name="${field}"
ng-model="searchProps['${field}']"
ng-keydown="$ctrl.searchWithEvent($event, '${field}')"
clear-disabled="true"
/>`)(this.$inputsScope);
if (options && options.autocomplete) {
let props = ``;
const autocomplete = options.autocomplete;
for (const prop in autocomplete)
props += `${camelToKebab(prop)}="${autocomplete[prop]}"\n`;
input = this.$compile(`
<vn-autocomplete
class="dense"
2021-10-26 15:16:01 +00:00
name="${field}"
ng-model="searchProps['${field}']"
${props}
on-change="$ctrl.searchByColumn('${field}')"
2021-10-26 15:16:01 +00:00
clear-disabled="true"
2021-11-12 13:15:35 +00:00
/>`)(this.$inputsScope);
2022-06-07 12:59:18 +00:00
}
if (options && options.checkbox) {
2022-05-31 11:36:27 +00:00
input = this.$compile(`
<vn-check
class="dense"
name="${field}"
ng-model="searchProps['${field}']"
on-change="$ctrl.searchByColumn('${field}')"
triple-state="true"
/>`)(this.$inputsScope);
2022-06-07 12:59:18 +00:00
}
if (options && options.datepicker) {
2022-05-31 11:36:27 +00:00
input = this.$compile(`
<vn-date-picker
class="dense"
name="${field}"
ng-model="searchProps['${field}']"
on-change="$ctrl.searchByColumn('${field}')"
/>`)(this.$inputsScope);
}
2022-06-07 12:59:18 +00:00
2021-10-26 15:16:01 +00:00
cell.appendChild(input[0]);
}
searchRow.appendChild(cell);
}
tbody.prepend(searchRow);
}
searchWithEvent($event, field) {
2021-10-26 15:16:01 +00:00
if ($event.key != 'Enter') return;
this.searchByColumn(field);
}
searchByColumn(field) {
2021-11-12 13:15:35 +00:00
const searchCriteria = this.$inputsScope.searchProps[field];
2022-05-31 11:36:27 +00:00
const emptySearch = searchCriteria === '' || searchCriteria == null;
2021-10-26 15:16:01 +00:00
const filters = this.filterSanitizer(field);
if (filters && filters.userFilter)
this.model.userFilter = filters.userFilter;
if (!emptySearch)
2021-11-12 13:15:35 +00:00
this.addFilter(field, this.$inputsScope.searchProps[field]);
2021-10-26 15:16:01 +00:00
else this.model.refresh();
}
addFilter(field, value) {
let where = {[field]: value};
if (this.exprBuilder) {
where = buildFilter(where, (param, value) =>
this.exprBuilder({param, value})
);
}
this.model.addFilter({where});
}
2021-10-25 12:20:17 +00:00
applySort() {
let order = this.sortCriteria.map(criteria => `${criteria.field} ${criteria.sortType}`);
order = order.join(', ');
if (order)
this.model.order = order;
this.model.refresh();
2021-10-23 12:26:42 +00:00
}
2021-10-26 15:16:01 +00:00
filterSanitizer(field) {
const userFilter = this.model.userFilter;
const userParams = this.model.userParams;
const where = userFilter && userFilter.where;
if (this.exprBuilder) {
const param = this.exprBuilder({
param: field,
value: null
});
if (param) [field] = Object.keys(param);
}
if (!where) return;
const whereKeys = Object.keys(where);
for (let key of whereKeys) {
removeProp(where, field, key);
if (Object.keys(where).length == 0)
2021-10-26 15:16:01 +00:00
delete userFilter.where;
}
function removeProp(obj, targetProp, prop) {
if (prop == targetProp)
delete obj[prop];
2021-10-26 15:16:01 +00:00
if (prop === 'and' || prop === 'or') {
const arrayCopy = obj[prop].slice();
for (let param of arrayCopy) {
2021-10-26 15:16:01 +00:00
const [key] = Object.keys(param);
const index = obj[prop].findIndex(param => {
return Object.keys(param)[0] == key;
});
if (key == targetProp)
obj[prop].splice(index, 1);
2021-10-26 15:16:01 +00:00
if (param[key] instanceof Array)
removeProp(param, field, key);
if (Object.keys(param).length == 0)
obj[prop].splice(index, 1);
2021-10-26 15:16:01 +00:00
}
if (obj[prop].length == 0)
delete obj[prop];
2021-10-26 15:16:01 +00:00
}
}
return {userFilter, userParams};
}
removeFilter() {
2021-10-26 15:16:01 +00:00
this.model.applyFilter(userFilter, userParams);
}
2021-10-23 12:26:42 +00:00
createRow() {
let data = {};
if (this.defaultNewData)
data = this.defaultNewData();
this.model.insert(data);
2021-10-23 12:26:42 +00:00
}
deleteAll() {
2021-10-26 15:16:01 +00:00
for (let row of this.checkedRows)
2021-10-25 15:18:57 +00:00
this.model.removeRow(row);
2021-10-23 12:26:42 +00:00
if (this.autoSave)
2021-10-24 11:35:37 +00:00
this.saveAll();
2021-10-23 12:26:42 +00:00
}
saveAll() {
const model = this.model;
2021-10-25 15:18:57 +00:00
2021-10-23 12:26:42 +00:00
if (!model.isChanged)
return this.vnApp.showError(this.$t('No changes to save'));
return this.model.save()
2021-10-23 12:26:42 +00:00
.then(() => this.vnApp.showSuccess(this.$t('Data saved!')));
}
refresh() {
this.isRefreshing = true;
this.model.refresh()
.then(() => this.isRefreshing = false);
}
2021-10-23 12:26:42 +00:00
}
SmartTable.$inject = ['$element', '$scope', '$transclude'];
ngModule.vnComponent('smartTable', {
template: require('./index.html'),
controller: SmartTable,
transclude: {
table: '?slotTable',
2022-05-03 12:08:46 +00:00
actions: '?slotActions',
pagination: '?slotPagination'
2021-10-23 12:26:42 +00:00
},
bindings: {
model: '<?',
viewConfigId: '@?',
2021-10-26 15:16:01 +00:00
autoSave: '<?',
exprBuilder: '&?',
defaultNewData: '&?',
options: '<?'
2021-10-23 12:26:42 +00:00
}
});