All files / src/app/components/empty-placeholder empty-placeholder.component.ts

20% Statements 2/10
0% Branches 0/6
25% Functions 1/4
11.11% Lines 1/9

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31                  52x                                          
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute, RouterLink } from '@angular/router';
 
@Component({
    selector: 'app-empty-placeholder',
    imports: [RouterLink],
    templateUrl: './empty-placeholder.component.html',
    styleUrl: './empty-placeholder.component.scss'
})
export class EmptyPlaceholderComponent implements OnInit{
 
    ressourceName: string = "data";
 
    constructor(private route: ActivatedRoute){}
 
    ngOnInit(){
        this.route.url.subscribe(urlSegments => {
            let segment = urlSegments[0].path;
            if (segment !== undefined){
              if (segment.endsWith('s')){
                segment = segment.slice(0, -1);
              }
              this.ressourceName = segment.charAt(0).toUpperCase() + segment.slice(1);
            }
          });
    }
 
 
 
}