Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | 4x 4x 4x 4x 4x 2x 1x 1x 1x | import { ChangeDetectionStrategy, Component, Input, OnChanges } from '@angular/core';
import { MessageFacade } from 'ish-core/facades/message.facade';
/**
* The Info Message Component displays an info message as inline message or as toast.
*
* @example
* <ish-info-message message="quote.error.not_started" [toast]="false"></ish-info-message>
*/
@Component({
selector: 'ish-info-message',
templateUrl: './info-message.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class InfoMessageComponent implements OnChanges {
@Input({ required: true }) message: string;
@Input() toast = true;
constructor(private messageFacade: MessageFacade) {}
ngOnChanges() {
if (this.toast) {
this.displayToast();
}
}
private displayToast() {
if (this.message) {
this.messageFacade.info({
message: this.message,
});
}
}
}
|