Skip to content
Snippets Groups Projects
checkbox.component.ts 2.14 KiB
Newer Older
  • Learn to ignore specific revisions
  • import { Component, Input } from '@angular/core';
    
    import { CheckboxElement } from 'common/models/elements/input-elements/checkbox';
    
    import { FormElementComponent } from '../../directives/form-element-component.directive';
    
      selector: 'aspect-checkbox',
    
      template: `
    
        <div class="mat-form-field"
    
             [style.width.%]="100"
             [style.height.%]="100"
    
             [style.background-color]="elementModel.styling.backgroundColor">
    
          <mat-checkbox #checkbox class="example-margin"
    
                        [formControl]="elementFormControl"
    
                        [checked]="$any(elementModel.value)"
    
                        [class.cross-out]="elementModel.crossOutChecked && elementFormControl.value"
    
                        [style.color]="elementModel.styling.fontColor"
                        [style.font-size.px]="elementModel.styling.fontSize"
                        [style.font-weight]="elementModel.styling.bold ? 'bold' : ''"
                        [style.font-style]="elementModel.styling.italic ? 'italic' : ''"
                        [style.text-decoration]="elementModel.styling.underline ? 'underline' : ''"
    
    jojohoch's avatar
    jojohoch committed
                        (click)="elementModel.readOnly ? $event.preventDefault() : null">
    
            <div [innerHTML]="elementModel.label | safeResourceHTML"></div>
    
          </mat-checkbox>
          <mat-error *ngIf="elementFormControl.errors && elementFormControl.touched"
    
                     class="error-message">
    
            {{elementFormControl.errors | errorTransform: elementModel}}
          </mat-error>
        </div>
    
      styles: [`
        :host ::ng-deep .mdc-form-field {
          font-size: inherit;
          font-weight: inherit;
        }
    
        :host ::ng-deep mat-checkbox .mdc-form-field {
          align-items: flex-start;
        }
        :host ::ng-deep mat-checkbox .mdc-form-field .mdc-label {
          padding-top: calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2);
        }
    
        .error-message {
          position: absolute;
          display: block;
          margin-top: 5px;
          font-size: 75%;
        }
    
        .cross-out {
          text-decoration: line-through;
          text-decoration-thickness: 3px;
        }
    
    export class CheckboxComponent extends FormElementComponent {
    
      @Input() elementModel!: CheckboxElement;