Git Product home page Git Product logo

react-chrono's Introduction


Build Status DeepScan grade Codacy Badge Snyk Vulnerabilities for GitHub Repo Depfu https://badgen.net/bundlephobia/min/react

Features

  • ๐Ÿšฅ Render timelines in three different modes (Horizontal, Vertical, Tree).
  • ๐ŸŒฒย  Use the Tree mode to layout the timeline cards vertically in a tree like fashion.
  • ๐Ÿ“บย  Auto play the timeline with the slideshow mode.
  • ๐Ÿ–ผ๏ธย  Display Images & Videos in the timeline with ease.
  • โŒจย  Keyboard accessible.
  • โšกย  Data driven API.
  • ๐Ÿ”งย  Optimized to render images & videos efficiently on (Tree & Vertical mode).
  • ๐ŸŽจย  Customize colors with ease.
  • ๐Ÿ’ชย  Built with Typescript.
  • ๐ŸŽจย  Styled with emotion.

Table of Contents

โšก 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. Please check props for all the available options.

  import React from "react"
  import { Chrono } from "react-chrono";
  
  const Home = () => {
    const items = [{
      title: "May 1940",
      contentTitle: "Dunkirk",
      contentText:"Men of the British Expeditionary Force (BEF) wade out to..",
      media: {
        type: "IMAGE",
        source: {
          url: "http://someurl/image.jpg"
        }
      }
    }, ...];

    return (
      <div style={{ width: "500px", height: "400px" }}>
        <Chrono items={items} cardHeight={300} />
      </div>
    )
  }

app-home

Vertical Mode

To render the timeline vertically use the VERTICAL mode

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

vertical-basic

Tree

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

  <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
      mode="TREE"
    />
  </div>

Props

name description default
mode sets the mode of the component. can be HORIZONTAL, VERTICAL or TREE HORIZONTAL
items collection of Timeline Item Model. []
disableNavOnKey Disables keyboard navigation. false
slideShow Enables slideshow control. false
slideItemDuration The amount of delay in ms for the timeline points in slideshow mode. 5000
itemWidth width of the timeline section in HORIZONTAL mode. 300
hideControls hides the navigation controls. 300
cardHeight sets the minimum height of the timeline card. 250
theme prop to customize the colors.

Mode

react-chrono supports three modes HORIZONTAL, VERTICAL and TREE. No additional setting is required.

  <chrono items={items} mode="HORIZONTAL" />
  <chrono items={items} mode="VERTICAL" />
  <chrono items={items} mode="TREE" />

Timeline item Model

name description type
title title of the timeline item String
contentTitle title that is displayed on the timeline card String
contentText text displayed in the timeline card String
contentDetailedText detailed text displayed in the timeline card String
media media object to set image or video. Object
{
  title: "May 1940",
  contentTitle: "Dunkirk",
  media: {
    name: "dunkirk beach",
    source: {
      url: "http://someurl/image.jpg"
    },
    type: "IMAGE"
  },
  contentText:
    "Men of the British Expeditionary Force (BEF) wade out to a destroyer during the evacuation from Dunkirk."
}

Keyboard Navigation

The timeline 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 keys.

To disable keyboard navigation set disableNavOnKey to true.

<chrono items={items} disableNavOnKey />

Media

Both images and videos can be embedded in the timeline. Just add the media attribute to the Timeline Item model and the component will take care of the rest.

To embed a image
{
  title: "May 1940",
  contentTitle: "Dunkirk",
  media: {
    name: "dunkirk beach",
    source: {
      url: "http://someurl/image.jpg"
    },
    type: "IMAGE"
  }
}
To embed a video

Videos start playing automatically when active and will be automatically paused when not active. Like images, videos are also automatically hidden when not in the visible viewport of the container.

{
  title: "7 December 1941",
  contentTitle: "Pearl Harbor",
  media: {
    source: {
      url: "/pearl-harbor.mp4",
      type: "mp4"
    },
    type: "VIDEO",
    name: "Pearl Harbor"
  }
}

f### 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.

setting this prop enables the play button in the timeline control panel.

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

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.

Theme

Customize colors with theme prop.

<chrono items={items}  titlePosition="BOTTOM" theme={{primary: "red", secondary: "blue" }} />

๐Ÿ“ฆ CodeSandbox Examples

๐Ÿ“ฆ Build Setup

# install dependencies
yarn install

# start dev setup
yarn run start

# run css linting
yarn run lint:css

# eslint
yarn run eslint

# prettier
yarn run lint

# package lib
yarn run rollup

๐Ÿ”จ Contributing

  1. Fork it ( https://github.com/prabhuignoto/react-chrono/fork )
  2. Create your feature branch (git checkout -b new-feature)
  3. Commit your changes (git commit -am 'Add feature')
  4. Push to the branch (git push origin new-feature)
  5. Create a new Pull Request

๐Ÿงฑ Built with

๐ŸŽฏ What's coming next

  • Support for Mobile devices & Tablets (responsive).

Meta

Prabhu Murthy โ€“ @prabhumurthy2 โ€“ [email protected]

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

https://github.com/prabhuingoto/

react-chrono's People

Contributors

imgbotapp avatar prabhuignoto avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.