All Projects β†’ prabhuignoto β†’ React Chrono

prabhuignoto / React Chrono

Licence: mit
πŸ•œ Modern Timeline component for React

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Chrono

vertical-timeline-component-react
A Timeline Component for React.js
Stars: ✭ 42 (-98.54%)
Mutual labels:  timeline, timeline-component, vertical-timeline
react-timeline
The easiest way to add a responsive and customizable timeline to React apps
Stars: ✭ 68 (-97.63%)
Mutual labels:  timeline, timeline-component
react-gantt-schedule-timeline-calendar
React Gantt Schedule Timeline Calendar component wrapper for gantt-schedule-timeline-calendar [ react gantt, gantt, react gantt chart, react schedule, react timeline, react calendar, gantt, schedule, scheduler, timeline, calendar, react gantt chart ]
Stars: ✭ 47 (-98.36%)
Mutual labels:  timeline, react-timeline
notifyme
react-notification-timeline is a react based component helps in managing the notification in time-based manner.
Stars: ✭ 94 (-96.73%)
Mutual labels:  timeline, timeline-component
vue-light-timeline
A mobile first lightweight vue timeline components
Stars: ✭ 88 (-96.94%)
Mutual labels:  timeline, timeline-component
react-native-beautiful-timeline
Fully customizable, beautifully designed Timeline for React Native.
Stars: ✭ 111 (-96.14%)
Mutual labels:  timeline, timeline-component
Vue Displacement Slideshow
A Vue.js 2.0 slideshow component working with Three.js
Stars: ✭ 165 (-94.26%)
Mutual labels:  slideshow
Jquery.timeline
You can easily create the horizontal timeline with two types by using this jQuery plugin.
Stars: ✭ 179 (-93.77%)
Mutual labels:  timeline
React Timelines
React Timelines Library
Stars: ✭ 161 (-94.4%)
Mutual labels:  timeline
Covid 19 Timeline
δ»₯ η€ΎδΌšε­¦εΉ΄ι‰΄ζ¨‘εΌδ½“δΎ‹θ§„θŒƒεœ°η»ŸηΌ–θ‡ͺ2019εΉ΄ζœ«θ΅·ζ–°ε† θ‚Ίη‚Žη–«ζƒ…θΏ›ε±•ηš„ζ—Άι—΄ηΊΏγ€‚
Stars: ✭ 1,887 (-34.32%)
Mutual labels:  timeline
React Slideshow
A react component for slideshow supporting slide, fade and zoom
Stars: ✭ 201 (-93%)
Mutual labels:  slideshow
Vue Infinite Slide Bar
∞ Infinite slide bar component (no dependency and light weight 1.48 KB)
Stars: ✭ 190 (-93.39%)
Mutual labels:  slideshow
Jcarousel
Riding carousels with jQuery.
Stars: ✭ 2,031 (-29.31%)
Mutual labels:  slideshow
Wcstimeline
Simple timeline with data model.
Stars: ✭ 165 (-94.26%)
Mutual labels:  timeline
Press
Minimalist Markdown Publishing for Nuxt.js
Stars: ✭ 181 (-93.7%)
Mutual labels:  slideshow
React Native Timeline Flatlist
FlatList based timeline component for React Native for iOS and Android
Stars: ✭ 163 (-94.33%)
Mutual labels:  timeline
Animated Timeline
πŸ”₯ Create timeline and playback based animations in React
Stars: ✭ 197 (-93.14%)
Mutual labels:  timeline
Kvkcalendar
A most fully customization calendar and timeline library for iOS πŸ“…
Stars: ✭ 160 (-94.43%)
Mutual labels:  timeline
Slider
Touch swipe image slider/slideshow/gallery/carousel/banner mobile responsive bootstrap
Stars: ✭ 2,046 (-28.79%)
Mutual labels:  slideshow
Atgmediabrowser
Image slide-show viewer with multiple predefined transition styles, with ability to create new transitions with ease.
Stars: ✭ 186 (-93.53%)
Mutual labels:  slideshow


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

Features

Table of Contents

⚑ Installation

yarn add 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",
      cardTitle: "Dunkirk",
      url: "http://www.history.com
      cardSubtitle:"Men of the British Expeditionary Force (BEF) wade out to..",
      cardDetailedText: "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} />
      </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

πŸš₯Vertical Alternating

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

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

app-tree

πŸ“ΊSlideshow

Play the timeline automatically with the slideShow mode. This prop enables the play button on the ui controls.

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

Props

name description default
activeItemIndex selects the active timeline item on load. 0
allowDynamicUpdate allows timeline items to be updated dynamically. false
borderLessCards removes the border & shadow from the timeline item cards. false
cardHeight sets the minimum height of the timeline card. 200
cardPositionHorizontal positions the card in HORIZONTAL mode. can be either TOP or BOTTOM
cardWidth sets the maximum width of the timeline card.
disableNavOnKey disables the keyboard navigation. false
enableOutline enables the outline menu on VERTICAL and VERTICAL_ALTERNATING mode. false
flipLayout flips the layout (RTL). applicable only to VERTICAL and VERTICAL_ALTERNATING false
hideControls hides the navigation controls. false
itemWidth width of the timeline section in HORIZONTAL mode. 300
items collection of Timeline Item Model. []
mode sets the mode of the component. can be HORIZONTAL, VERTICAL or VERTICAL_ALTERNATING HORIZONTAL
onItemSelected callback invoked on a item selection. passes all of the data pertinent to the item.
onScrollEnd use the onScrollEnd to detect the end of the timeline.
scrollable makes the timeline scrollable (applicable for VERTICAL & VERTICAL_ALTERNATING). true
slideItemDuration duration (in ms), the timeline card is active during a slideshow. 5000
slideShow enables the slideshow control. false
theme prop to customize the colors.
useReadMore enables or disables the read more button. when disabled the card will auto expand to fit the content true

Mode

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

  <Chrono items={items} mode="HORIZONTAL" />
  <Chrono items={items} mode="VERTICAL" />
  <Chrono items={items} mode="VERTICAL_ALTERNATING" />

Timeline item Model

name description type
title title of the timeline item String
cardTitle title that is displayed on the timeline card String
cardSubtitle text displayed in the timeline card String
cardDetailedText detailed text displayed in the timeline card String or String[]
media media object to set image or video. Object
url url to be used in the title. String
{
  title: "May 1940",
  cardTitle: "Dunkirk",
  cardSubtitle:
    "Men of the British Expeditionary Force (BEF) wade out to a destroyer during the evacuation from Dunkirk.",
  cardDetailedText: ["paragraph1", "paragraph2"],
}

if you have a large text to display(via cardDetailedText) and want to split the text into paragraphs, you can pass an array of strings.

each array entry will be created as a paragraph inside the timeline card.

⌨Keyboard Navigation

The timeline can be navigated via keyboard.

  • For HORIZONTAL mode use your LEFT RIGHT arrow keys for navigation.
  • For VERTICAL or VERTICAL_ALTERNATING 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 />

Scrollable

With the scrollable prop, you can enable scrolling on both VERTICAL and VERTICAL_ALTERNATING modes.

  <Chrono items={items} scrollable />

The scrollbar is not shown by default. To enable the scrollbar, pass an object with prop scrollbar to scrollable prop.

  <Chrono items={items} scrollable={{scrollbar: true}} />

πŸ“Ί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",
  cardTitle: "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",
  cardTitle: "Pearl Harbor",
  media: {
    source: {
      url: "/pearl-harbor.mp4",
      type: "mp4"
    },
    type: "VIDEO",
    name: "Pearl Harbor"
  }
}

To embed YouTube videos, use the right embed url.

{
  title: "7 December 1941",
  cardTitle: "Pearl Harbor",
  media: {
    source: {
      url: "https://www.youtube.com/embed/f6cz9gtMTeI",
      type: "mp4"
    },
    type: "VIDEO",
    name: "Pearl Harbor"
  }
}

media

πŸ› Rendering custom content

The component also supports embedding custom content in the Timeline cards.

To insert custom content, just pass the blocked elements between the Chrono tags.

For e.g the below snippet will create 2 timeline items. Each div element is automatically converted into a timeline item and inserted into the timeline card. The items collection is completely optional and custom rendering is supported on all 3 modes.

  <Chrono mode="VERTICAL">
    <div>
      <p>Lorem Ipsum. Lorem Ipsum. Lorem Ipsum</p>
    </div>
    <div>
      <img src="<url to  a nice image" />
    </div>
  </Chrono>

The items collection will also work nicely with any custom content that is passed.

The following snippet sets the the title and cardTitle for the custom contents.

  const items = [
    {title: "Timeline title 1", cardTitle:  "Card Title 1"},
    {title: "Timeline title 2", cardTitle:  "Card Title 2"}
  ];

  <Chrono mode="VERTICAL" items={items}>
    <div>
      <p>Lorem Ipsum. Lorem Ipsum. Lorem Ipsum</p>
    </div>
    <div>
      <img src="<url to  a nice image" />
    </div>
  </Chrono>

🎭Custom icons for the Timeline

To use custom icons in the timeline, pass in the collection of images between the chrono tags wrapped in a container.

The icons are sequentially set (i.e) the first image you pass will be used as the icon for the first timeline item and so on.

Please make sure to pass in the image collection inside a container with a special className chrono-icons. This convention is mandatory as the component uses this class name to pick the images.

 <Chrono items={items} mode="VERTICAL_ALTERNATING">
   <div className="chrono-icons">
     <img src="image1.svg" alt="image1" />
     <img src="image2.svg" alt="image2" />
   </div>
 </Chrono>

custom icons also works if you are rendering custom content inside the cards.

  <Chrono mode="VERTICAL" items={items}>
    <div>
      <p>Lorem Ipsum. Lorem Ipsum. Lorem Ipsum</p>
    </div>
    <div>
      <img src="<url to  a nice image" />
    </div>
    <div className="chrono-icons">
      <img src="image1.svg" alt="image1" />
      <img src="image2.svg" alt="image2" />
    </div>
  </Chrono>

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} />

Outline

With enableOutline prop you can enable outline on the timelines and quickly jump to a specific timeline item. The outlines are only supported on VERTICAL and VERTICAL_ALTERNATING modes.

<Chrono items={items} enableOutline />

media

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 the theme prop.

<Chrono
  items={items}
  theme={{ 
    primary: "red",
    secondary: "blue",
    cardBgColor: "yellow",
    cardForeColor: "violet",
    titleColor: "red"
  }}
/>

πŸ“¦CodeSandbox Examples

πŸ“šStorybook

Deep dive into wide variety of examples hosted as a Storybook.

πŸ”¨Build Setup

# install dependencies
yarn install

# start dev
yarn dev

# run css linting
yarn lint:css

# eslint
yarn eslint

# prettier
yarn lint

# package lib
yarn rollup

πŸ§ͺTests

  # run unit tests
  yarn test

  # run cypress tests
  yarn cypress:test

🀝Contributing

  1. Fork it
  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

Meta

Huge thanks to BrowserStack for the Open Source License!

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

Prabhu Murthy – @prabhumurthy2 – [email protected] https://github.com/prabhuignoto

Buy Me A Coffee

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Alois

πŸ“–

Koji

πŸ“–

Alexandre Girard

πŸ’»

Ryuya

πŸ“–

Taqi Abbas

πŸ’»

megasoft78

πŸ’»

This project follows the all-contributors specification. Contributions of any kind welcome!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].