npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@govuk-one-login/one-login-language-toggle

v2.0.0

Published

Reusable language toggle for GDS One Login

Downloads

3,183

Readme

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. As more information is collated, the package and documentation will be updated. As such, it is considered a WIP and the pods will be notified when a stable release is ready.

Getting Started

Installation

  1. Install NPM package

    npm install one-login-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/one-login-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 "language-toggle/macro.njk" import oneloginLanguageSelect %}
  4. Add the nunjuck component where you need:

    {
      {
        oneloginLanguageSelect({
          ariaLabel: "Choose a language",
          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/one-login-language-toggle")
      ])
    );
  6. Include the stylesheet from one-login-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.