diff options
Diffstat (limited to 'client/src/app/+about/about-instance/contact-admin-modal.component.ts')
-rw-r--r-- | client/src/app/+about/about-instance/contact-admin-modal.component.ts | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/client/src/app/+about/about-instance/contact-admin-modal.component.ts b/client/src/app/+about/about-instance/contact-admin-modal.component.ts new file mode 100644 index 000000000..7d79c2215 --- /dev/null +++ b/client/src/app/+about/about-instance/contact-admin-modal.component.ts | |||
@@ -0,0 +1,77 @@ | |||
1 | import { Component, OnInit, ViewChild } from '@angular/core' | ||
2 | import { Notifier, ServerService } from '@app/core' | ||
3 | import { I18n } from '@ngx-translate/i18n-polyfill' | ||
4 | import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service' | ||
5 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' | ||
6 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' | ||
7 | import { FormReactive, InstanceValidatorsService } from '@app/shared' | ||
8 | import { InstanceService } from '@app/shared/instance/instance.service' | ||
9 | |||
10 | @Component({ | ||
11 | selector: 'my-contact-admin-modal', | ||
12 | templateUrl: './contact-admin-modal.component.html', | ||
13 | styleUrls: [ './contact-admin-modal.component.scss' ] | ||
14 | }) | ||
15 | export class ContactAdminModalComponent extends FormReactive implements OnInit { | ||
16 | @ViewChild('modal') modal: NgbModal | ||
17 | |||
18 | error: string | ||
19 | |||
20 | private openedModal: NgbModalRef | ||
21 | |||
22 | constructor ( | ||
23 | protected formValidatorService: FormValidatorService, | ||
24 | private modalService: NgbModal, | ||
25 | private instanceValidatorsService: InstanceValidatorsService, | ||
26 | private instanceService: InstanceService, | ||
27 | private serverService: ServerService, | ||
28 | private notifier: Notifier, | ||
29 | private i18n: I18n | ||
30 | ) { | ||
31 | super() | ||
32 | } | ||
33 | |||
34 | get instanceName () { | ||
35 | return this.serverService.getConfig().instance.name | ||
36 | } | ||
37 | |||
38 | ngOnInit () { | ||
39 | this.buildForm({ | ||
40 | fromName: this.instanceValidatorsService.FROM_NAME, | ||
41 | fromEmail: this.instanceValidatorsService.FROM_EMAIL, | ||
42 | body: this.instanceValidatorsService.BODY | ||
43 | }) | ||
44 | } | ||
45 | |||
46 | show () { | ||
47 | this.openedModal = this.modalService.open(this.modal, { keyboard: false }) | ||
48 | } | ||
49 | |||
50 | hide () { | ||
51 | this.form.reset() | ||
52 | this.error = undefined | ||
53 | |||
54 | this.openedModal.close() | ||
55 | this.openedModal = null | ||
56 | } | ||
57 | |||
58 | sendForm () { | ||
59 | const fromName = this.form.value['fromName'] | ||
60 | const fromEmail = this.form.value[ 'fromEmail' ] | ||
61 | const body = this.form.value[ 'body' ] | ||
62 | |||
63 | this.instanceService.contactAdministrator(fromEmail, fromName, body) | ||
64 | .subscribe( | ||
65 | () => { | ||
66 | this.notifier.success(this.i18n('Your message has been sent.')) | ||
67 | this.hide() | ||
68 | }, | ||
69 | |||
70 | err => { | ||
71 | this.error = err.status === 403 | ||
72 | ? this.i18n('You already sent this form recently') | ||
73 | : err.message | ||
74 | } | ||
75 | ) | ||
76 | } | ||
77 | } | ||