Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@fluent/sequence

Package Overview
Dependencies
Maintainers
4
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluent/sequence

Manage ordered sequences of FluentBundles

  • 0.8.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
4
Created
Source

@fluent/sequence

@fluent/sequence provides mapping functions from string identifiers to FluentBundle instances taken from synchronous or asynchronous sequences. It's part of Project Fluent.

Installation

@fluent/sequence can be used both on the client-side and the server-side. You can install it from the npm registry or use it as a standalone script (as the FluentSequence global).

npm install @fluent/sequence

How to use

An ordered iterable of FluentBundle instances can represent the current negotiated fallback chain of languages. This iterable can be used to find the best existing translation for a given identifier.

@fluent/sequence provides two mapping functions: mapBundleSync, and mapBundleAsync. They can be used to find the first FluentBundle in the given iterable which contains the translation with the given identifier. If the iterable is ordered according to the result of a language negotiation the returned FluentBundle contains the best available translation.

A simple function which formats translations based on the identifier might be implemented as follows:

import { mapBundleSync } from "@fluent/sequence";

function formatString(id, args) {
  // contexts is a negotiated iterable of FluentBundle instances.
  let ctx = mapBundleSync(contexts, id);

  if (ctx === null) {
    return id;
  }

  let msg = ctx.getMessage(id);
  return ctx.format(msg, args);
}

When passing a synchronous iterator to mapBundleSync, wrap it in CachedSyncIterable from the cached-iterable package. When passing an asynchronous iterator to mapBundleAsync, wrap it in CachedAsyncIterable. This allows multiple calls to mapContext* without advancing and eventually depleting the iterator.

The API reference is available at https://projectfluent.org/fluent.js/sequence.

Keywords

FAQs

Package last updated on 13 Mar 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc