Skip to content
Snippets Groups Projects
Select Git revision
  • f136ce69788c06024da50406acf0360394434c38
  • main default protected
  • release
  • 0.21.0
  • 0.20.0
  • 0.19.0
  • 0.18.0
  • 0.17.0
  • 0.16.0
  • 0.15.0
  • 0.14.0
  • 0.13.0
  • 0.11.0
  • 0.10.0
  • 0.9.0
  • 0.8.0
  • 0.7.0
  • 0.6.0
  • 0.5.0
  • 0.4.2
  • 0.4.1
  • 0.4.0
  • 0.3.0
23 results

pom.xml

Blame
  • postfach-mail-pdf-button-container.component.ts 720 B
    import { Component, OnInit } from '@angular/core';
    import { PostfachService } from '@goofy-client/postfach-shared';
    import { Observable } from 'rxjs';
    
    @Component({
    	selector: 'goofy-client-postfach-mail-pdf-button-container',
    	templateUrl: './postfach-mail-pdf-button-container.component.html',
    	styleUrls: ['./postfach-mail-pdf-button-container.component.scss'],
    })
    export class PostfachMailPdfButtonContainerComponent implements OnInit {
    
    	isDownloadPdfInProgress: Observable<boolean>;
    
    	constructor(private postfachService: PostfachService) { }
    
    	ngOnInit(): void {
    		this.isDownloadPdfInProgress = this.postfachService.isDownloadPdfInProgress();
    	}
    
    	downloadPdf(): void {
    		this.postfachService.downloadPdf();
    	}
    }