From cb5d4146dd7bdbd291651f0419ecabbd3329b62d Mon Sep 17 00:00:00 2001 From: Slava Fomin II Date: Sat, 23 Apr 2022 18:23:18 +0300 Subject: [PATCH] Proof of concept for #587 (transform placeables) Signed-off-by: Slava Fomin II --- fluent-bundle/src/bundle.ts | 10 +++++++++- fluent-bundle/src/resolver.ts | 6 ++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/fluent-bundle/src/bundle.ts b/fluent-bundle/src/bundle.ts index 96bc6b7e..55fa434f 100644 --- a/fluent-bundle/src/bundle.ts +++ b/fluent-bundle/src/bundle.ts @@ -11,6 +11,10 @@ export type TextTransform = (text: string) => string; type NativeValue = string | number | Date; export type FluentVariable = FluentValue | NativeValue; +const noTransform: TextTransform = ( + text => text +); + /** * Message bundles are single-language stores of translation resources. They are * responsible for formatting message values and attributes to strings. @@ -23,6 +27,7 @@ export class FluentBundle { public _functions: Record; public _useIsolating: boolean; public _transform: TextTransform; + public _transformPlaceable: TextTransform; public _intls: IntlCache; /** @@ -59,11 +64,13 @@ export class FluentBundle { { functions, useIsolating = true, - transform = (v: string): string => v + transform = noTransform, + transformPlaceable = noTransform, }: { functions?: Record; useIsolating?: boolean; transform?: TextTransform; + transformPlaceable?: TextTransform; } = {} ) { this.locales = Array.isArray(locales) ? locales : [locales]; @@ -74,6 +81,7 @@ export class FluentBundle { }; this._useIsolating = useIsolating; this._transform = transform; + this._transformPlaceable = transformPlaceable; this._intls = getMemoizerForLocale(locales); } diff --git a/fluent-bundle/src/resolver.ts b/fluent-bundle/src/resolver.ts index 297f4cd9..33076ac2 100644 --- a/fluent-bundle/src/resolver.ts +++ b/fluent-bundle/src/resolver.ts @@ -181,7 +181,7 @@ function resolveVariableReference( // Convert the argument to a Fluent type. switch (typeof arg) { case "string": - return arg; + return scope.bundle._transformPlaceable(arg); case "number": return new FluentNumber(arg); case "object": @@ -345,7 +345,9 @@ export function resolveComplexPattern( result.push(FSI); } - result.push(resolveExpression(scope, elem).toString(scope)); + result.push( + resolveExpression(scope, elem).toString(scope) + ); if (useIsolating) { result.push(PDI);