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

react-keyboard-navigation

v0.0.3

Published

A React component to manage the navigation declaratively, such as on smart feature phone applications, e.g., KaiOS.

Downloads

21

Readme

Welcome to react-keyboard-navigation 👋

Version License: MIT

A React component to manage the navigation declaratively, such as on smart feature phone applications, e.g., KaiOS.

🏠 Homepage

Navigation is the key "battlefield" when developing a non-touch mobile application, as on KaiOS smart feature phones. The preferred method of app navigation for the user is to interact with the D-pad. In this context, it is necessary to identify the navigation elements (clickable elements), to make every element focusable (tabIndex="0"), to handle the keydown or keyup event and to apply the focus to the desired DOM element (element.focus()).

Proposals to tag all navigation items with a particular CSS class, then browse the complete DOM for each event (up or down) and set the focus on the next or previous focusable DOM element exist. These solutions are simple and sufficient in some cases, but they have weak points:

  • Browse the entire DOM every time is expensive and inefficient.
  • The order of elements in the DOM does not always reflect the position in the UI.
  • It is impossible to impose an order between the focusable elements.
  • It is difficult to manage the case of modal windows.
  • And finally, they are not virtual DOM friendly… and I love React 😋

react-keyboard-navigation is a React component that helps to manage the navigation using a declarative and component-based approach. It is based on the HOC (Higher Order Component) pattern: principle of composition, with a wrapper that simply add the functionality to the wrapped component. It is a very lightweight JavaScript library without dependencies : only 6.1 KB (.js) and 2.6 KB for the minified version (.min.js).

Install

react-keyboard-navigation is available in several builds:

  • as CommonJS which is the primary way it will be used when installed via npm
  • as ES modules (ECMAScript Modules) which is the way it will be used with module bundlers like Webpack or Rollup with import and export statements.
  • as UMD (Universal Module Definition) for the use via a global variable by dropping it into a <script> tag.

Install via npm

yarn add react-keyboard-navigation (or npm install react-keyboard-navigation)

Add a script tag

You can also include it directly in your index.html like below:

<script src="unpkg.com/react-keyboard-navigation/umd/react-keyboard-navigation.min.js"></script>

The exposed global variable name is ReactKeyboardNavigation.

Usage

At the root of your application, add the navigation context thanks to the NavigationProvider wrapper component like this:

import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import { NavigationProvider } from 'react-keyboard-navigation';

ReactDOM.render(<NavigationProvider><App /></NavigationProvider>, document.getElementById("root"));

Now you can use the 2 HOCs (Higher Order Components) included in react-keyboard-navigation:

  • withFocus to wrap an HTML element (required to use element.focus()) and transform it in a focusable element.
  • withNavigation to wrap a React component or an HTML element and transform it in a container.

The use of withNavigation is optional, it allows to organize the interface more easily, for example with a header, a content and a footer. It also allows to define a modal window.

withFocus

import { withFocus } from 'react-keyboard-navigation';

const InputWithFocus = withFocus(
  ({ forwardedRef, ...props }) => <input ref={forwardedRef} {...props} />
);

const App = () => (
  <InputWithFocus id="input" position={0} defaultActive />
);

withFocus properties

  • id: PropTypes.string.isRequired A unique identifier (inside a container).
  • parentId: PropTypes.string The id of the container, parent of the element. Default to 'default'.
  • position: PropTypes.number The position (order) of the element in the UI. If not specified, take the order of the mounting in the DOM (componentDidMount).
  • defaultActive: PropTypes.bool Take the focus by default. Default to false.

withNavigation

import { withFocus, withNavigation } from 'react-keyboard-navigation';

const InputWithFocus = withFocus(
  ({ forwardedRef, ...props }) => <input ref={forwardedRef} {...props} />
);

const HeaderWithNavigation = withNavigation(({ parentId }) => (
  <div>
    <InputWithFocus
      id="input"
      parentId={parentId} // parentId can be retrieved from the container or filled manually with "header"
      position={0}
      defaultActive
    />
  </div>
);

const App = () => (
  <Header id="header" position={0} />
);

withNavigation properties

  • id: PropTypes.string.isRequired A unique identifier (inside the whole context). Do not use 'default' which is a container created by default.
  • position: PropTypes.number The position (order) of the container in the UI. If not specified, take the order of the mounting in the DOM (componentDidMount).
  • isModal: PropTypes.bool The behavior of the container (is it a modal window or not ?). Default to false.

Check demo/* for usage and these 2 examples below. The demonstrations are based on the code provided by KaiOS in the sample-react repository.

Simple UI

UI example without container and with 2 focusable elements (1 input and 1 span): Simple UI

See the CodeSandbox example for a simple UI : Edit Simple UI

More complex UI

UI example with 2 containers (Input and Todos) and with 3 focusable elements (1 input and 2 span): Comple UI

See the CodeSandbox example for a more complex UI : Edit More complex UI

Getting the navigation context

If you need to retrieve the navigation context in your application, to know which element has the focus, you can use the NavigationContext like this:

import { NavigationContext } from 'react-keyboard-navigation';

const App = () => {
  const { state: {activeElement} } = useContext(NavigationContext);

  return (
    <div>{activeElement.id}</div>
  );
}

Author

👤 Yannick Cornaille

🤝 Contributing

Contributions, issues and feature requests are welcome!

Feel free to read contributing documentation and to check issues page.

The next features will be the unit tests and the use of the React hooks. Feel free to contribute !

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2019 Orange.

This project is MIT licensed.


This README was generated with ❤️ by readme-md-generator