All files / navbar-vertical si-navbar-vertical-header.component.ts

66.66% Statements 2/3
100% Branches 0/0
100% Functions 0/0
50% Lines 1/2

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                                                      1x      
/**
 * Copyright (c) Siemens 2016 - 2026
 * SPDX-License-Identifier: MIT
 */
import { Component, inject } from '@angular/core';
 
import { SiNavbarVerticalDividerComponent } from './si-navbar-vertical-divider.component';
import { SI_NAVBAR_VERTICAL } from './si-navbar-vertical.provider';
 
@Component({
  selector: 'si-navbar-vertical-header',
  imports: [SiNavbarVerticalDividerComponent],
  template: `
    @if (!navbar.collapsed()) {
      <div class="title si-h5 text-secondary text-truncate p-5" animate.leave="title-leave">
        <ng-content />
      </div>
    } @else {
      <si-navbar-vertical-divider class="divider" animate.leave="divider-leave" />
    }
  `,
  styleUrl: './si-navbar-vertical-header.component.scss',
  host: {
    '[class.collapsed]': 'navbar.collapsed()',
    'animate.enter': 'component-enter'
  }
})
export class SiNavbarVerticalHeaderComponent {
  protected navbar = inject(SI_NAVBAR_VERTICAL);
}