Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
react-visjs-timeline
Advanced tools
React component for the vis.js timeline module.
npm install --save vis
npm install --save react-visjs-timeline
Note: Data passed to the component should be Immutable. If you are new to Immutable data Seamless Immutable and Immutable.js are good places to start.
import Timeline from 'react-visjs-timeline'
// http://visjs.org/docs/timeline/#Configuration_Options
const options = {
width: '100%',
height: '60px',
stack: false,
showMajorLabels: true,
showCurrentTime: true,
zoomMin: 1000000,
type: 'background',
format: {
minorLabels: {
minute: 'h:mma',
hour: 'ha'
}
}
}
// jsx
<Timeline options={options} />
Not all features from vis.js timeline are supported (Pull Requests are welcome). Because of React's declarative style, vis.js methods need abstracting via prop configuration (see customTimes for example) so some features are more tricky than others.
Items follow the exact same for format as they do in vis.js. See the vis.js 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}
items={items}
/>
Groups follow the exact same for format as they do in vis.js. See the vis.js documentation for more information.
const groups = [{
id: 1,
content: 'Group A',
}]
<Timeline
options={options}
groups={groups}
/>
Custom Times are defined more declaritively in the component, via the customTimes
prop. You define them via a simple object where the key is the id
of the custom time and the value is the datetime:
const customTimes = {
one: new Date(),
two: 'Tue May 10 2016 16:17:44 GMT+1000 (AEST)'
}
When the customTimes
prop changes, the updated times will be reflected in the timeline.
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.js counterparts.
Some visjs 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
}
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.js. 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',
}
Import your custom CSS after you import the component from the module, e.g:
import Timeline from 'react-visjs-timeline'
import './my-custom-css.css' // in conjunction with webpack's style-loader
FAQs
React component for the vis.js timeline module
The npm package react-visjs-timeline receives a total of 4,390 weekly downloads. As such, react-visjs-timeline popularity was classified as popular.
We found that react-visjs-timeline demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.