blob: a5204de275291d87bbfb07e06bbd1ff9c21d6773 (
plain) (
tree)
|
|
import { Component, OnInit, ViewChild } from '@angular/core'
import { Notifier, ServerService } from '@app/core'
import { I18n } from '@ngx-translate/i18n-polyfill'
import { ContactAdminModalComponent } from '@app/+about/about-instance/contact-admin-modal.component'
import { InstanceService } from '@app/shared/instance/instance.service'
import { MarkdownService } from '@app/shared/renderer'
@Component({
selector: 'my-about-instance',
templateUrl: './about-instance.component.html',
styleUrls: [ './about-instance.component.scss' ]
})
export class AboutInstanceComponent implements OnInit {
@ViewChild('contactAdminModal', { static: true }) contactAdminModal: ContactAdminModalComponent
shortDescription = ''
descriptionHTML = ''
termsHTML = ''
constructor (
private notifier: Notifier,
private serverService: ServerService,
private instanceService: InstanceService,
private markdownService: MarkdownService,
private i18n: I18n
) {}
get instanceName () {
return this.serverService.getConfig().instance.name
}
get isContactFormEnabled () {
return this.serverService.getConfig().email.enabled && this.serverService.getConfig().contactForm.enabled
}
get isNSFW () {
return this.serverService.getConfig().instance.isNSFW
}
ngOnInit () {
this.instanceService.getAbout()
.subscribe(
async res => {
this.shortDescription = res.instance.shortDescription
this.descriptionHTML = await this.markdownService.textMarkdownToHTML(res.instance.description)
this.termsHTML = await this.markdownService.textMarkdownToHTML(res.instance.terms)
},
() => this.notifier.error(this.i18n('Cannot get about information from server'))
)
}
openContactModal () {
return this.contactAdminModal.show()
}
}
|