react-key-navigation

0.0.13 • Public • Published

react-key-navigation

Similar to the "Focus Management" of the BBC TAL.

WIP

  • Focusable Component
    • onFocus
    • onBlur
    • onEnterDown
  • Grid
  • Horizontal List
  • Vertical List
  • Horizontal List Scrollable
  • Vertical List Scrollable
  • Use Higher-Order Components?
  • Tests
  • Examples
  • Documentation

Example

import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import Navigation, {VerticalList, HorizontalList, Grid, Focusable} from 'react-key-navigation';
 
class App extends Component {
  render() {
    return (
      <Navigation>
        <Grid rows={100} columns={100}>
          {Array.from(Array(10000).keys()).map((v, i) => {
            return (
              <Focusable key={i} onFocus={() => console.log('focus ' + i)} onBlur={() => console.log('blur ' + i)} onEnterDown={() => console.log('enter ' + i)}>
                Element {i}
              </Focusable>
            );
          })}
        </Grid>
      </Navigation>
    );
  }
}
 
ReactDOM.render(<App />, document.getElementById('root'));

Readme

Keywords

none

Package Sidebar

Install

npm i react-key-navigation

Weekly Downloads

36

Version

0.0.13

License

none

Unpacked Size

446 kB

Total Files

22

Last publish

Collaborators

  • dead