Git Product home page Git Product logo

react-nextjs-vis-timeline's Introduction

React vis-timeline component

React component for the vis-timeline timeline module.

vis-timeline documentation

example chart

Installation

npm install --save react-nextjs-vis-timeline

OR

yarn add react-nextjs-vis-timeline

Nextjs Example

components/Timeline.js

import Timeline from 'react-nextjs-vis-timeline';

const items = [
	{
		start: new Date(2010, 7, 15),
		end: new Date(2010, 8, 2),
		content: 'Trajectory A'
	}
];
const options = {
	width: '100%',
	height: '100px'
};

const NextjsTimeline = () => <Timeline options={options} initialItems={items} />;

export default NextjsTimeline;

pages/index.js

import dynamic from 'next/dynamic';
import Head from 'next/head';

const TimeLine = dynamic(() => import('../components/Timeline'), {
	ssr: false
});

const Page = () => {
	return (
		<div>
			<Head>
				<link
					href='//unpkg.com/vis-timeline@latest/styles/vis-timeline-graph2d.min.css'
					rel='stylesheet'
					type='text/css'
				/>
			</Head>
			<TimeLine />
		</div>
	);
};

export default Page;

Getting Started

import Timeline from 'react-vis-timeline'

// https://visjs.github.io/vis-timeline/docs/timeline/#Configuration_Options

const options = {
  width: '100%',
  height: '100px',
  // ...
  // ...
}

// JSX
<Timeline options={options} />

What are the differences from react-visjs-timeline ?

  • Written in Typescript

  • Using vis-timeline library! without the old vis.js

  • No unnecessary re-renders

    The old lib caused re-renders on each prop changed, and using immutable objects to detect changes. This was very problematic and caused performance issues. We don't want to re-render the whole timeline, just because 1 item added to the items array.

  • API changes (items, groups)

    vis-timeline already knows how to detect changes with vis-data's DataSet object. So in this library, we take it as an advantage and using these DataSets. While exposing them to the user within ref.

    You can also insert initial data with props, and update/add/remove later with ref API.

  • Expose the timeline's API.

    Methods like focus, fit, and many more native vis-timeline methods exposed as well in optional ref.

Supported Features

  • Configuration Options
  • Items
  • Groups
  • Custom Times
  • Events
  • Selection
  • Timeline's API

Items

Items follow the exact same for format as they do in `vis-timeline``. See the vis-timeline documentation for more information.

const items = [{
  start: new Date(2010, 7, 15),
  end: new Date(2010, 8, 2),  // end is optional
  content: 'Trajectory A',
}]

<Timeline
  options={options}
  initialItems={items}
/>

Groups

Groups follow the exact same for format as they do in vis-timeline. See the vis-timeline documentation for more information.

const groups = [{
  id: 1,
  content: 'Group A',
}]

<Timeline
  options={options}
  initialGroups={groups}
/>

Custom Times

CustomTimes defined more declaratively in the component, via the customTimes prop.

const customTimes = [
  {
    id: 'one',
    datetime: new Date()
  },
  {
    id: 'two',
    datetime: 'Tue May 10 2016 16:17:44 GMT+1000 (AEST)'
  }
]

When the customTimes prop changes, the updated times will be reflected in the timeline.

Events

All events are supported via prop function handlers. The prop name follows the convention <eventName>Handler and the specified function will receive the same arguments as the vis-timeline counterparts. Some vis-timeline event names are not camelcased (e.g. rangechange), so the corresponding React prop names need to follow that convention where necessary:

<Timeline
  options={options}
  clickHandler={clickHandler}
  rangechangeHandler={rangeChangeHandler}
/>

function clickHandler(props) {
  // handle click event
}

function rangeChangeHandler(props) {
  // handle range change
}

Animation

You can enable animation (when the options start/end values change) by passing a prop of animation to the component. The available options for this prop follow the same conventions as setWindow in vis-timeline. So you can either pass a boolean value (true by default) or an object specifying your animation configuration, e.g:

// animate prop...
{
  duration: 3000,
  easingFunction: 'easeInQuint'
}

Styling

Import your custom CSS after you import the component from the module, e.g:

import Timeline from 'react-vis-timeline';
import './my-custom-css.css';

react-nextjs-vis-timeline's People

Contributors

astymeus avatar clockwork189 avatar educastellano avatar erinsmatthew avatar indream avatar jwarykowski avatar ldabiralai avatar nicodinh avatar razbensimon avatar statico avatar tyson-kubota avatar willmcclellan avatar

Stargazers

 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.