Skip to content
Snippets Groups Projects
notification.service.ts 2.2 KiB
Newer Older
  • Learn to ignore specific revisions
  • import { MatSnackBar } from '@angular/material/snack-bar';
    
    Alex ORLUC's avatar
    Alex ORLUC committed
    import { Injectable, Component, Inject } from '@angular/core';
    
    import { MAT_SNACK_BAR_DATA } from '@angular/material/snack-bar';
    
    import { Router } from '@angular/router';
    
    Alex ORLUC's avatar
    Alex ORLUC committed
    import { LANG } from './translate.component';
    
    @Component({
        selector: 'custom-snackbar',
    
        templateUrl: "notification.service.html",
    
    })
    export class CustomSnackbarComponent {
        constructor(@Inject(MAT_SNACK_BAR_DATA) public data: any) { }
    }
    
    
    @Injectable()
    export class NotificationService {
    
    Alex ORLUC's avatar
    Alex ORLUC committed
        lang: any = LANG;
    
    
        constructor(private router: Router, public snackBar: MatSnackBar) {
    
    Alex ORLUC's avatar
    Alex ORLUC committed
        success(message: string) {
            this.snackBar.openFromComponent(CustomSnackbarComponent, {
    
    Alex ORLUC's avatar
    Alex ORLUC committed
                data: { message: message, icon: 'info-circle' }
            });
    
        error(message: string, url: string = null) {
    
    Alex ORLUC's avatar
    Alex ORLUC committed
            this.snackBar.openFromComponent(CustomSnackbarComponent, {
    
                duration: 4000,
                data: { url: url, message: message, icon: 'exclamation-triangle' }
    
    Alex ORLUC's avatar
    Alex ORLUC committed
            });
    
    
        handleErrors(err: any) {
            console.log(err);
    
    Alex ORLUC's avatar
    Alex ORLUC committed
            if (err.status === 401 && this.router.url !== '/home') {
                this.router.navigate(['/home']);
    
                window.location.reload(true);
    
    Alex ORLUC's avatar
    Alex ORLUC committed
                this.error(this.lang.mustReconnect);
    
            } else if (err.status === 0 && err.statusText === 'Unknown Error') {
    
    Alex ORLUC's avatar
    Alex ORLUC committed
                this.error(this.lang.connectionFailed);
    
                if (err.error !== undefined) {
                    if (err.error.errors !== undefined) {
    
                        this.error(err.error.errors, err.url);
    
                        if (err.status === 403 || err.status === 404) {
                            this.router.navigate(['/home']);
                        }
                    } else if (err.error.exception !== undefined) {
    
                        this.error(err.error.exception[0].message, err.url);
    
                    } else if(err.error.error !== undefined){
    
                        this.error(err.error.error.message, err.url);
    
                        this.error(`${err.status} : ${err.statusText}`, err.url);