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-prototype-kit-tabs-interface

v1.1.1

Published

Simplifies use of the tabs interface we created for the DVSA's 'Manage your vehicle testing' service.

Downloads

151

Readme

GOVUK Prototype Kit Tabs Interface

This NPM package simplifies the use of a custom tabbed interface pattern created for the DVSA's "Manage your vehicle testing" service. It is designed for dashboard-style applications where users frequently check real-time, tabular data or perform routine tasks. While not ideal for all GOV.UK services, this pattern works well for regularly used, task-based services.

Installation

To install the package, run the following command:

npm install govuk-prototype-kit-tabs-interface

How It Works

The tabbed interface is defined in the data/session-data-defaults.js file, which outlines the sections and corresponding tabs.

Here’s an example structure:

module.exports = {
  "sections": [
    {
      name: "Facility management",
      description: "Access your on-the-day completed test results and search your past transactions.",
      tabs: [
        {
          name: "Today's completed tests",
          content: 'todays-tests'
        },
        {
          name: "Search past transactions",
          content: 'past-transactions',
          deepContent: [
            {
              name: 'Search results',
              content: 'transactions-table'
            }
          ]
        }
      ]
    },
    {
      name: "Apply for a vehicle test",
      description: "Make an application for a specialist or technical test.",
      tabs: [
        {
          name: "Apply",
          content: "apply"
        },
        {
          name: "Current applications",
          content: "current"
        },
        {
          name: "Past applications",
          content: "past"
        }
      ]
    }
  ]
}

Structure

  • Sections: Each section corresponds to a tile on the homepage.
  • Tabs: Within each section, tabs define the subpages under the section.
  • Deep content: Within each tab, deep content defines pages that go beyond the first page of the tab content

You can specify the content of each tab in the app/views folder using standard HTML or Nunjucks templates. The system automatically handles the routing and rendering for you.

In the above structure:

  • The section “Facility management” includes two tabs:
    • “Today’s completed tests” (content from views/todays-tests)
    • “Search past transactions” (content from views/past-transactions)
      • Within this tab, there is deep content: “Search results” (content from views/transactions-table)
  • The section “Apply for a vehicle test” has three tabs:
    • “Apply” (content from views/apply.njk)
    • “Current applications” (content from views/current.njk)
    • “Past applications” (content from views/past.njk)

Routing

When you create sections and tabs, routes are automatically generated. The routes are named by converting section names and tab names to lowercase and replacing spaces with hyphens.

For example, the route for “Today’s completed tests” under the “Facility management” section will be: /facility-management/todays-completed-tests

For deep content, the route for “Search results” within the “Search past transactions” tab of the “Facility management” section will be /facility-management/search-past-transactions/search-results

How To Use

  1. Define the tabbed interface structure in the data/session-data-defaults.js file.
  2. Create the corresponding content for each tab in the app/views folder using HTML or Nunjucks.
  3. Once the package is installed, the rest of the functionality will work automatically.

To-do / outstanding

  • Homepage tiles
  • Some error handling for when content pages don't exist