问题
Injecting data to a material dialog is working well, but how can be a way to automatically update these data if they change in the parent / opener component (coming from a (WAMP) subscription for example)?
[Update]
I crated a minimal version to try out how the behavior is: https://stackblitz.com/edit/angular-njh44v?embed=1&file=src/app/app.component.ts
Open the console on the bottom right side and click on the grey box with the numbers. You see that the dialog gets the current number and does no more update after that.
[/Update]
[Update 2]
Based on the second idea of Jusmpty, this seams to work at first sight (even if the dialog shows / updates the first time after data arrive):
https://stackblitz.com/edit/angular-thd34f?embed=1&file=src/app/app.component.ts
[/Update]
The concrete case looks like this:
- There is an area component that subscribes to a WAMP service and gets all the data for the including parts. This draws all the parts with an *ngFor.
File area.component.ts - Each part has an own component showing some data. If the data in the subscriptions change, the view is correctly and automatically updated, for each / all parts.
Files part.component.ts and part.component.html - On each part a click opens a dialog where more data are showing.
Files part-details-dialog.component.ts and part-details-dialog.component.html
And on this last action / step occurs the issue where the current data are showing (injecting) but no more updated if something in the subscribed data changes.
area.component.ts
@Component({
selector: 'app-area',
template: '<app-part *ngFor="let part of plan" [partData]="part"></app-part>'
})
export class AreaComponent {
plan = [];
planasync$ = this.wampService
.topic('sendplan')
.subscribe(
res => {
let tm = new TableMap();
this.plan = tm.tableToMap(res.argskw).filter((m) => m.area === 1);
},
err => console.log("res err", err),
() => console.log("res complete"));
constructor(private wampService: WampService) { }
}
part.component.ts
import { PartDetailsDialogComponent } from './part-details-dialog/part-details-dialog.component';
@Component({
selector: 'app-part-details',
templateUrl: './part.component.html'
})
export class PartComponent {
@Input() partData: any;
constructor(public dialog: MatDialog) {}
openDetailsDialog(): void {
let dialogRef = this.dialog.open(PartDetailsDialogComponent, {
width: '650px',
height: '400px',
data: {
partData: this.partData
}
});
}
}
part.component.html
<mat-card (click)="openDetailsDialog()">
<mat-card-title>Nr: {{ partData.partNr }}</mat-card-title>
<mat-card-content>
<div>Current speed: {{ partData.speed }}</div>
</mat-card-content>
</mat-card>
part-details-dialog.component.ts
@Component({
selector: 'app-part-details-dialog',
templateUrl: './part-details-dialog.component.html'
})
export class PartDetailsDialogComponent {
constructor(public dialogRef: MatDialogRef<PartDetailsDialogComponent>, @Inject(MAT_DIALOG_DATA) public data: any) { }
onNoClick(): void {
this.dialogRef.close();
}
}
part-details-dialog.component.html
<h1 mat-dialog-title>Part Details for Nr. {{ data.partData.partNr }}</h1>
<div mat-dialog-content>
<div>Current speed details: {{ data.partData.speed }}</div>
</div>
<div mat-dialog-actions>
<button mat-button (click)="onNoClick()">Cancel</button>
<button mat-button [mat-dialog-close]="data.animal" cdkFocusInitial>Ok</button>
</div>
回答1:
Instead of doing that, you can just change data
of the component instance, like this:
this.dialogRef.componentInstance.data = {numbers: value};
Example here: https://stackblitz.com/edit/angular-dialog-update
回答2:
There are 2 ways I can think of at the moment, I don't really like either, but hey...
Both ways involve sending an observable to the dialog through the data.
- You could pass on the observable of the part to the part component, and then pass the observable in the data to the dialog. The dialog could then subscribe to the observable and get the updates that way.
AreaComponent
@Component({
selector: 'app-area',
template: '<app-part *ngFor="let part of planAsync$ | async; i as index" [partData]="part" [part$]="part$(index)"></app-part>'
})
export class AreaComponent {
plan = [];
constructor(private wampService: WampService) {
}
part$(index) {
return this.planAsync$
.map(plan => plan[index]);
}
get planAsync$() {
return this.wampService
.topic('sendplan')
.map(res => {
let tm = new TableMap();
return tm.tableToMap(res.argskw).filter((m) => m.area === 1);
});
}
}
Part Component
@Component({
selector: 'app-part-details',
templateUrl: './part.component.html'
})
export class PartComponent {
@Input() partData: any;
@Input() part$
constructor(public dialog: MatDialog) {}
openDetailsDialog(): void {
let dialogRef = this.dialog.open(PartDetailsDialogComponent, {
width: '650px',
height: '400px',
data: {
partData: this.partData,
part$: this.part$
}
});
}
}
Of course the question then is how useful it is to even pass partData along, if you could just access the data directly anyway.
- The other way requires you to just modify the part component, but you'll have to create a subject that you feed the changes to part that the component receives. I don't really like making subjects, especially if the data is already originally coming from an observable, but whatever:
Part Component
@Component({
selector: 'app-part-details',
templateUrl: './part.component.html'
})
export class PartComponent, OnChanges {
@Input() partData: any;
private Subject part$ = new Subject();
constructor(public dialog: MatDialog) {}
ngOnChanges(changes){
this.part$.next(changes['partData']);
}
openDetailsDialog(): void {
let dialogRef = this.dialog.open(PartDetailsDialogComponent, {
width: '650px',
height: '400px',
data: {
partData: this.partData,
part$: this.part$
}
});
}
}
finally, to access the data, you could change the html to
Dialog HTML
<div *ngIf="(data.part$ | async) as part">
<h1 mat-dialog-title>Part Details for Nr. {{ part.partNr }}</h1>
<div mat-dialog-content>
<div>Current speed details: {{ part.speed }}</div>
</div>
<div mat-dialog-actions>
<button mat-button (click)="onNoClick()">Cancel</button>
<button mat-button [mat-dialog-close]="data.animal" cdkFocusInitial>Ok</button>
</div>
</div>
Or you could subscribe the to observable in the dialog component, and provide the data from there
来源:https://stackoverflow.com/questions/50215411/angular-material-dialog-how-to-update-the-injected-data-when-they-change-in-the