Socket
Socket
Sign inDemoInstall

react-hoc-timerfuncs

Package Overview
Dependencies
3
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-hoc-timerfuncs

Timer functions provided via props that auto clear themselves at unmount


Version published
Weekly downloads
160
increased by42.86%
Maintainers
1
Install size
105 kB
Created
Weekly downloads
 

Readme

Source

react-hoc-timerfuncs

This HOC (Higher Order Component) provides the following timer like functions via props that will get automatically cleared when component gets unmounted. Can be used with both React and React Native.

  • setTimeout
  • setInterval
  • setImmediate
  • requestAnimationFrame
  • clearTimeout
  • clearInterval
  • clearImmediate
  • cancelAnimationFrame

Installation

yarn add react-hoc-timerfuncs

Example

// ...
import timer from "react-hoc-timerfuncs"

@timer
class Counter extends React.Component {
  state = {
    counter: 0
  }

  render() {
    return (
      <div>{this.state.counter}</div>
    )
  }

  componentDidMount() {
    // Instead of standard functions you will use the functions
    // provided by props.
    this.props.setInterval(() => {
      this.setState(state => ({ counter: state.counter + 1 }))
    }, 10)
  }
}

Dev setup

  1. yarn

npm run tasks

  • yarn build: Transpile source code

FAQs

Last updated on 29 May 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc