]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/about/about.component.ts
show quota in stats, display quota on the about page, fixes #405 (#421)
[github/Chocobozzz/PeerTube.git] / client / src / app / about / about.component.ts
1 import { Component, OnInit } from '@angular/core'
2 import { ServerService } from '@app/core'
3 import { MarkdownService } from '@app/videos/shared'
4 import { NotificationsService } from 'angular2-notifications'
5
6 @Component({
7 selector: 'my-about',
8 templateUrl: './about.component.html',
9 styleUrls: [ './about.component.scss' ]
10 })
11
12 export class AboutComponent implements OnInit {
13 descriptionHTML = ''
14 termsHTML = ''
15
16 constructor (
17 private notificationsService: NotificationsService,
18 private serverService: ServerService,
19 private markdownService: MarkdownService
20 ) {}
21
22 get instanceName () {
23 return this.serverService.getConfig().instance.name
24 }
25
26 get userVideoQuota () {
27 return this.serverService.getConfig().user.videoQuota
28 }
29
30 ngOnInit () {
31 this.serverService.getAbout()
32 .subscribe(
33 res => {
34 this.descriptionHTML = this.markdownService.textMarkdownToHTML(res.instance.description)
35 this.termsHTML = this.markdownService.textMarkdownToHTML(res.instance.terms)
36 },
37
38 err => this.notificationsService.error('Error getting about from server', err)
39 )
40 }
41
42 }