blob: fb74cdf19f2ff75219da0ea3ed55702440bc90a2 (
plain) (
tree)
|
|
import { Component, ElementRef, ViewChild, Inject, LOCALE_ID } from '@angular/core'
import { I18N_LOCALES } from '../../../../shared'
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
import { sortBy } from '@app/shared/misc/utils'
import { getCompleteLocale } from '@shared/models/i18n'
import { isOnDevLocale, getDevLocale } from '@app/shared/i18n/i18n-utils'
@Component({
selector: 'my-language-chooser',
templateUrl: './language-chooser.component.html',
styleUrls: [ './language-chooser.component.scss' ]
})
export class LanguageChooserComponent {
@ViewChild('modal', { static: true }) modal: ElementRef
languages: { id: string, label: string }[] = []
constructor (
private modalService: NgbModal,
@Inject(LOCALE_ID) private localeId: string
) {
const l = Object.keys(I18N_LOCALES)
.map(k => ({ id: k, label: I18N_LOCALES[k] }))
this.languages = sortBy(l, 'label')
}
show () {
this.modalService.open(this.modal, { centered: true })
}
buildLanguageLink (lang: { id: string }) {
return window.location.origin + '/' + lang.id
}
getCurrentLanguage () {
const english = 'English'
const locale = isOnDevLocale() ? getDevLocale() : getCompleteLocale(this.localeId)
if (locale) return I18N_LOCALES[locale] || english
return english
}
}
|