fluent-compiler
fluent-compiler
provides a JavaScript stringifier for Fluent. Essentially,
it's a transpiler that allows converting files from Fluent's ftl
format to
JavaScript, outputting an ES6 module that exports a FluentBundle.
The difference between this package and the core fluent
package is that the
latter will need to compile your messages on the client, and is about 10kB when
compressed. The runtime component of fluent-compiler
is about 1.2kB, and it
lets you take care of the message compilation during your build.
NOTE: The current runtime implements the format()/compound()
API of
Fluent.js PR #360, which is likely still to get revised.
API
import { compile } from 'fluent-compiler'
compile(locales, source, options = {}) => string
Param | Type | Description |
---|
locales | `string | string[] |
source | `string | Resource` |
options | CompilerOptions | Compiler options object (optional) |
CompilerOptions
Option | Type | Default | Description |
---|
runtimeGlobals | string[] | ['DATETIME', 'NUMBER'] | Identifiers of global functions available in the runtime |
runtimePath | string | 'fluent-compiler/runtime' | Path for the runtime dependency |
useIsolating | boolean | true | Wrap placeables with Unicode FSI & PDI isolation marks |
withJunk | boolean | false | Include unparsed source as comments in the output |
The string returned by compile()
is the string representation of an ES6
module, which in turn exports bundle and resource interfaces for the source
messages. Note that the bundle.addMessages()
is not included, as it requires
message compilation; use bundle.addResource()
instead:
import bundle from './default_messages'
import { resource } from './extra_messages'
bundle.addResource(resource, { allowOverrides: true })
Usage
Fluent source file messages.it.ftl
:
-sync-brand-name = {$capitalization ->
*[uppercase] Account Firefox
[lowercase] account Firefox
}
sync-dialog-title = {-sync-brand-name}
sync-headline-title =
{-sync-brand-name}: il modo migliore
per avere i tuoi dati sempre con te
# Explicitly request the lowercase variant of the brand name.
sync-signedout-account-title =
Connetti il tuo {-sync-brand-name(capitalization: "lowercase")}
Build script:
import { compile } from 'fluent-compiler'
import fs from 'fs'
const src = fs.readFileSync('messages.it.ftl')
const js = compile('it', src)
fs.writeFileSync('messages.it.js', js)
Application code:
import it from './messages.it'
it.format('sync-signedout-account-title')
Polyfills
The ES6 module output by compile()
will probably need to itself be transpiled,
as it uses Object Spread syntax (currently at Stage 3). Furthermore, the runtime
may need polyfills for the Intl objects and Object.entries (used by the bundle's
messages
getter). In particular, intl-pluralrules patches some of the
deficiencies in current browsers.