]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/guards/can-deactivate-guard.service.ts
Changelog typos
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / guards / can-deactivate-guard.service.ts
CommitLineData
529479f9 1import { Injectable } from '@angular/core'
23db998f 2import { CanDeactivate } from '@angular/router'
db400f44 3import { Observable } from 'rxjs'
f6a043df 4import { ConfirmService } from '../../core/index'
b1d40cff 5import { I18n } from '@ngx-translate/i18n-polyfill'
529479f9 6
c199c427
C
7export type CanComponentDeactivateResult = { text?: string, canDeactivate: Observable<boolean> | boolean }
8
529479f9 9export interface CanComponentDeactivate {
c199c427 10 canDeactivate: () => CanComponentDeactivateResult
529479f9
DG
11}
12
13@Injectable()
14export class CanDeactivateGuard implements CanDeactivate<CanComponentDeactivate> {
b1d40cff
C
15 constructor (
16 private confirmService: ConfirmService,
17 private i18n: I18n
18 ) { }
529479f9 19
23db998f 20 canDeactivate (component: CanComponentDeactivate) {
f6a043df 21 const result = component.canDeactivate()
b1d40cff 22 const text = result.text || this.i18n('All unsaved data will be lost, are you sure you want to leave this page?')
f6a043df
C
23
24 return result.canDeactivate || this.confirmService.confirm(
25 text,
b1d40cff 26 this.i18n('Warning')
529479f9
DG
27 )
28 }
29
30}