Element Framework Translate
@refinitiv-ui/translate
is a decorator to enable translations for Element Framework components.
It is used in conjunction with @refinitiv-ui/phrasebook
and @refinitiv-ui/i18n
.
Usage
@refinitiv-ui/translate
is designed for Element Framework v7 and Lit Element.
npm install @refinitiv-ui/translate
A typical element configuration may look as follows.
import { BasicElement, TemplateResult, customElement, html, property } from '@refinitiv-ui/core';
import '@refinitiv-ui/phrasebook/locale/en/my-translate-element.js';
import { TranslateDirective, TranslatePromise, translate } from '@refinitiv-ui/translate';
@customElement('my-translate-element')
export class MyTranslateElement extends BasicElement {
@translate()
private t!: TranslateDirective;
@property({ type: Number })
public count = 0;
protected render(): TemplateResult {
return html`<div part="label">
${this.t('TRANSLATE_COUNT', {
count: this.count
})}
</div>
<slot></slot>`;
}
}
Translate
Translate decorator is used to bind an Element with translate functionality. By applying the decorator, the element subscribes to Phrasebook updates in order to react on new translations; and to lang attribute changes on document and element levels.
In order to limit the number of unnecessary updates, translations are scoped. Scope names are usually the element's local name by default. For example, my-translate-element
.
Decorator can be applied in different contexts described below.
Translate Directive
Directive is part of LitHTML. Directives are used from within render
function as part of TemplateResult
.
@translate()
private t!: TranslateDirective;
@translate('custom-scope')
private tCustom!: TranslateDirective;
Directive translations are applied in the render
method.
protected render (): TemplateResult {
return html`
<div>${this.t('KEY')}</div>
<div>${this.t('KEY', { state: 10 })}</div>
<div>${this.tCustom('CUSTOM_KEY', {
b: (chunks: string) => `<b>${chunks}</b>` /* add <b> tags */
})}</div>
`;
}
Translation key and options are defined by the translation itself. To get a better idea you may read intl-messageformat.
Translate Promise
Translations can be resolved outside render
context by using mode = promise
in the translate
decorator.
@translate({
mode: 'promise'
})
private t!: TranslatePromise;
@translate({
mode: 'promise',
scope: 'custom-scope'
})
private tCustom!: TranslatePromise;
Promise translations can be resolved in any asynchronous function. performUpdate
is a good place to obtain the value before first render.
protected async performUpdate (): Promise<void> {
const key = await this.t('KEY');
console.log(key);
super.performUpdate();
}