All files / lib/radio-button-group radio-button-group.component.ts

94.52% Statements 276/292
77.14% Branches 27/35
94.11% Functions 16/17
94.52% Lines 276/292

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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 2931x 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 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 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 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 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 18x 18x 18x 1x 1x 1x 1x 1x 18x   18x 18x 18x 1x 1x 1x 1x 1x 18x 18x 18x 18x 18x 18x 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 880x 880x 1x 1x 1x 1x 1x 30x 30x 30x 1x 1x 1x 1x 1x 8x 8x 8x 8x 8x 8x 8x 1x 1x 1x 1x 1x 1760x 1760x 1760x 1760x 1760x 1760x 1760x 1760x 1760x     1760x 1760x 1x 1x 1x 1x 1x 880x 880x 107x 773x 880x 880x 1x 1x 1x 1x 1x 30x 30x 1x 1x 1x 1x 1x 8x 8x 1x 1x 1x 1x 1x 1237x           1237x 1237x 1237x 1x 1x 1x 1x 1x 49x 49x 49x   49x   49x 49x 49x 49x 1x  
/*******************************************************************************
 * Copyright bei
 * Entwicklungs- und Pflegeverbund für das gemeinsame Fachverfahren gefa
 *
 *******************************************************************************/
import {
  AfterViewInit,
  Component,
  ElementRef,
  EventEmitter,
  Input,
  NgZone,
  OnChanges,
  OnDestroy,
  OnInit,
  Output,
  QueryList,
  ViewChildren,
} from '@angular/core';
 
import { observeSize } from '../utils/internal-utils';
import {
  Callback,
  Converter,
  FocusableElementOwner,
  Item,
  WidgetKeySet,
} from '../utils/util.types';
import { createWidgetKeySet, isItem, itemTrack } from '../utils/utilities';
 
import { RadioButtonComponent } from './radio-button.component';
 
/**
 * A Radio Button Group element that allows the user to mark a single value from a group as selected.
 */
@Component({
  selector: 'gc-radio-button-group',
  templateUrl: './radio-button-group.component.html',
  styleUrls: ['./radio-button-group.component.css'],
})
export class RadioButtonGroupComponent<T, I extends Item = Item>
  implements OnInit, OnChanges, AfterViewInit, OnDestroy, FocusableElementOwner
{
  /** @ignore */
  private static NEXT_AUTO_GROUP_ID = 0;
 
  /**
   * Custom name to use for the radio group.
   */
  @Input()
  public groupName?: string;
 
  /**
   * Text that shows within the radio button group.
   */
  @Input()
  public label = '';
 
  /**
   * Text that shows within the radio button group.
   */
  @Input()
  public errorMessage = '';
 
  /**
   * List of item keys that will be rendered in the readonly state.
   */
  @Input()
  public readonlyItems?: ReadonlySet<string>;
 
  /**
   * List of item keys that will be rendered in the disabled state.
   */
  @Input()
  public disabledItems?: ReadonlySet<string>;
 
  /**
   * Currently selected value.
   */
  @Input()
  public value?: T;
 
  /**
   * List of items that will be rendered as radio buttons.
   */
  @Input()
  public items: readonly T[] = [];
 
  /**
   * Adapter that manages the conversion of item types.
   */
  @Input()
  public itemAdapter?: Converter<T, I>;
 
  /**
   * Marks the input field as required.
   */
  @Input()
  public required = false;
 
  /**
   * Inform about the change of the value
   */
  @Output()
  public readonly valueChange: EventEmitter<T | undefined> = new EventEmitter<
    T | undefined
  >();
 
  /**
   * @ignore
   */
  @ViewChildren('radioButton')
  private radioButtons?: QueryList<RadioButtonComponent>;
 
  /** @ignore */
  readonly _widgetKeys: WidgetKeySet = createWidgetKeySet('radio-button-group');
 
  /**
   * @ignore
   */
  _groupName = '';
 
  /**
   * @ignore
   */
  _convertedItems: readonly Item[] = [];
 
  /**
   * @ignore
   */
  public _numberOfColumns: 1 | 2 | 3 = 1;
 
  /**
   * @ignore
   */
  private resizeObserver?: Callback;
 
  constructor(
    private el: ElementRef<HTMLFieldSetElement>,
    private zone: NgZone,
  ) {}
 
  /**
   * @ignore
   */
  ngOnInit(): void {
    this._groupName = this.groupName
      ? this.groupName
      : 'gc-radio-group-' +
        (RadioButtonGroupComponent.NEXT_AUTO_GROUP_ID++).toString();
  }
 
  /**
   * @ignore
   */
  ngAfterViewInit(): void {
    this.resizeObserver = observeSize(
      this.el,
      this.zone,
      this.updateColumnCount.bind(this),
    );
  }
 
  /**
   * @ignore
   */
  ngOnDestroy(): void {
    if (this.resizeObserver) {
      this.resizeObserver();
    }
  }
 
  public focusChild(): boolean {
    if (this.radioButtons) {
      const activeRadioButton = this.radioButtons
        .toArray()
        .find(btn => btn.value);
      const firstNonDisabledButton = this.radioButtons
        .toArray()
        .find(btn => !btn.disabled);
 
      if (activeRadioButton && !activeRadioButton.disabled) {
        return activeRadioButton.focusChild();
      } else if (firstNonDisabledButton) {
        return firstNonDisabledButton.focusChild();
      } else {
        return false;
      }
    }
 
    return false;
  }
 
  /**
   * @ignore
   */
  public _itemTrackBy(index: number, item: Item): string {
    return itemTrack(item);
  }
 
  /**
   * @ignore
   */
  ngOnChanges(): void {
    this.convertItems();
    this.updateColumnCount();
  }
 
  /**
   * @ignore
   */
  _valueChanged(key: string): void {
    const foundValue = this.findValueByKey(key);
 
    if (foundValue) {
      this.value = foundValue;
      this.valueChange.emit(this.value);
    }
  }
 
  /**
   * @ignore
   */
  public _computeCellRow(item: Item): null | number {
    if (this._numberOfColumns === 1) {
      return null;
    } else {
      const itemsPerColumn = Math.ceil(
        this._convertedItems.length / this._numberOfColumns,
      );
      const idx = this._convertedItems.indexOf(item);
      if (idx >= 0) {
        return (idx % itemsPerColumn) + 1;
      }
      return null;
    }
  }
 
  /**
   * @ignore
   */
  public _isChecked(key: string): boolean {
    const foundItem =
      this.value && this.getAsItem(this.value).key === key
        ? this.getAsItem(this.value).key
        : undefined;
    return foundItem !== undefined;
  }
 
  /**
   * @ignore
   */
  private convertItems() {
    this._convertedItems = Array.from(this.items).map(i => this.getAsItem(i));
  }
 
  /**
   * @ignore
   */
  private findValueByKey(key: string): T | undefined {
    return Array.from(this.items).find(i => this.getAsItem(i).key == key);
  }
 
  /**
   * @ignore
   */
  private getAsItem(item: T): Item {
    if (this.itemAdapter === undefined) {
      if (isItem(item)) {
        return item;
      }
      throw new Error('missing converter');
    } else {
      return this.itemAdapter(item);
    }
  }
 
  /**
   * @ignore
   */
  private updateColumnCount(): void {
    const elementWidth = this.el.nativeElement.getBoundingClientRect().width;
 
    if (this.items.length <= 4 || elementWidth <= 439) {
      this._numberOfColumns = 1;
    } else if (elementWidth <= 760) {
      this._numberOfColumns = 2;
    } else {
      this._numberOfColumns = 3;
    }
  }
}