]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/modal/instance-config-warning-modal.component.ts
Update project description
[github/Chocobozzz/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, an ActivityPub-federated video streaming platform using P2P directly in your web browser.'
35 }
36
37 private doNotOpenAgain () {
38 this.userService.updateMyProfile({ noInstanceConfigWarningModal: true })
39 .subscribe(
40 () => console.log('We will not open the instance config warning modal again.'),
41
42 err => this.notifier.error(err.message)
43 )
44 }
45 }