@govuk-one-login/frontend-language-toggle
TypeScript icon, indicating that this package has built-in type declarations

2.2.1 • Public • Published

Coverage


GOV UK One Login Language Toggle

This package enables GOV UK LOGIN frontend Node.js applications to add a language toggle.
Explore the docs »

Report Bug · Request Feature

Table of Contents
  1. About The Project
  2. Getting Started

About The Project

The GDS One Login Language toggle node package is a shared, reusable nunjuck component created to facilitate the integration of a language toggle.

The purpose of this component is to make it as easy as possible for the various pods that make up the One Login journey to configure and add a configurable language toggle.

The package is owned by the DI Frontend Capability team, part of the development of this tool involves ongoing discovery with the pods responsible for maintaining the frontend repositories that make up the One Login journey. A stable release of the package is now deployed in production.

(back to top)

Getting Started

Installation

  1. Install NPM package

    npm install @govuk-one-login/frontend-language-toggle
  2. Configure your node application's startup file (example: app.js or index.js) and add a new path view to your configureNunjucks viewspath parameter:

    path.resolve("node_modules/frontend-language-toggle");

    [!WARNING] Check if the path to your node module folder is the correct one. [!WARNING]

  3. Import this macro into your base nunjucks template:

     {% from "frontend-language-toggle/build/macro.njk" import languageSelect %}
  4. Add the nunjuck component where you need:

    {
      {
        languageSelect({
          ariaLabel: "Choose a language",
          url: currentUrl
          class: "",
          activeLanguage: htmlLang,
          languages: [
            {
              code: "en",
              text: "English",
               visuallyHidden: "Change to English"
            },
            {
              code: "cy",
              text: "Cymraeg",
              visuallyHidden: "Newid yr iaith ir Gymraeg"
            }
          ]
        });
      }
    }
  5. Ensure the config view engine is set up

    app.set(
      "view engine",
      configureNunjucks(app, [
        path.resolve("node_modules/frontend-language-toggle"),
      ]),
    );
  6. To make the current URL available, add a local variable within your middleware. Wrap this logic in a try-catch block to handle potential errors gracefully. Use your logger of choice to ensure any issues are logged and addressed if the current URL cannot be retrieved.

    app.use((req, res, next) => {
      if (req.i18n) {
        res.locals.htmlLang = req.i18n.language;
        res.locals.pageTitleLang = req.i18n.language;
        res.locals.mainLang = req.i18n.language;
    
       // New line to be added
       try {
       res.locals.currentUrl =
         req.protocol + "://" + req.get("host") + req.originalUrl;
       } catch (error) {
       console.error("Error retrieving current URL:", error.message);
       // Handle the error as needed
       }
        next();
      }
    });
  7. Import the addLanguageParam function into your Nunjucks configuration file (e.g. nunjucks.js) and make it accessible to Nunjucks views. It is used by the component to set the URL.

    const addLanguageParam = require("@govuk-one-login/frontend-language-toggle/build/cjs/language-param-setter.cjs");
    nunjucksEnv.addGlobal("addLanguageParam", addLanguageParam);

    If using TypeScript:

    import addLanguageParam from "@govuk-one-login/frontend-language-toggle/build/esm/language-param-setter";
  8. Include the stylesheet from frontend-language-toggle/stylesheet/styles.css in your front-end application.

[!NOTE]

  • ariaLabel is a brief description of the purpose of the navigation, omitting the term "navigation", as the screen reader will read both the role and the contents of the label.
  • activeLanguage contains the language code of your i18next active language e.g 'en'
  • class lets you add any css class to the nunjuck component.
  • languages is an array of all the languages you support in your application.
  • Language toggle to be placed above the back button. [!NOTE]

Prerequisites

  • Having set the local variable htmlLang in your app.js file or in a middleware function.
  • Having define translation value for ariaLabel property.

Upgrading to V2

As part of the upgrade to version 2 onwards, the location of the macro.njk file has relocated to a build folder, please observe the folder structure and ensure any file paths are updated.

    {% from "frontend-language-toggle/build/macro.njk" import languageSelect %}

Additionally, please ensure stylesheet file paths are updated

    @import "../../../node_modules/@govuk-one-login/frontend-language-toggle/build/stylesheet/styles";

⚠️ Breaking Change

As part of the upgrade to version 2 onwards, the import path for the addLanguageParam function has changed.

In your Nunjucks configuration file (e.g., nunjucks.js), ensure the folder structure reflects the updated import paths:

For CommonJS:

const addLanguageParam = require("@govuk-one-login/frontend-language-toggle");

For ES6/Typescript:

import addLanguageParam from "@govuk-one-login/frontend-language-toggle";

Please update your code accordingly to avoid compatibility issues.

For full details on this change, see: https://github.com/govuk-one-login/govuk-one-login-frontend/pull/84

(back to top)

Package Sidebar

Install

npm i @govuk-one-login/frontend-language-toggle

Weekly Downloads

771

Version

2.2.1

License

ISC

Unpacked Size

12.5 kB

Total Files

13

Last publish

Collaborators

  • pcornishgds
  • nickheal-gds
  • merlinc
  • wilsondrrn
  • gtvj-gds