Skip to content
Snippets Groups Projects
button.component.ts 2.02 KiB
Newer Older
  • Learn to ignore specific revisions
  • import {
      Component, EventEmitter, Input, Output
    } from '@angular/core';
    
    import { ElementComponent } from '../../directives/element-component.directive';
    import { ButtonElement } from './button-element';
    
      selector: 'aspect-button',
    
      template: `
    
        <div [style.width.%]="100"
             [style.height.%]="100">
    
          <button *ngIf="!elementModel.imageSrc" mat-button
                  type='button'
                  class="fill-container"
                  [style.background-color]="elementModel.surfaceProps.backgroundColor"
                  [style.color]="elementModel.fontProps.fontColor"
                  [style.font-family]="elementModel.fontProps.font"
                  [style.font-size.px]="elementModel.fontProps.fontSize"
                  [style.font-weight]="elementModel.fontProps.bold ? 'bold' : ''"
                  [style.font-style]="elementModel.fontProps.italic ? 'italic' : ''"
                  [style.text-decoration]="elementModel.fontProps.underline ? 'underline' : ''"
                  [style.border-radius.px]="elementModel.borderRadius"
                  (click)="elementModel.action ? navigationRequested.emit(elementModel.action) : false">
            {{elementModel.label}}
          </button>
          <input *ngIf="elementModel.imageSrc" type="image"
                 [src]="elementModel.imageSrc | safeResourceUrl"
                 [class]="elementModel.positionProps.dynamicPositioning &&
                  !elementModel.positionProps.fixedSize ? 'dynamic-image' : 'static-image'"
                 [alt]="'imageNotFound' | translate"
                 (click)="elementModel.action ? navigationRequested.emit(elementModel.action) : false">
        </div>
    
        '.dynamic-image {width: 100%; height: fit-content;}',
    
        '.static-image {max-width: 100%; max-height: 100%; display: grid;}', // grid: to prevent scrollbars
    
        '.fill-container {width: 100%; height: 100%;}'
    
    export class ButtonComponent extends ElementComponent {
    
      @Input() elementModel!: ButtonElement;
    
      @Output() navigationRequested = new EventEmitter<'previous' | 'next' | 'first' | 'last' | 'end'>();