refactor(datatable): ♻️ Suddivisione in metodi

This commit is contained in:
Maicol Battistini 2021-12-03 15:10:26 +01:00
parent 68f9443658
commit 3ce5e635b9
No known key found for this signature in database
GPG Key ID: 4FDB0F87CDB1D34A
1 changed files with 42 additions and 39 deletions

View File

@ -59,7 +59,20 @@ export default class TableColumn extends Component {
const checkbox = $(vnode.dom) const checkbox = $(vnode.dom)
.children('mwc-checkbox'); .children('mwc-checkbox');
checkbox.on('change', () => { checkbox.on('change', () => this.onCheckboxClicked.bind(this));
}
// Handle click on column (add arrows)
const observer = new MutationObserver(this.onClassChanged.bind(this));
observer.observe(this.element, {
attributes: true,
attributeFilter: ['class']
});
$(this.element).find('.mdc-data-table__filter-textfield').on('input', this.onFilterInput.bind(this));
}
onCheckboxClicked() {
const row: Cash = $(this.element) const row: Cash = $(this.element)
.closest('table') .closest('table')
.find('tbody tr[checkable]'); .find('tbody tr[checkable]');
@ -67,11 +80,9 @@ export default class TableColumn extends Component {
row.addClass('mdc-data-table__row--selected'); row.addClass('mdc-data-table__row--selected');
row.find('mwc-checkbox').prop('checked', checkbox.prop('checked')); row.find('mwc-checkbox').prop('checked', checkbox.prop('checked'));
});
} }
// Handle click on column (add arrows) onClassChanged(mutations: MutationRecord[]) {
const observer = new MutationObserver((mutations) => {
for (const mutation of mutations) { for (const mutation of mutations) {
const {classList} = mutation.target; const {classList} = mutation.target;
const ascendingClass = 'mdc-data-table__header-cell--sorted'; const ascendingClass = 'mdc-data-table__header-cell--sorted';
@ -87,24 +98,16 @@ export default class TableColumn extends Component {
button.show(); button.show();
} }
} }
}); }
observer.observe(this.element, {
attributes: true,
attributeFilter: ['class']
});
$(this.element).find('.mdc-data-table__filter-textfield').on('input', (event: InputEvent) => { onFilterInput(event: InputEvent) {
const index = $(this.element).index(); const index = $(this.element).index();
const rows: Cash = $(this.element) const rows: Cash = $(this.element).closest('table').find('tbody tr');
.closest('table')
.find('tbody tr');
rows.hide(); rows.hide();
rows.filter( rows.filter((index_, element) => $(element)
(index_, element) => $(element)
.find(`td:nth-child(${index + 1})`) .find(`td:nth-child(${index + 1})`)
.text() .text()
.search(event.target.value) !== -1 .search(event.target.value) !== -1
).show(); ).show();
});
} }
} }