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 37 38 39 40 41 42 43 44 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1013x 1013x 1013x 1x 1x 1x 1x 1x 1x 1x 1x | /*******************************************************************************
* Copyright bei
* Entwicklungs- und Pflegeverbund für das gemeinsame Fachverfahren gefa
*
*******************************************************************************/
import { Component, ElementRef, input, viewChild } from '@angular/core';
import { FocusableElementOwner } from '../utils/util.types';
/**
* A standalone error message, e.g. for displaying errors which are not part of a single element.
*
* Note that error message display options builtin to the various input components should be used
* instead of this separate component if available and applicable.
*/
@Component({
selector: 'gc-error-message',
templateUrl: './error-message.component.html',
styleUrls: ['./error-message.component.css'],
standalone: false,
host: {
'[class.gc-error-embedded]': '_embedded()',
},
})
export class ErrorMessageComponent implements FocusableElementOwner {
/**
* Internal API - allows to reuse the component in other controls and disables interactive behavior.
* @ignore
*/
public _embedded = input(false);
/** @ignore */
private element = viewChild<ElementRef<HTMLElement>>('element');
focusChild(): boolean {
const element = this.element();
if (!this._embedded() && element?.nativeElement) {
element.nativeElement.focus();
return true;
}
return false;
}
}
|