Browse Source

Refactoring

pull/76/head
Thomas 4 years ago
parent
commit
2d21e30986
  1. 6
      apps/client/src/app/components/transactions-table/transactions-table.component.html
  2. 25
      apps/client/src/app/components/transactions-table/transactions-table.component.ts

6
apps/client/src/app/components/transactions-table/transactions-table.component.html

@ -13,16 +13,16 @@
<input <input
#searchInput #searchInput
name="close-outline" name="close-outline"
placeholder="Search for account, type, symbol or currency..." placeholder="Search for account, currency, symbol or type..."
[formControl]="searchControl" [formControl]="searchControl"
[matAutocomplete]="auto" [matAutocomplete]="autocomplete"
[matChipInputFor]="chipList" [matChipInputFor]="chipList"
[matChipInputSeparatorKeyCodes]="separatorKeysCodes" [matChipInputSeparatorKeyCodes]="separatorKeysCodes"
(matChipInputTokenEnd)="addKeyword($event)" (matChipInputTokenEnd)="addKeyword($event)"
/> />
</mat-chip-list> </mat-chip-list>
<mat-autocomplete <mat-autocomplete
#auto="matAutocomplete" #autocomplete="matAutocomplete"
(optionSelected)="keywordSelected($event)" (optionSelected)="keywordSelected($event)"
> >
<mat-option <mat-option

25
apps/client/src/app/components/transactions-table/transactions-table.component.ts

@ -48,22 +48,22 @@ export class TransactionsTableComponent
@Output() transactionToClone = new EventEmitter<OrderWithAccount>(); @Output() transactionToClone = new EventEmitter<OrderWithAccount>();
@Output() transactionToUpdate = new EventEmitter<OrderWithAccount>(); @Output() transactionToUpdate = new EventEmitter<OrderWithAccount>();
@ViewChild(MatSort) sort: MatSort; @ViewChild('autocomplete') matAutocomplete: MatAutocomplete;
@ViewChild('searchInput') searchInput: ElementRef<HTMLInputElement>; @ViewChild('searchInput') searchInput: ElementRef<HTMLInputElement>;
@ViewChild('auto') matAutocomplete: MatAutocomplete; @ViewChild(MatSort) sort: MatSort;
public dataSource: MatTableDataSource<OrderWithAccount> = new MatTableDataSource(); public dataSource: MatTableDataSource<OrderWithAccount> = new MatTableDataSource();
public defaultDateFormat = DEFAULT_DATE_FORMAT; public defaultDateFormat = DEFAULT_DATE_FORMAT;
public displayedColumns = []; public displayedColumns = [];
public isLoading = true;
public routeQueryParams: Subscription;
public separatorKeysCodes: number[] = [ENTER, COMMA];
public searchKeywords: string[] = [];
public searchControl = new FormControl();
public filteredTransactions$: Subject<string[]> = new BehaviorSubject([]); public filteredTransactions$: Subject<string[]> = new BehaviorSubject([]);
public filteredTransactions: Observable< public filteredTransactions: Observable<
string[] string[]
> = this.filteredTransactions$.asObservable(); > = this.filteredTransactions$.asObservable();
public isLoading = true;
public routeQueryParams: Subscription;
public searchKeywords: string[] = [];
public searchControl = new FormControl();
public separatorKeysCodes: number[] = [ENTER, COMMA];
private allFilteredTransactions: string[]; private allFilteredTransactions: string[];
private unsubscribeSubject = new Subject<void>(); private unsubscribeSubject = new Subject<void>();
@ -102,7 +102,7 @@ export class TransactionsTableComponent
const input = event.input; const input = event.input;
const value = event.value; const value = event.value;
if ((value || '').trim()) { if (value?.trim()) {
this.searchKeywords.push(value.trim()); this.searchKeywords.push(value.trim());
this.updateFilter(); this.updateFilter();
} }
@ -154,7 +154,7 @@ export class TransactionsTableComponent
if (this.transactions) { if (this.transactions) {
this.dataSource = new MatTableDataSource(this.transactions); this.dataSource = new MatTableDataSource(this.transactions);
this.dataSource.filterPredicate = (data, filter) => { this.dataSource.filterPredicate = (data, filter) => {
let dataString = TransactionsTableComponent.getFilterableValues(data) const dataString = TransactionsTableComponent.getFilterableValues(data)
.join(' ') .join(' ')
.toLowerCase(); .toLowerCase();
let contains = true; let contains = true;
@ -251,9 +251,7 @@ export class TransactionsTableComponent
this.getFilterableValues(transaction, fieldValues); this.getFilterableValues(transaction, fieldValues);
} }
return [...fieldValues] return [...fieldValues].filter((item) => item != undefined).sort();
.filter(item => item != undefined)
.sort();
} }
private static getFilterableValues( private static getFilterableValues(
@ -265,7 +263,6 @@ export class TransactionsTableComponent
fieldValues.add(transaction.type); fieldValues.add(transaction.type);
fieldValues.add(transaction.Account?.name); fieldValues.add(transaction.Account?.name);
fieldValues.add(transaction.Account?.Platform?.name); fieldValues.add(transaction.Account?.Platform?.name);
return [...fieldValues] return [...fieldValues].filter((item) => item != undefined);
.filter(item => item != undefined);
} }
} }

Loading…
Cancel
Save