[frontend] Add custom design for email
This commit is contained in:
parent
0d902cb9f8
commit
2d6689ac5a
|
@ -0,0 +1,21 @@
|
||||||
|
<h2 mat-dialog-title>Create new inbox</h2>
|
||||||
|
|
||||||
|
<mat-dialog-content class="mat-typography">
|
||||||
|
<form class="input" [formGroup]="form">
|
||||||
|
<mat-form-field>
|
||||||
|
<mat-label>New inbox address</mat-label>
|
||||||
|
<input matInput formControlName="name" />
|
||||||
|
<mat-error
|
||||||
|
*ngIf="form.controls.name.errors && form.controls.name.errors.required"
|
||||||
|
>Inbox address is required</mat-error
|
||||||
|
>
|
||||||
|
</mat-form-field>
|
||||||
|
</form>
|
||||||
|
</mat-dialog-content>
|
||||||
|
|
||||||
|
<mat-dialog-actions align="end">
|
||||||
|
<button mat-button (click)="onCancel()">Cancel</button>
|
||||||
|
<button mat-button (click)="onSubmit()" cdkFocusInitial>
|
||||||
|
Create address
|
||||||
|
</button>
|
||||||
|
</mat-dialog-actions>
|
|
@ -0,0 +1,24 @@
|
||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { EmailDialogComponent } from './email-dialog.component';
|
||||||
|
|
||||||
|
describe('EmailDialogComponent', () => {
|
||||||
|
let component: EmailDialogComponent;
|
||||||
|
let fixture: ComponentFixture<EmailDialogComponent>;
|
||||||
|
|
||||||
|
beforeEach(async(() => {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
declarations: [EmailDialogComponent],
|
||||||
|
}).compileComponents();
|
||||||
|
}));
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(EmailDialogComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,54 @@
|
||||||
|
import { Component, OnInit, Input } from '@angular/core';
|
||||||
|
import { MatDialogRef } from '@angular/material/dialog';
|
||||||
|
import { Validators, FormBuilder } from '@angular/forms';
|
||||||
|
import { EmailService } from 'src/app/core/api';
|
||||||
|
import { first } from 'rxjs/operators';
|
||||||
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-email-dialog',
|
||||||
|
templateUrl: './email-dialog.component.html',
|
||||||
|
styleUrls: ['./email-dialog.component.scss'],
|
||||||
|
})
|
||||||
|
export class EmailDialogComponent implements OnInit {
|
||||||
|
@Input() hoodId;
|
||||||
|
form;
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
public dialogRef: MatDialogRef<EmailDialogComponent>,
|
||||||
|
private formBuilder: FormBuilder,
|
||||||
|
private emailService: EmailService,
|
||||||
|
private snackBar: MatSnackBar
|
||||||
|
) {}
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
this.form = this.formBuilder.group({
|
||||||
|
name: ['', Validators.required],
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
onCancel() {
|
||||||
|
this.dialogRef.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
onSubmit() {
|
||||||
|
if (this.form.invalid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.emailService
|
||||||
|
.createEmail(this.hoodId, {
|
||||||
|
name: this.form.controls.name.value,
|
||||||
|
})
|
||||||
|
.pipe(first())
|
||||||
|
.subscribe(
|
||||||
|
() => {
|
||||||
|
this.dialogRef.close();
|
||||||
|
},
|
||||||
|
(error) => {
|
||||||
|
this.snackBar.open('Address already taken', 'Close', {
|
||||||
|
duration: 2000,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
<p>email-info-dialog works!</p>
|
|
@ -0,0 +1,24 @@
|
||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { EmailInfoDialogComponent } from './email-info-dialog.component';
|
||||||
|
|
||||||
|
describe('EmailInfoDialogComponent', () => {
|
||||||
|
let component: EmailInfoDialogComponent;
|
||||||
|
let fixture: ComponentFixture<EmailInfoDialogComponent>;
|
||||||
|
|
||||||
|
beforeEach(async(() => {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
declarations: [EmailInfoDialogComponent],
|
||||||
|
}).compileComponents();
|
||||||
|
}));
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(EmailInfoDialogComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,12 @@
|
||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-email-info-dialog',
|
||||||
|
templateUrl: './email-info-dialog.component.html',
|
||||||
|
styleUrls: ['./email-info-dialog.component.scss'],
|
||||||
|
})
|
||||||
|
export class EmailInfoDialogComponent implements OnInit {
|
||||||
|
constructor() {}
|
||||||
|
|
||||||
|
ngOnInit(): void {}
|
||||||
|
}
|
|
@ -1,20 +1,34 @@
|
||||||
<mat-card>
|
<mat-card>
|
||||||
<mat-card-header>
|
<mat-card-header>
|
||||||
<mat-card-title>E-Mails</mat-card-title>
|
<mat-card-title class="platform-title">
|
||||||
|
<div class="platform-heading">
|
||||||
|
E-Mails
|
||||||
|
</div>
|
||||||
|
<button mat-icon-button aria-label="How to use">
|
||||||
|
<mat-icon matTooltip="How to use" class="info-button">info</mat-icon>
|
||||||
|
</button>
|
||||||
|
</mat-card-title>
|
||||||
</mat-card-header>
|
</mat-card-header>
|
||||||
<mat-card-content>
|
<mat-card-content>
|
||||||
<mat-list *ngIf="emails$ | async as emails">
|
<mat-list *ngIf="emails$ | async as emails">
|
||||||
<mat-list-item *ngIf="emails.length === 0">
|
<mat-list-item *ngIf="emails.length === 0; else startButton">
|
||||||
<button mat-menu-item>
|
<button mat-menu-item (click)="onCreate()">
|
||||||
<mat-icon>add</mat-icon>
|
<mat-icon>add</mat-icon>
|
||||||
<span> Add a platform connection!</span>
|
<span> Add a platform connection!</span>
|
||||||
</button>
|
</button>
|
||||||
<mat-divider></mat-divider>
|
<mat-divider></mat-divider>
|
||||||
</mat-list-item>
|
</mat-list-item>
|
||||||
|
<ng-template #startButton>
|
||||||
|
<mat-list-item>
|
||||||
|
<div class="toggle-container">
|
||||||
|
<mat-slide-toggle class="toggle"></mat-slide-toggle>
|
||||||
|
</div>
|
||||||
|
<mat-divider></mat-divider>
|
||||||
|
</mat-list-item>
|
||||||
|
</ng-template>
|
||||||
<mat-list-item *ngFor="let email of emails">
|
<mat-list-item *ngFor="let email of emails">
|
||||||
<div class="entry">
|
<div class="entry">
|
||||||
Telegramdummy
|
{{ email.name }}
|
||||||
<mat-slide-toggle></mat-slide-toggle>
|
|
||||||
<button
|
<button
|
||||||
mat-icon-button
|
mat-icon-button
|
||||||
[matMenuTriggerFor]="menu"
|
[matMenuTriggerFor]="menu"
|
||||||
|
@ -24,17 +38,17 @@
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<mat-divider></mat-divider>
|
<mat-divider></mat-divider>
|
||||||
</mat-list-item>
|
|
||||||
</mat-list>
|
|
||||||
<mat-menu #menu="matMenu">
|
<mat-menu #menu="matMenu">
|
||||||
<button mat-menu-item>
|
<button mat-menu-item (click)="onDelete(email.id)">
|
||||||
<mat-icon>delete</mat-icon>
|
<mat-icon>delete</mat-icon>
|
||||||
<span>Delete</span>
|
<span>Delete</span>
|
||||||
</button>
|
</button>
|
||||||
<button mat-menu-item>
|
<button mat-menu-item (click)="onCreate()">
|
||||||
<mat-icon>add</mat-icon>
|
<mat-icon>add</mat-icon>
|
||||||
<span>Add another</span>
|
<span>Add another</span>
|
||||||
</button>
|
</button>
|
||||||
</mat-menu>
|
</mat-menu>
|
||||||
|
</mat-list-item>
|
||||||
|
</mat-list>
|
||||||
</mat-card-content>
|
</mat-card-content>
|
||||||
</mat-card>
|
</mat-card>
|
||||||
|
|
|
@ -1,6 +1,29 @@
|
||||||
.entry {
|
.entry {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 4fr 40px 20px;
|
grid-template-columns: 4fr 20px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.platform-title {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 40px;
|
||||||
|
width: 100%;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.platform-heading {
|
||||||
|
align-self: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toggle-container {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 4fr 30px;
|
||||||
|
width: 100%;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toggle {
|
||||||
|
grid-column-start: 2;
|
||||||
|
align-self: flex-start;
|
||||||
|
}
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
import { Component, OnInit, Input } from '@angular/core';
|
import { Component, OnInit, Input } from '@angular/core';
|
||||||
import { Observable } from 'rxjs/internal/Observable';
|
import { Observable } from 'rxjs/internal/Observable';
|
||||||
import { EmailService } from 'src/app/core/api';
|
import { EmailService } from 'src/app/core/api';
|
||||||
|
import { MatDialog } from '@angular/material/dialog';
|
||||||
|
import { Router } from '@angular/router';
|
||||||
|
import { EmailDialogComponent } from '../email-dialog/email-dialog.component';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-email-settings',
|
selector: 'app-email-settings',
|
||||||
|
@ -11,9 +14,33 @@ export class EmailSettingsComponent implements OnInit {
|
||||||
@Input() hoodId;
|
@Input() hoodId;
|
||||||
emails$: Observable<Array<any>>;
|
emails$: Observable<Array<any>>;
|
||||||
|
|
||||||
constructor(private emailService: EmailService) {}
|
constructor(
|
||||||
|
private emailService: EmailService,
|
||||||
|
public dialog: MatDialog,
|
||||||
|
private router: Router
|
||||||
|
) {}
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
|
this.reload();
|
||||||
|
}
|
||||||
|
|
||||||
|
private reload() {
|
||||||
this.emails$ = this.emailService.getEmails(this.hoodId);
|
this.emails$ = this.emailService.getEmails(this.hoodId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
onDelete(emailId) {
|
||||||
|
this.emailService.deleteEmail(emailId, this.hoodId).subscribe(() => {
|
||||||
|
this.reload();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
onCreate() {
|
||||||
|
const dialogRef = this.dialog.open(EmailDialogComponent);
|
||||||
|
|
||||||
|
dialogRef.afterClosed().subscribe((hood) => {
|
||||||
|
// if (hood && hood.id) {
|
||||||
|
// this.router.navigate(['/dashboard/hoods', hood.id]);
|
||||||
|
// }
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,3 +12,7 @@ body {
|
||||||
.mat-tab-body-content {
|
.mat-tab-body-content {
|
||||||
overflow: hidden !important;
|
overflow: hidden !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.info-button {
|
||||||
|
color: #9e9e9e;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue