All files / lib/checkbox-group checkbox-group.component.ts

91.36% Statements 307/336
81.39% Branches 35/43
95.23% Functions 20/21
91.36% Lines 307/336

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 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 3371x 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 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 1x 1x 1x 1x 1x 1x 803x 803x 803x 1x 1x 31x 31x 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 10x 10x 10x 1x 1x 1x 1x 1x 783x 783x 1x 1x 1x 1x 1x 24x 24x 24x 2x 24x 24x 1x 1x 1x 1x 1x 10x 10x 10x 10x 10x 10x 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 10x 10x 10x 10x 8x 2x 2x 2x 10x 10x 10x 10x 1x 1x 1x 1x 1x 783x 783x 783x 783x 783x 1x 1x 1x 1x 1x 1386x 1386x 1386x 1206x 1206x 1206x 1206x 1206x 1206x     1386x 1386x 1x 1x 1x 1x 1x 24x 24x 1x 1x 1x 1x 1x 10x 10x       10x 1x 1x 1x 1x 1x 649x           649x 649x 649x 1x 1x 1x 1x 1x 2x                         2x 1x 1x 1x 1x 1x 22x 22x 22x   22x 22x 22x   22x 22x 22x 22x 22x 22x 22x   22x 22x 1x 1x 1x 1x 1x 10x 10x 10x 10x 10x 1x  
/*******************************************************************************
 * Copyright bei
 * Entwicklungs- und Pflegeverbund für das gemeinsame Fachverfahren gefa
 *
 *******************************************************************************/
import {
  AfterViewInit,
  Component,
  ElementRef,
  EventEmitter,
  Input,
  NgZone,
  OnChanges,
  OnDestroy,
  Output,
  QueryList,
  ViewChild,
  ViewChildren,
} from '@angular/core';
 
import { isSetEqual, observeSize } from '../utils/internal-utils';
import {
  Callback,
  Converter,
  FocusableElementOwner,
  Item,
  WidgetKeySet,
} from '../utils/util.types';
import { createWidgetKeySet, isItem, itemTrack } from '../utils/utilities';
 
import { CheckboxComponent } from '../checkbox/checkbox.component';
 
/**
 * A Checkbox Group element that allows the user to mark an arbitrary number of values as
 * selected from a set of different checkboxes.
 */
@Component({
  selector: 'gc-checkbox-group',
  templateUrl: './checkbox-group.component.html',
  styleUrls: ['./checkbox-group.component.css'],
})
export class CheckboxGroupComponent<T, I extends Item = Item>
  implements OnChanges, AfterViewInit, OnDestroy, FocusableElementOwner
{
  /**
   * Custom id to use.
   * @deprecated
   */
  @Input()
  public _id?: string;
 
  /**
   * Text that shows within the checkbox group border.
   */
  @Input()
  public label = '';
 
  /**
   * List of items that will be rendered as checkboxes.
   */
  @Input()
  public items: readonly T[] = [];
 
  /**
   * Adapter that manages the conversion of item types.
   */
  @Input()
  public itemAdapter?: Converter<T, I>;
 
  /**
   * Keys of items which are in the readonly mode.
   */
  @Input()
  public readonlyItems?: ReadonlySet<string>;
 
  /**
   * Keys of items which are in the disabled mode.
   */
  @Input()
  public disabledItems?: ReadonlySet<string>;
 
  /**
   * An error message that shows within a checkbox.
   */
  @Input()
  public errorMessage = '';
 
  /**
   * Marks the input field as required.
   */
  @Input()
  public required = false;
 
  /**
   * Inform about the change of the value
   */
  @Output()
  public readonly valueChange: EventEmitter<ReadonlySet<T>> = new EventEmitter<
    ReadonlySet<T>
  >();
 
  /**
   * @ignore
   */
  @ViewChild('error')
  private errorMessageElement?: ElementRef<HTMLParagraphElement>;
 
  /**
   * @ignore
   */
  @ViewChildren(CheckboxComponent)
  private checkboxElements?: QueryList<CheckboxComponent>;
 
  /**
   * Set of checked items.
   */
  @Input()
  public get value(): ReadonlySet<T> {
    return this._value;
  }
 
  public set value(items: ReadonlySet<T>) {
    this._value = items;
  }
 
  /** @ignore */
  readonly _widgetKeys: WidgetKeySet = createWidgetKeySet('gc-checkbox-group');
 
  /**
   * @ignore
   */
  _convertedItems: readonly Item[] = [];
 
  /**
   * @ignore
   */
  public _numberOfColumns: 1 | 2 | 3 = 1;
 
  /**
   * @ignore
   */
  private _value: ReadonlySet<T> = new Set();
 
  /**
   * @ignore
   */
  private resizeObserver?: Callback;
 
  constructor(
    private el: ElementRef<HTMLFieldSetElement>,
    private zone: NgZone,
  ) {}
 
  /**
   * @ignore
   */
  public _itemTrackBy(index: number, item: Item): string {
    return itemTrack(item);
  }
 
  /**
   * @ignore
   */
  ngOnChanges(): void {
    this.convertItems();
 
    if (this.errorMessage.length > 0) {
      this.setErrorMessageProviderToInputs();
    }
  }
 
  /**
   * @ignore
   */
  ngAfterViewInit(): void {
    this.resizeObserver = observeSize(
      this.el,
      this.zone,
      this.resizeObserverCallback.bind(this),
    );
  }
 
  /**
   * @ignore
   */
  ngOnDestroy(): void {
    if (this.resizeObserver) {
      this.resizeObserver();
    }
  }
 
  public focusChild(): boolean {
    if (this.checkboxElements) {
      const firstNonDisabledElement = this.checkboxElements.find(
        el => !el.disabled,
      );
 
      if (firstNonDisabledElement) {
        return firstNonDisabledElement.focusChild();
      } else {
        return false;
      }
    }
 
    return false;
  }
 
  /**
   * @ignore
   */
  _valueChanged(key: string, checked: boolean): void {
    const foundValue = this.findValueByKey(key);
 
    if (foundValue) {
      if (checked) {
        this.updateValue(new Set([...this.value, foundValue]));
      } else {
        this.updateValue(
          new Set(Array.from(this.value).filter(val => foundValue != val)),
        );
      }
    }
  }
 
  /**
   * @ignore
   */
  public _isChecked(key: string): boolean {
    const foundItem = Array.from(this.value).find(
      i => this.getAsItem(i).key == key,
    );
    return foundItem !== undefined;
  }
 
  /**
   * @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
   */
  private convertItems() {
    this._convertedItems = Array.from(this.items).map(i => this.getAsItem(i));
  }
 
  /**
   * @ignore
   */
  private findValueByKey(key: string): T | null {
    const foundVal = Array.from(this.items).find(
      i => this.getAsItem(i).key == key,
    );

    return foundVal ?? null;
  }
 
  /**
   * @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 setErrorMessageProviderToInputs(): void {
    if (this.errorMessageElement) {
      const errorProvider =
        this.errorMessageElement.nativeElement.getAttribute('id');

      this.checkboxElements?.toArray().forEach(el => {
        if (errorProvider && this.checkboxElements) {
          el._inputElement.nativeElement.setAttribute(
            'errormessage',
            errorProvider,
          );
        }
      });
    }
  }
 
  /**
   * @ignore
   */
  private resizeObserverCallback(): void {
    const elementWidth = this.el.nativeElement.getBoundingClientRect().width;
 
    if (elementWidth < 440) {
      this._numberOfColumns = 1;
    }
 
    if (elementWidth > 440 && elementWidth < 760) {
      this._numberOfColumns = 2;
    }
 
    if (elementWidth > 761) {
      this._numberOfColumns = 3;
    }
 
    if (this.items.length <= 4) {
      this._numberOfColumns = 1;
    }
  }
 
  /**
   * @ignore
   */
  private updateValue(value: ReadonlySet<T>): void {
    if (!isSetEqual(this.value, value)) {
      this.value = value;
      this.valueChange.emit(value);
    }
  }
}