mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import { Component, OnDestroy, OnInit } from '@angular/core'
|
|
import {
|
|
NgbAccordionModule,
|
|
NgbProgressbarModule,
|
|
} from '@ng-bootstrap/ng-bootstrap'
|
|
import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons'
|
|
import { Subscription } from 'rxjs'
|
|
import { Toast, ToastService } from 'src/app/services/toast.service'
|
|
import { ToastComponent } from '../toast/toast.component'
|
|
|
|
@Component({
|
|
selector: 'pngx-toasts',
|
|
templateUrl: './toasts.component.html',
|
|
styleUrls: ['./toasts.component.scss'],
|
|
imports: [
|
|
ToastComponent,
|
|
NgbAccordionModule,
|
|
NgbProgressbarModule,
|
|
NgxBootstrapIconsModule,
|
|
],
|
|
})
|
|
export class ToastsComponent implements OnInit, OnDestroy {
|
|
constructor(public toastService: ToastService) {}
|
|
|
|
private subscription: Subscription
|
|
|
|
public toasts: Toast[] = [] // array to force change detection
|
|
|
|
ngOnDestroy(): void {
|
|
this.subscription?.unsubscribe()
|
|
}
|
|
|
|
ngOnInit(): void {
|
|
this.subscription = this.toastService.showToast.subscribe((toast) => {
|
|
this.toasts = toast ? [toast] : []
|
|
})
|
|
}
|
|
|
|
closeToast() {
|
|
this.toastService.closeToast(this.toasts[0])
|
|
this.toasts = []
|
|
}
|
|
}
|