react-time-seek-slider

1.1.0 • Public • Published

react-time-seek-slider

Youtube-like time seek slider for React. Fork of react-video-seek-slider for enhancements like:

  • onSeeking callback gets time with millisecond precision
  • Seek event fires immediately on mousedown and touchstart
  • Thumb dragging does not cause text selection
  • Time tooltip shows correct time text for time smaller than 60
  • Time tooltip stays inside left and right boundary of the seek track
  • Events: onSeeking, onSeekend

react-video-seek-slider

Video seek slider demo react-video-seek-slider

How to install

npm i react-time-seek-slider

How to import

For TypeScript usage there is a index.d.ts in node_modules folder

import {TimeSeekSlider} from 'react-time-seek-slider';

or

const TimeSeekSlider = require('react-time-seek-slider');

Also you have to use css file in a lib folder in:

import 'react-time-seek-slider/lib/time-seek-slider.css';

How to use

//JSX
    <TimeSeekSlider
        max={1152}
        currentTime={this.state.currentTime}
        progress={400}
        onSeeking={(time)=>{
            this.setState({
                currentTime:time
            });
        }}
        offset={0}
        secondsPrefix="00:00:"
        minutesPrefix="00:"
    />

Specification

  • max (number, required) - Max sliders value
  • currentTime (number, required) - Current sliders value
  • progress (number) - Current buffered progress
  • hideSeekTimes (boolean) - hide hover current time (Default: false)
  • onSeeking ((time:number, offsetTime:number)=>void, required) - script to be run when thumb changes position
  • onSeekend (()=>void, default: null) - script to be run when thumb change ends
  • offset (number, default:0) - when you need start slider with offset time
  • secondsPrefix (string, default: '') - when time is less than one minutes you can use prefix time as "00:00:"
  • minutesPrefix (string, default: '') - when time is less than one hour you can use prefix time as "00:"

For development

just use:

$ yarn or $ npm i
$ npm run dev

open your browser http://localhost:3000

For Build

$ npm run production

Readme

Keywords

none

Package Sidebar

Install

npm i react-time-seek-slider

Weekly Downloads

20

Version

1.1.0

License

MIT

Unpacked Size

34.3 kB

Total Files

15

Last publish

Collaborators

  • kymmx