Socket
Socket
Sign inDemoInstall

react-chrono

Package Overview
Dependencies
Maintainers
1
Versions
122
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-chrono

A Modern timeline component for React


Version published
Weekly downloads
6.9K
decreased by-7.44%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status DeepScan grade Codacy Badge Language grade: JavaScript Snyk Vulnerabilities for GitHub Repo Depfu

logo

A Flexible Timeline component for React

Try it on CoderSandbox!

Edit react-chrono

Features

Modes - Render timelines in three unique modes.

Tree - Use the Tree mode to layout timeline cards vertically in a tree like fashion.

Slideshow - Auto play the timeline in slideshow mode.

Keyboard Support - Navigate the timelines using UP , DOWN keys in vertical or tree mode. In horizontal mode LEFT , RIGHT keys can be used.

Custom theme - Customize the colors using the theme prop

Installation

yarn install react-chrono

🚀 Getting Started

Please make sure you wrap the component in a container that has a width and height. When no mode is specified, the component defaults to HORIZONTAL mode.

Use the items prop to create the timeline. Each Timeline item have the following properties.

title, contentTitle, contentText, contentDetailedText

Here is an example Timeline with minimal settings.

  const items = [{
    title: "May 1940",
    contentTitle: "Dunkirk",
    contentText:"Men of the British Expeditionary Force (BEF) wade out to a destroyer during the evacuation from Dunkirk.",
    contentDetailedText: "On 10 May 1940, Hitler began his long-awaited offensive in the west...",
  }, ...];

  <div style={{ width: "500px", height: "400px" }}>
    <chrono items={items} />
  </div>

app-home

Vertical

To render the timeline vertically use the VERTICAL mode

  <div style={{ width: "500px", height: "950px" }}>
    <chrono
      items={items}
      mode="VERTICAL"
    />
  </div>

Tree

In Tree mode the timeline is rendered vertically with cards alternating between left and right sides.

  <div style={{ width: "500px", height: "950px" }}>
    <chrono
      items={items}
      mode="TREE"
    />
  </div>

app-tree

Slideshow

Play the timeline automatically with the slideShow mode.

  <div style={{ width: "500px", height: "950px" }}>
    <chrono
      items={items}
      slideShow
    />
  </div>

slideshow

Slideshow in Tree mode

tree-slideshow

Props

namedescriptiondefault
modesets the layout for the timeline component. can be HORIZONTAL, VERTICAL or TREEHORIZONTAL
itemscollection of timeline items[]
disableNavOnKeydisables keyboard navigationfalse
slideShowstarts the timeline in slideshow modefalse
slideItemDurationThe amount of delay in ms for the timeline points in slideshow mode2500
titlePositionsets the position of the title in HORIZONTAL mode. can be TOP or BOTTOMTOP
itemWidthwidth of the timeline section in HORIZONTAL mode320

Mode

react-chrono supports three modes HORIZONTAL, VERTICAL and TREE. The mode prop can be used to define the orientation of the cards.

Keyboard Navigation & Disabling it

The timeline by default can be navigated via keyboard.

  • For HORIZONTAL mode use your LEFT RIGHT arrow keys for navigation.
  • For VERTICAL or TREE mode, the timeline can be navigated via the UP DOWN arrow keys.
  • To easily jump to the first item or the last item in the timeline, use HOME or END key.

The keyboard navigation can be completely disabled by setting the disableNavOnKey to true.

  <chrono items={items} disableNavOnKey />

Slideshow Mode

Slideshow can be enabled by setting the slideShow prop to true. You can also set an optional slideItemDuration that sets the time delay between cards.

  <chrono items={items} slideShow slideItemDuration={4500} />

Title Position

This setting only applies for the HORIZONTAL mode. The prop titlePosition sets the position of the individual titles to either TOP or BOTTOM.

  <chrono items={items}  titlePosition="BOTTOM" />

Item Width

The itemWidth prop can be used to set the width of each individual timeline sections. This setting is applicable only for the HORIZONTAL mode.

Built with

Meta

Prabhu Murthy – @prabhumurthy2prabhu.m.murthy@gmail.com

Distributed under the MIT license. See LICENSE for more information.

https://github.com/prabhuingoto/

Keywords

FAQs

Package last updated on 24 Sep 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc