Reorganize client shared modules
[oweals/peertube.git] / client / src / app / modal / instance-config-warning-modal.component.ts
1 import { Component, ElementRef, ViewChild } from '@angular/core'
2 import { Notifier, UserService } from '@app/core'
3 import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
4 import { About } from '@shared/models/server'
5
6 @Component({
7   selector: 'my-instance-config-warning-modal',
8   templateUrl: './instance-config-warning-modal.component.html',
9   styleUrls: [ './instance-config-warning-modal.component.scss' ]
10 })
11 export class InstanceConfigWarningModalComponent {
12   @ViewChild('modal', { static: true }) modal: ElementRef
13
14   stopDisplayModal = false
15   about: About
16
17   constructor (
18     private userService: UserService,
19     private modalService: NgbModal,
20     private notifier: Notifier
21   ) { }
22
23   show (about: About) {
24     this.about = about
25
26     const ref = this.modalService.open(this.modal, { centered: true })
27
28     ref.result.finally(() => {
29       if (this.stopDisplayModal === true) this.doNotOpenAgain()
30     })
31   }
32
33   isDefaultShortDescription (description: string) {
34     return description === 'PeerTube, a federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly ' +
35       'in the web browser with WebTorrent and Angular.'
36   }
37
38   private doNotOpenAgain () {
39     this.userService.updateMyProfile({ noInstanceConfigWarningModal: true })
40         .subscribe(
41           () => console.log('We will not open the instance config warning modal again.'),
42
43           err => this.notifier.error(err.message)
44         )
45   }
46 }