aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/shared-main/buttons/delete-button.component.ts
blob: c091f5309e40801c62a38354bb9346f33048b09f (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                        






                                               
                                                      
                        
                        
                                  
 
               

                                                  
                                    



                                                   
                                    




                               
   
 
import { Component, Input, OnInit } from '@angular/core'

@Component({
  selector: 'my-delete-button',
  styleUrls: [ './button.component.scss' ],
  templateUrl: './delete-button.component.html'
})

export class DeleteButtonComponent implements OnInit {
  @Input() label: string
  @Input() title: string
  @Input() responsiveLabel = false

  ngOnInit () {
    // <my-delete-button /> No label
    if (this.label === undefined && !this.title) {
      this.title = $localize`Delete`
    }

    // <my-delete-button label /> Use default label
    if (this.label === '') {
      this.label = $localize`Delete`

      if (!this.title) {
        this.title = this.label
      }
    }
  }
}