This package has been deprecated

Author message:

WARNING: This project has been renamed to react-timer-machine. Install using react-timer-machine instead.

react-super-timer

1.0.0 • Public • Published

react-super-timer

React Super Timer is a fully controllable and customizable timer component for react

NPM JavaScript Style Guide Build Status Build Status Maintainability Test Coverage

Install

npm install --save react-super-timer

or

yarn add react-super-timer

Usage

import React, { Component } from 'react'

import SuperTimer from 'react-super-timer'

import moment from "moment";
import momentDurationFormatSetup from "moment-duration-format";

momentDurationFormatSetup(moment);

class Example extends Component {
  render () {
    return (
      <SuperTimer
        timeStart={10 * 1000} // start at 10 seconds
        timeEnd={20 * 1000} // end at 20 seconds
        started={true}
        paused={false}
        countdown={false} // use as stopwatch
        interval={1000} // tick every 1 second
        formatTimer={(time, ms) =>
          moment.duration(ms, "milliseconds").format("h:mm:ss")
        }
        onStart={time =>
          console.info(`Timer started: ${JSON.stringify(time)}`)
        }
        onStop={time =>
          console.info(`Timer stopped: ${JSON.stringify(time)}`)
        }
        onTick={time =>
          console.info(`Timer ticked: ${JSON.stringify(time)}`)
        }
        onPause={time =>
          console.info(`Timer paused: ${JSON.stringify(time)}`)
        }
        onResume={time =>
          console.info(`Timer resumed: ${JSON.stringify(time)}`)
        }
        onComplete={time =>
          console.info(`Timer completed: ${JSON.stringify(time)}`)
        }
    />
    )
  }
}

User guide

SuperTimer

Renders a React Fragment to be fully customized. You can easily style the timer states thanks to the provided function callbacks.

By default, SuperTimer displays the time formatted as: hh:mm:ss.SSS. The format can be changed using the formatTimer property. See usage example above.

Props

Name Type Default Description
timeStart required number - The initial time on which the timer is set (in ms)
timeEnd number 0 The time on which the timer will complete (in ms)
countdown boolean false When true, sets the timer to countdown instead of counting up
interval number 1000 The time between each ticks (in ms)
started boolean false Starts the timer when set to true, stops it when set to false
paused boolean false Pauses the timer when set to true, resumes it when set to false
formatTimer function (timer: Timer, ms: number) => 'hh:mm:ss.SSS' Function to format the timer before it renders. You can use moment-duration as shown above or write your own
onStart function (timer: Timer) => void Callback function called on timer start
onTick function (timer: Timer) => void Callback function called on each timer tick
onPause function (timer: Timer) => void Callback function called on timer pause
onResume function (timer: Timer) => void Callback function called when timer resumes
onStop function (timer: Timer) => void Callback function called on timer stop
onComplete function (timer: Timer) => void Callback function called on timer complete

Types

Name Example values
Timer object { h: 1, m: 30, s: 30, ms: 0 }

License

MIT © Yassine Doghri

Readme

Keywords

none

Package Sidebar

Install

npm i react-super-timer

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

9.52 kB

Total Files

3

Last publish

Collaborators

  • yassinedoghri