Skip to content

feat: table sort change output #1438

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions projects/components/src/table/table.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,9 @@ export class TableComponent
@Output()
public readonly columnConfigsChange: EventEmitter<TableColumnConfig[]> = new EventEmitter<TableColumnConfig[]>();

@Output()
public readonly sortChange: EventEmitter<SortedColumn> = new EventEmitter<SortedColumn>();

@ViewChild(PaginatorComponent)
public paginator?: PaginatorComponent;

Expand Down Expand Up @@ -537,10 +540,12 @@ export class TableComponent

public onSortChange(direction: TableSortDirection, columnConfig: TableColumnConfigExtended): void {
if (TableCdkColumnUtil.isColumnSortable(columnConfig)) {
this.updateSort({
const sortedColumn: SortedColumn = {
column: columnConfig,
direction: direction
});
};
this.sortChange.emit(sortedColumn);
this.updateSort(sortedColumn);
}

if (this.syncWithUrl) {
Expand Down Expand Up @@ -775,7 +780,7 @@ export class TableComponent
}
}

interface SortedColumn {
export interface SortedColumn {
column: TableColumnConfigExtended;
direction?: TableSortDirection;
}
Expand Down