Skip to content
Snippets Groups Projects
Commit f5bd2852 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

use reactive form

parent 39218716
No related branches found
No related tags found
1 merge request!442Signals and Reactive Forms: hanging wall effects
......@@ -10,15 +10,15 @@
<mat-tab
labelClass="medians-tab"
label="Medians"
[disabled]="(hasData$ | async) === false"
[disabled]="hasData() === false"
>
<ng-template matTabContent>
<nshmp-lib-ng-export-data-table
[table]="table$ | async"
<nshmp-lib-no-ngrx-export-data-table
[table]="table()"
filename="hanging-wall-effects.csv"
buttonText="Export to CSV"
/>
<nshmp-lib-ng-data-table [table]="table$ | async" />
<nshmp-lib-no-ngrx-data-table [table]="table()" />
</ng-template>
</mat-tab>
</mat-tab-group>
import {AsyncPipe} from '@angular/common';
import {Component} from '@angular/core';
import {Component, computed} from '@angular/core';
import {MatTab, MatTabContent, MatTabGroup} from '@angular/material/tabs';
import {gmmUtils} from '@ghsc/nshmp-lib-ng/gmm';
import {gmmUtils} from '@ghsc/nshmp-lib-no-ngrx/gmm';
import {
NshmpLibNgDataTableComponent,
NshmpLibNgExportDataTableComponent,
} from '@ghsc/nshmp-lib-ng/nshmp';
import {map} from 'rxjs';
} from '@ghsc/nshmp-lib-no-ngrx/nshmp';
import {AppFacade} from '../../state/app.facade';
import {Plots} from '../../state/app.state';
......@@ -34,18 +33,14 @@ export class ContentComponent {
exp = true;
/** Whether service has been called and data exists */
hasData$ = this.facade.serviceResponses$.pipe(
map(responses => responses?.length > 0)
);
hasData = computed(() => this.facade.state().serviceResponses?.length > 0);
/** Table data for table */
table$ = this.facade.plots$.pipe(
map(plots =>
gmmUtils.plotToTable(
plots.get(Plots.GROUND_MOTION).plotData,
this.exp,
this.commonXValues
)
table = computed(() =>
gmmUtils.plotToTable(
this.facade.state().plots.get(Plots.GROUND_MOTION).plotData,
this.exp,
this.commonXValues
)
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment