Skip to content
Snippets Groups Projects
dropdown.component.ts 2.22 KiB
Newer Older
  • Learn to ignore specific revisions
  • import { Component, Input } from '@angular/core';
    
    import { DropdownElement } from 'common/models/elements/input-elements/dropdown';
    
    import { FormElementComponent } from '../../directives/form-element-component.directive';
    
      selector: 'aspect-dropdown',
    
      template: `
    
    rhenck's avatar
    rhenck committed
        <mat-form-field appearance="fill"
                        [style.background-color]="elementModel.styling.backgroundColor">
    
          <mat-label [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' : ''">
    
    rhenck's avatar
    rhenck committed
            {{ elementModel.label }}
    
          </mat-label>
    
          <mat-select [formControl]="elementFormControl" [value]="elementModel.value">
    
            <mat-select-trigger [innerHTML]="elementFormControl.value !== null ?
                                             (elementModel.options[elementFormControl.value].text | safeResourceHTML) :
                                             ''">
            </mat-select-trigger>
    
    jojohoch's avatar
    jojohoch committed
            <mat-option *ngIf="elementModel.allowUnset" [value]="null"
    
    rhenck's avatar
    rhenck committed
                        [class.read-only]="elementModel.readOnly"
    
                        (click)="$event.preventDefault()">
    
            <mat-option *ngFor="let option of elementModel.options; let i = index" [value]="i"
    
                        [class.read-only]="elementModel.readOnly"
                        [innerHTML]="option.text | safeResourceHTML">
    
            </mat-option>
          </mat-select>
          <mat-error *ngIf="elementFormControl.errors">
            {{elementFormControl.errors | errorTransform: elementModel}}
          </mat-error>
        </mat-form-field>
    
    rhenck's avatar
    rhenck committed
      `,
      styles: [
        'mat-form-field {width: 100%; height: 100%;}',
    
        '.read-only {pointer-events: none;}',
    
    rhenck's avatar
    rhenck committed
        ':host ::ng-deep mat-form-field .mat-mdc-text-field-wrapper.mdc-text-field {background-color: inherit !important;}',
        ':host ::ng-deep mat-form-field .mat-mdc-form-field-subscript-wrapper {background-color: white;}'
      ]
    
    export class DropdownComponent extends FormElementComponent {
    
      @Input() elementModel!: DropdownElement;