Merge branch 'new-theme' into new-theme-linking

This commit is contained in:
argirok 2022-02-25 16:57:30 +02:00
commit a41fead8c4
5 changed files with 22 additions and 27 deletions

View File

@ -7,21 +7,19 @@
<div class="uk-section uk-padding-remove-top uk-container uk-container-large">
<div class="uk-padding-small uk-width-1-2@l uk-width-2-3@m uk-width-1-1">
<div class="uk-position-relative">
<contact-us *ngIf="!showLoading"
[properties]="properties" [errorMessage]="errorMessage"
[contactForm]="contactForm" (sendEmitter)="send($event)">
<contact-us [sending]="sending" [contactForm]="contactForm" (sendEmitter)="send($event)">
<h1 page-title class="uk-margin-auto">
Contact us to <br> learn more<span class="uk-text-primary">.</span>
</h1>
</contact-us>
<div *ngIf="showLoading" class="uk-position-center uk-margin-medium-top">
<div *ngIf="sending" class="uk-position-center uk-margin-medium-top">
<loading></loading>
</div>
</div>
</div>
</div>
<modal-alert #AlertModal (alertOutput)="goToHome()">
<div class="uk-text-center">
<div class="uk-padding-small uk-padding-remove-horizontal">
Our team will respond to your submission soon.<br>
Press OK to redirect to OpenAIRE Connect home page.
</div>

View File

@ -13,6 +13,7 @@ import {FormBuilder, FormGroup, Validators} from "@angular/forms";
import {Breadcrumb} from "../openaireLibrary/utils/breadcrumbs/breadcrumbs.component";
import {Subscriber} from "rxjs";
import {properties} from "../../environments/environment";
import {NotificationHandler} from "../openaireLibrary/utils/notification-handler";
@Component({
selector: 'contact',
@ -23,17 +24,16 @@ export class ContactComponent implements OnInit {
public url: string = null;
public pageTitle: string = "OpenAIRE - Connect | Contact Us";
public description: string = "Contact us to learn more about OpenAIRE Connect Research Gateways";
public showLoading = true;
public errorMessage = '';
public sending = true;
public email: Email;
public properties: EnvProperties = null;
public properties: EnvProperties = properties;
public pageContents = null;
public divContents = null;
public breadcrumbs: Breadcrumb[] = [{name: 'home', route: '/'}, {name: 'Contact us'}];
public contactForm: FormGroup;
@ViewChild('AlertModal') modal;
private subscriptions = [];
ngOnDestroy() {
this.subscriptions.forEach(subscription => {
if (subscription instanceof Subscriber) {
@ -70,7 +70,7 @@ export class ContactComponent implements OnInit {
this.reset();
//this.getDivContents();
this.getPageContents();
this.showLoading = false;
this.sending = false;
}
@ -90,8 +90,6 @@ export class ContactComponent implements OnInit {
HelperFunctions.scroll();
if(event.valid === true) {
this.sendMail(this.properties.admins);
} else {
this.errorMessage = 'Please fill in all the required fields!';
}
}
@ -104,29 +102,25 @@ export class ContactComponent implements OnInit {
community: this.fb.control('', Validators.required),
message: this.fb.control('', Validators.required),
recaptcha: this.fb.control('', Validators.required),
});
this.errorMessage = '';
})
}
private sendMail(admins: any) {
this.showLoading = true;
this.sending = true;
this.subscriptions.push(this._emailService.contact(this.properties,
Composer.composeEmailForNewCommunity(this.contactForm.value, admins),
this.contactForm.value.recaptcha).subscribe(
res => {
this.showLoading = false;
if (res) {
this.sending = false;
this.reset();
this.modalOpen();
} else {
this.errorMessage = 'Email sent failed! Please try again.';
this.contactForm.get('recaptcha').setValue('');
this.handleError('Email <b>sent failed!</b> Please try again.');
}
},
error => {
this.handleError('Email sent failed! Please try again.', error);
this.showLoading = false;
this.contactForm.get('recaptcha').setValue('');
}
));
}
@ -141,10 +135,13 @@ export class ContactComponent implements OnInit {
this.modal.open();
}
handleError(message: string, error) {
this.errorMessage = message;
console.log('Server responded: ' + error);
this.showLoading = false;
handleError(message: string, error = null) {
if(error) {
console.error(error);
}
NotificationHandler.rise(message, 'danger');
this.sending = false;
this.contactForm.get('recaptcha').setValue('');
}
public goToHome() {

@ -1 +1 @@
Subproject commit 9222deed7b1a39d21284dd1c3121a31909767d3a
Subproject commit 9e961d46c12663260c28c85374e7657b4e413626

@ -1 +1 @@
Subproject commit 4e99b0887c758579682eb1d9848d227e18f97799
Subproject commit 9224f3da593049aaa18bce81ff1e2d7d7597c22c

@ -1 +1 @@
Subproject commit 9f0b25ae591095b9b9a31aa4cba7c98e3d012899
Subproject commit 0a34bf8f62ef7544060acc4e8333ce13ea929d91