diff options
author | Chocobozzz <me@florianbigard.com> | 2020-06-23 14:10:17 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-06-23 16:00:49 +0200 |
commit | 67ed6552b831df66713bac9e672738796128d33f (patch) | |
tree | 59c97d41e0b49d75a90aa3de987968ab9b1ff447 /client/src/app/shared/guards | |
parent | 0c4bacbff53bc732f5a2677d62a6ead7752e2405 (diff) | |
download | PeerTube-67ed6552b831df66713bac9e672738796128d33f.tar.gz PeerTube-67ed6552b831df66713bac9e672738796128d33f.tar.zst PeerTube-67ed6552b831df66713bac9e672738796128d33f.zip |
Reorganize client shared modules
Diffstat (limited to 'client/src/app/shared/guards')
-rw-r--r-- | client/src/app/shared/guards/can-deactivate-guard.service.ts | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/client/src/app/shared/guards/can-deactivate-guard.service.ts b/client/src/app/shared/guards/can-deactivate-guard.service.ts deleted file mode 100644 index 3a35fcfb3..000000000 --- a/client/src/app/shared/guards/can-deactivate-guard.service.ts +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | import { Injectable } from '@angular/core' | ||
2 | import { CanDeactivate } from '@angular/router' | ||
3 | import { Observable } from 'rxjs' | ||
4 | import { ConfirmService } from '../../core/index' | ||
5 | import { I18n } from '@ngx-translate/i18n-polyfill' | ||
6 | |||
7 | export type CanComponentDeactivateResult = { text?: string, canDeactivate: Observable<boolean> | boolean } | ||
8 | |||
9 | export interface CanComponentDeactivate { | ||
10 | canDeactivate: () => CanComponentDeactivateResult | ||
11 | } | ||
12 | |||
13 | @Injectable() | ||
14 | export class CanDeactivateGuard implements CanDeactivate<CanComponentDeactivate> { | ||
15 | constructor ( | ||
16 | private confirmService: ConfirmService, | ||
17 | private i18n: I18n | ||
18 | ) { } | ||
19 | |||
20 | canDeactivate (component: CanComponentDeactivate) { | ||
21 | const result = component.canDeactivate() | ||
22 | const text = result.text || this.i18n('All unsaved data will be lost, are you sure you want to leave this page?') | ||
23 | |||
24 | return result.canDeactivate || this.confirmService.confirm( | ||
25 | text, | ||
26 | this.i18n('Warning') | ||
27 | ) | ||
28 | } | ||
29 | |||
30 | } | ||