aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+accounts/account-about/account-about.component.ts
blob: 8c01e4007d270018a5011409375d69f72bdd295e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                   
                                                            

                                                                 
                                                   





                                                 
                                                                 
                  
                      
 

                                  
               
                       

                                            



                                    
                                                       
                                   
                              
                                                                                                            
        

   



                                                      
                            
                                                         
 
                                      

   
import { Subscription } from 'rxjs'
import { Component, OnDestroy, OnInit } from '@angular/core'
import { MarkdownService } from '@app/core'
import { Account, AccountService } from '@app/shared/shared-main'
import { I18n } from '@ngx-translate/i18n-polyfill'

@Component({
  selector: 'my-account-about',
  templateUrl: './account-about.component.html',
  styleUrls: [ './account-about.component.scss' ]
})
export class AccountAboutComponent implements OnInit, OnDestroy {
  account: Account
  descriptionHTML = ''

  private accountSub: Subscription

  constructor (
    private i18n: I18n,
    private accountService: AccountService,
    private markdownService: MarkdownService
  ) { }

  ngOnInit () {
    // Parent get the account for us
    this.accountSub = this.accountService.accountLoaded
      .subscribe(async account => {
        this.account = account
        this.descriptionHTML = await this.markdownService.textMarkdownToHTML(this.account.description, true)
      })
  }

  ngOnDestroy () {
    if (this.accountSub) this.accountSub.unsubscribe()
  }

  getAccountDescription () {
    if (this.descriptionHTML) return this.descriptionHTML

    return this.i18n('No description')
  }
}