]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-moderation/report-modals/comment-report.component.ts
Fix client lint
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-moderation / report-modals / comment-report.component.ts
CommitLineData
8ca56654
C
1import { mapValues, pickBy } from 'lodash-es'
2import { Component, Input, OnInit, ViewChild } from '@angular/core'
8ca56654 3import { Notifier } from '@app/core'
7ed1edbb
C
4import { ABUSE_REASON_VALIDATOR } from '@app/shared/form-validators/abuse-validators'
5import { FormReactive, FormValidatorService } from '@app/shared/shared-forms'
cfde28ba 6import { VideoComment } from '@app/shared/shared-video-comment'
8ca56654
C
7import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
8import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref'
bd45d503
C
9import { abusePredefinedReasonsMap } from '@shared/core-utils/abuse'
10import { AbusePredefinedReasonsString } from '@shared/models'
cfde28ba 11import { AbuseService } from '../abuse.service'
8ca56654
C
12
13@Component({
14 selector: 'my-comment-report',
cfde28ba
C
15 templateUrl: './report.component.html',
16 styleUrls: [ './report.component.scss' ]
8ca56654
C
17})
18export class CommentReportComponent extends FormReactive implements OnInit {
19 @Input() comment: VideoComment = null
20
21 @ViewChild('modal', { static: true }) modal: NgbModal
22
cfde28ba 23 modalTitle: string
8ca56654
C
24 error: string = null
25 predefinedReasons: { id: AbusePredefinedReasonsString, label: string, description?: string, help?: string }[] = []
8ca56654
C
26
27 private openedModal: NgbModalRef
28
29 constructor (
30 protected formValidatorService: FormValidatorService,
31 private modalService: NgbModal,
8ca56654 32 private abuseService: AbuseService,
66357162 33 private notifier: Notifier
8ca56654
C
34 ) {
35 super()
36 }
37
38 get currentHost () {
39 return window.location.host
40 }
41
42 get originHost () {
cfde28ba 43 if (this.isRemote()) {
8ca56654
C
44 return this.comment.account.host
45 }
46
47 return ''
48 }
49
50 ngOnInit () {
66357162 51 this.modalTitle = $localize`Report comment`
cfde28ba 52
8ca56654 53 this.buildForm({
7ed1edbb 54 reason: ABUSE_REASON_VALIDATOR,
8ca56654
C
55 predefinedReasons: mapValues(abusePredefinedReasonsMap, r => null)
56 })
57
58 this.predefinedReasons = this.abuseService.getPrefefinedReasons('comment')
59 }
60
61 show () {
62 this.openedModal = this.modalService.open(this.modal, { centered: true, keyboard: false, size: 'lg' })
63 }
64
65 hide () {
66 this.openedModal.close()
67 this.openedModal = null
68 }
69
70 report () {
71 const reason = this.form.get('reason').value
72 const predefinedReasons = Object.keys(pickBy(this.form.get('predefinedReasons').value)) as AbusePredefinedReasonsString[]
73
74 this.abuseService.reportVideo({
75 reason,
76 predefinedReasons,
77 comment: {
78 id: this.comment.id
79 }
1378c0d3
C
80 }).subscribe({
81 next: () => {
66357162 82 this.notifier.success($localize`Comment reported.`)
8ca56654
C
83 this.hide()
84 },
85
1378c0d3
C
86 error: err => this.notifier.error(err.message)
87 })
8ca56654
C
88 }
89
cfde28ba 90 isRemote () {
8ca56654
C
91 return !this.comment.isLocal
92 }
93}