]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/misc/help.component.ts
NoImplicitAny flag true (#1157)
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / misc / help.component.ts
CommitLineData
04ed10b2 1import { Component, Input, OnChanges, OnInit } from '@angular/core'
621d99f5 2import { MarkdownService } from '@app/videos/shared'
0975cd5c 3import { I18n } from '@ngx-translate/i18n-polyfill'
8a8e02a4
C
4
5@Component({
6 selector: 'my-help',
7 styleUrls: [ './help.component.scss' ],
8 templateUrl: './help.component.html'
9})
10
5afdd0a5 11export class HelpComponent implements OnInit, OnChanges {
8a8e02a4
C
12 @Input() preHtml = ''
13 @Input() postHtml = ''
14 @Input() customHtml = ''
15 @Input() helpType: 'custom' | 'markdownText' | 'markdownEnhanced' = 'custom'
41f657c5 16 @Input() tooltipPlacement = 'right'
8a8e02a4 17
0f7fedc3 18 isPopoverOpened = false
8a8e02a4
C
19 mainHtml = ''
20
0975cd5c
C
21 constructor (private i18n: I18n) { }
22
8a8e02a4 23 ngOnInit () {
5afdd0a5
C
24 this.init()
25 }
26
27 ngOnChanges () {
28 this.init()
29 }
30
0f7fedc3
C
31 onPopoverHidden () {
32 this.isPopoverOpened = false
33 }
34
35 onPopoverShown () {
36 this.isPopoverOpened = true
37 }
38
5afdd0a5 39 private init () {
8a8e02a4
C
40 if (this.helpType === 'custom') {
41 this.mainHtml = this.customHtml
42 return
43 }
44
45 if (this.helpType === 'markdownText') {
621d99f5 46 this.mainHtml = this.formatMarkdownSupport(MarkdownService.TEXT_RULES)
8a8e02a4
C
47 return
48 }
49
50 if (this.helpType === 'markdownEnhanced') {
621d99f5 51 this.mainHtml = this.formatMarkdownSupport(MarkdownService.ENHANCED_RULES)
8a8e02a4
C
52 return
53 }
54 }
621d99f5 55
621d99f5 56 private formatMarkdownSupport (rules: string[]) {
0975cd5c
C
57 // tslint:disable:max-line-length
58 return this.i18n('<a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:') +
621d99f5
C
59 this.createMarkdownList(rules)
60 }
61
62 private createMarkdownList (rules: string[]) {
244b4ae3 63 const rulesToText: any = {
0975cd5c
C
64 'emphasis': this.i18n('Emphasis'),
65 'link': this.i18n('Links'),
66 'newline': this.i18n('New lines'),
67 'list': this.i18n('Lists'),
68 'image': this.i18n('Images')
621d99f5
C
69 }
70
71 const bullets = rules.map(r => rulesToText[r])
72 .filter(text => text)
73 .map(text => '<li>' + text + '</li>')
74 .join('')
75
76 return '<ul>' + bullets + '</ul>'
77 }
8a8e02a4 78}