blob: 36e7a8e5b00f5cc8a339269554d144217c0c2cd3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
import { Component, OnInit } from '@angular/core'
import { Notifier, ServerService } from '@app/core'
import { MarkdownService } from '@app/videos/shared'
import { I18n } from '@ngx-translate/i18n-polyfill'
@Component({
selector: 'my-about-instance',
templateUrl: './about-instance.component.html',
styleUrls: [ './about-instance.component.scss' ]
})
export class AboutInstanceComponent implements OnInit {
shortDescription = ''
descriptionHTML = ''
termsHTML = ''
constructor (
private notifier: Notifier,
private serverService: ServerService,
private markdownService: MarkdownService,
private i18n: I18n
) {}
get instanceName () {
return this.serverService.getConfig().instance.name
}
get userVideoQuota () {
return this.serverService.getConfig().user.videoQuota
}
get isSignupAllowed () {
return this.serverService.getConfig().signup.allowed
}
ngOnInit () {
this.serverService.getAbout()
.subscribe(
res => {
this.shortDescription = res.instance.shortDescription
this.descriptionHTML = this.markdownService.textMarkdownToHTML(res.instance.description)
this.termsHTML = this.markdownService.textMarkdownToHTML(res.instance.terms)
},
() => this.notifier.error(this.i18n('Cannot get about information from server'))
)
}
}
|