Skip to content
Snippets Groups Projects
Verified Commit 8c438b31 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FEAT #8489 link front with back to email send test

parent fab72088
No related branches found
No related tags found
No related merge requests found
...@@ -102,35 +102,22 @@ ...@@ -102,35 +102,22 @@
</mat-sidenav-content> </mat-sidenav-content>
<mat-sidenav #snav2 [mode]="mobileQuery.matches ? 'over' : 'side'" [fixedInViewport]="mobileQuery.matches" <mat-sidenav #snav2 [mode]="mobileQuery.matches ? 'over' : 'side'" [fixedInViewport]="mobileQuery.matches"
fixedTopGap="56" position='end' [opened]="mobileQuery.matches ? false : false" style="overflow-x:hidden;width:500px;" fixedTopGap="56" position='end' [opened]="mobileQuery.matches ? false : false" style="overflow-x:hidden;width:500px;"
(opened)="initServerConnection()"> (opened)="initEmailSend()">
<mat-nav-list disableRipple="true"> <mat-nav-list disableRipple="true">
<h3 mat-subheader>État du serveur</h3> <h3 mat-subheader>{{lang.emailSendTest}}</h3>
<mat-list-item *ngIf="serverConnectionLoading">
<mat-icon mat-list-icon fontSet="far" fontIcon="fa-circle fa-2x"></mat-icon>
<p mat-line> En cours de connexion... </p>
</mat-list-item>
<mat-list-item *ngIf="!serverConnectionLoading">
<mat-icon mat-list-icon fontSet="fas" style="color:green" fontIcon="fa-circle fa-2x"></mat-icon>
<p mat-line> Connexion établie </p>
</mat-list-item>
<h3 mat-subheader>Test d'envoi</h3>
<div class="form-group" [style.opacity]="sendmail.type != 'smtp' ? '0.5' : '1'"> <div class="form-group" [style.opacity]="sendmail.type != 'smtp' ? '0.5' : '1'">
<div class="col-md-12"> <div class="col-md-12">
<mat-form-field> <mat-form-field>
<input matInput placeholder="Adresse d'envoi" [disabled]="serverConnectionLoading"> <input matInput placeholder="Adresse d'envoi" [(ngModel)]="currentUser.mail" [disabled]="serverConnectionLoading">
<mat-icon *ngIf="!serverConnectionLoading" title="Commencer le test" (click)="initEmailSend()" color="primary" style="cursor: pointer;" matSuffix <mat-icon *ngIf="!serverConnectionLoading" title="{{lang.beginSendTest}}" (click)="testEmailSend()" color="primary" style="cursor: pointer;" matSuffix
class="fa fa-paper-plane fa-2x"></mat-icon> class="fa fa-paper-plane fa-2x"></mat-icon>
</mat-form-field> </mat-form-field>
</div> </div>
</div> </div>
<mat-list-item *ngIf="emailSendLoading"> <mat-list-item *ngIf="emailSendResult.msg != ''">
<mat-icon mat-list-icon fontSet="fas" fontIcon="fa-paper-plane fa-2x"></mat-icon> <mat-icon mat-list-icon class= "fas {{emailSendResult.icon}} fa-2x"></mat-icon>
<p mat-line> En cours d'envoi... </p> <p mat-line> {{emailSendResult.msg}} </p>
</mat-list-item> </mat-list-item>
<mat-list-item *ngIf="!emailSendLoading">
<mat-icon mat-list-icon fontSet="fas" style="color:green" fontIcon="fa-check fa-2x"></mat-icon>
<p mat-line> Envoi réussi </p>
</mat-list-item>
</mat-nav-list> </mat-nav-list>
</mat-sidenav> </mat-sidenav>
</mat-sidenav-container> </mat-sidenav-container>
......
.mat-list-item:hover { .mat-list-item:hover {
background: inherit; background: inherit;
}
.green {
color : green;
}
.primary {
color : #135f7f;
} }
\ No newline at end of file
...@@ -4,7 +4,7 @@ import { HttpClient } from '@angular/common/http'; ...@@ -4,7 +4,7 @@ import { HttpClient } from '@angular/common/http';
import { LANG } from '../../translate.component'; import { LANG } from '../../translate.component';
import { MatSidenav } from '@angular/material'; import { MatSidenav } from '@angular/material';
import { NotificationService } from '../../notification.service'; import { NotificationService } from '../../notification.service';
import { HeaderService } from '../../../service/header.service'; import { HeaderService } from '../../../service/header.service';
declare function $j(selector: any): any; declare function $j(selector: any): any;
...@@ -18,15 +18,15 @@ declare var angularGlobals: any; ...@@ -18,15 +18,15 @@ declare var angularGlobals: any;
}) })
export class SendmailAdministrationComponent implements OnInit { export class SendmailAdministrationComponent implements OnInit {
@ViewChild('snav') public sidenavLeft : MatSidenav; @ViewChild('snav') public sidenavLeft: MatSidenav;
@ViewChild('snav2') public sidenavRight : MatSidenav; @ViewChild('snav2') public sidenavRight: MatSidenav;
mobileQuery : MediaQueryList;
private _mobileQueryListener : () => void;
coreUrl : string; mobileQuery: MediaQueryList;
lang : any = LANG; private _mobileQueryListener: () => void;
loading : boolean = false;
coreUrl: string;
lang: any = LANG;
loading: boolean = false;
sendmail: any = { sendmail: any = {
'type': 'smtp', 'type': 'smtp',
...@@ -42,16 +42,16 @@ export class SendmailAdministrationComponent implements OnInit { ...@@ -42,16 +42,16 @@ export class SendmailAdministrationComponent implements OnInit {
smtpTypeList = [ smtpTypeList = [
{ {
id : 'smtp', id: 'smtp',
label : this.lang.smtp label: this.lang.smtp
}, },
{ {
id : 'sendmail', id: 'sendmail',
label : 'Sendmail' label: 'Sendmail'
}, },
{ {
id : 'qmail', id: 'qmail',
label : 'Qmail' label: 'Qmail'
} }
]; ];
smtpTypeDesc = ''; smtpTypeDesc = '';
...@@ -60,7 +60,12 @@ export class SendmailAdministrationComponent implements OnInit { ...@@ -60,7 +60,12 @@ export class SendmailAdministrationComponent implements OnInit {
hidePassword: boolean = true; hidePassword: boolean = true;
serverConnectionLoading: boolean = false; serverConnectionLoading: boolean = false;
emailSendLoading: boolean = false; emailSendLoading: boolean = false;
emailSendResult = {
icon : '',
msg : ''
};
currentUser: any = {};
constructor(changeDetectorRef: ChangeDetectorRef, media: MediaMatcher, public http: HttpClient, private notify: NotificationService, private headerService: HeaderService) { constructor(changeDetectorRef: ChangeDetectorRef, media: MediaMatcher, public http: HttpClient, private notify: NotificationService, private headerService: HeaderService) {
...@@ -82,7 +87,7 @@ export class SendmailAdministrationComponent implements OnInit { ...@@ -82,7 +87,7 @@ export class SendmailAdministrationComponent implements OnInit {
.subscribe((data: any) => { .subscribe((data: any) => {
this.sendmail = data.configuration.value this.sendmail = data.configuration.value
this.sendmailClone = JSON.parse(JSON.stringify(this.sendmail)); this.sendmailClone = JSON.parse(JSON.stringify(this.sendmail));
this.smtpTypeDesc = this.lang[this.sendmail.type+'Desc']; this.smtpTypeDesc = this.lang[this.sendmail.type + 'Desc'];
this.loading = false; this.loading = false;
}, (err) => { }, (err) => {
this.notify.handleErrors(err); this.notify.handleErrors(err);
...@@ -94,7 +99,7 @@ export class SendmailAdministrationComponent implements OnInit { ...@@ -94,7 +99,7 @@ export class SendmailAdministrationComponent implements OnInit {
} }
changeDesc(e: any) { changeDesc(e: any) {
this.smtpTypeDesc = this.lang[e.selected.value+'Desc']; this.smtpTypeDesc = this.lang[e.selected.value + 'Desc'];
} }
onSubmit() { onSubmit() {
...@@ -111,18 +116,41 @@ export class SendmailAdministrationComponent implements OnInit { ...@@ -111,18 +116,41 @@ export class SendmailAdministrationComponent implements OnInit {
return (JSON.stringify(this.sendmailClone) === JSON.stringify(this.sendmail)); return (JSON.stringify(this.sendmailClone) === JSON.stringify(this.sendmail));
} }
initEmailSend() {
initServerConnection() { this.emailSendResult = {
this.serverConnectionLoading = true; icon : '',
setTimeout(() => { msg : ''
this.serverConnectionLoading = false; };
}, 5000); if (this.currentUser.mail === undefined) {
this.http.get('../../rest/currentUser/profile')
.subscribe((data: any) => {
this.currentUser = data;
});
}
} }
initEmailSend() { testEmailSend() {
this.emailSendResult = {
icon : 'fa-paper-plane primary',
msg : this.lang.emailSendInProgress
};
let email = {
"sender": { "email": this.currentUser.mail },
"recipients": [this.currentUser.mail],
"object": "test mail envoi",
"body": "test mail envoi",
"document": { "isLinked": false, "original": false },
"isHtml": false
}
this.emailSendLoading = true; this.emailSendLoading = true;
setTimeout(() => {
this.emailSendLoading = false; this.http.post('../../rest/emails', email)
}, 5000); .subscribe((data: any) => {
this.emailSendLoading = false;
this.emailSendResult = {
icon : 'fa-check green',
msg : this.lang.emailSendSuccess
};
});
} }
} }
import { ChangeDetectorRef, Component, OnInit, ViewChild, Inject, EventEmitter, AfterViewInit } from '@angular/core'; import { ChangeDetectorRef, Component, OnInit, ViewChild, EventEmitter } from '@angular/core';
import { MediaMatcher } from '@angular/cdk/layout'; import { MediaMatcher } from '@angular/cdk/layout';
import { HttpClient } from '@angular/common/http'; import { HttpClient } from '@angular/common/http';
import { LANG } from '../translate.component'; import { LANG } from '../translate.component';
import { merge, Observable, of as observableOf } from 'rxjs'; import { merge, Observable, of as observableOf } from 'rxjs';
import { NotificationService } from '../notification.service'; import { NotificationService } from '../notification.service';
import { MatDialog, MatSidenav, MatPaginator, MatSort, MatBottomSheet, MatBottomSheetRef, MAT_BOTTOM_SHEET_DATA } from '@angular/material'; import { MatDialog, MatSidenav, MatPaginator, MatSort, MatBottomSheet } from '@angular/material';
import { DomSanitizer, SafeHtml } from '@angular/platform-browser'; import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
import { startWith, switchMap, map, catchError } from 'rxjs/operators'; import { startWith, switchMap, map, catchError } from 'rxjs/operators';
......
...@@ -733,4 +733,8 @@ export const LANG_EN = { ...@@ -733,4 +733,8 @@ export const LANG_EN = {
"mailFrom" : "Mail address used", "mailFrom" : "Mail address used",
"eraseAllFilters" : "Erase all filters", "eraseAllFilters" : "Erase all filters",
"isMulticontact" : "Multi-contact", "isMulticontact" : "Multi-contact",
"emailSendTest" : "Email send test",
"beginSendTest" : "Begin send test",
"emailSendSuccess" : "Email sent",
"emailSendInProgress" : "Sending email...",
}; };
...@@ -759,6 +759,10 @@ export const LANG_FR = { ...@@ -759,6 +759,10 @@ export const LANG_FR = {
"mailFrom" : "Adresse e-mail utilisée", "mailFrom" : "Adresse e-mail utilisée",
"eraseAllFilters" : "Effacer tous les filtres", "eraseAllFilters" : "Effacer tous les filtres",
"isMulticontact" : "Multi-contact", "isMulticontact" : "Multi-contact",
"emailSendTest" : "Test d'envoi",
"beginSendTest" : "Commencer le test",
"emailSendSuccess" : "Envoi réussi",
"emailSendInProgress" : "En cours d'envoi",
}; };
...@@ -762,4 +762,8 @@ export const LANG_NL = { ...@@ -762,4 +762,8 @@ export const LANG_NL = {
"mailFrom" : "_TO_TRANSLATE", "mailFrom" : "_TO_TRANSLATE",
"eraseAllFilters" : "_TO_TRANSLATE", "eraseAllFilters" : "_TO_TRANSLATE",
"isMulticontact" : "_TO_TRANSLATE", "isMulticontact" : "_TO_TRANSLATE",
"emailSendTest" : "_TO_TRANSLATE",
"beginSendTest" : "_TO_TRANSLATE",
"emailSendSuccess" : "_TO_TRANSLATE",
"emailSendInProgress" : "_TO_TRANSLATE",
}; };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment