import {Component, EventEmitter, Input, OnInit, Output} from '@angular/core'; import {FormGroup} from '@angular/forms'; import {EnvProperties} from "../utils/properties/env-properties"; import {Observable} from "rxjs"; import {map, startWith} from "rxjs/operators"; @Component({ selector: 'contact-us', templateUrl: './contact-us.component.html' }) export class ContactUsComponent { @Input() public contactForm: FormGroup; @Input() formTitle: string; @Input() properties: EnvProperties; @Output() sendEmitter: EventEmitter = new EventEmitter(); @Input() errorMessage; @Input() public organizationTypes: string[]; @Input() public right: boolean = true; @Input() public buttonClass: string; public send() { this.sendEmitter.emit({ valid: this.contactForm.valid }); } public handleRecaptcha(captchaResponse: string) { this.contactForm.get('recaptcha').setValue(captchaResponse); } }