Skip to content

Commit

Permalink
feat: 🎸 Total Accumulator hook for totals row (#55)
Browse files Browse the repository at this point in the history
* feat: 🎸 Accumulator event for totals row

* fix: πŸ› Changed values passed to accumulator function

and moved function to hooks.totalAccumulator

* fix: πŸ› Total row set null for column without any number

* fix: Refactor accumulator

- Rename to columnTotal

* fix: πŸ› Prevent showing 0 in total row for Data fieldtype

* fix: Remove hooks object from parent

* fix: Remove separate hooks initialization
  • Loading branch information
SaiFi0102 authored and netchampfaris committed Feb 12, 2019
1 parent 836b13b commit 0f44a51
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 11 deletions.
19 changes: 18 additions & 1 deletion index.html
Expand Up @@ -216,7 +216,24 @@ <h1>FrappΓ© DataTable</h1>
return format($input.value);
}
}
}
},
hooks: {
columnTotal(columnValues, cell) {
if (cell.colIndex === 5) {
// calculated average for 5th column
const sum = columnValues.reduce((acc, value) => {
if (typeof value === 'number') {
return acc + value
}
return acc
}, 0);
return sum / columnValues.length
}
if (cell.colIndex === 2) {
return 'Total'
}
}
}
});
console.log(performance.now() - start);

Expand Down
33 changes: 23 additions & 10 deletions src/body-renderer.js
Expand Up @@ -71,7 +71,7 @@ export default class BodyRenderer {
getTotalRow() {
const columns = this.datamanager.getColumns();
const totalRowTemplate = columns.map(col => {
let content = 0;
let content = null;
if (['_rowIndex', '_checkbox'].includes(col.id)) {
content = '';
}
Expand All @@ -82,18 +82,31 @@ export default class BodyRenderer {
column: col
};
});
const totalRow = this.visibleRows.reduce((acc, prevRow) => {
return acc.map((cell, i) => {

const totalRow = totalRowTemplate.map((cell, i) => {
if (cell.content === '') return cell;

if (this.options.hooks.columnTotal) {
const columnValues = this.visibleRows.map(row => row[i].content);
const result = this.options.hooks.columnTotal.call(this.instance, columnValues, cell);
if (result != null) {
cell.content = result;
return cell;
}
}

cell.content = this.visibleRows.reduce((acc, prevRow) => {
const prevCell = prevRow[i];
if (typeof prevCell.content === 'number') {
cell.content += prevRow[i].content;
if (acc == null) acc = 0;
return acc + prevCell.content;
}
if (!cell.format && prevCell.format) {
cell.format = prevCell.format;
}
return Object.assign({}, cell);
});
}, totalRowTemplate);
return acc;
}, cell.content);

return cell;
});

return totalRow;
}

Expand Down
3 changes: 3 additions & 0 deletions src/defaults.js
Expand Up @@ -38,6 +38,9 @@ export default {
onCheckRow(row) {},
onDestroy() {}
},
hooks: {
columnTotal: null
},
sortIndicator: {
asc: '↑',
desc: '↓',
Expand Down

0 comments on commit 0f44a51

Please sign in to comment.