0.0.7 • Published 7 years ago

react-interval-formatter v0.0.7

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

react-interval-formatter

A React formatter that updates the element each 15 seconds

Demo

Install

yarn install react-interval-formatter

or

npm install react-interval-formatter --save

Properties

tag : string

The tag you want to rendered

formatter : function

A function that knows how to format the value prop

value : string

The value that is going to be passed to the formatter

othersProps

You can send any props you want, i.e.: onClick, className, etc...

Example

import IntervalFormatter from 'react-interval-formatter'

let multiplier = 1
const formatter = (value) =>
  `${value} * ${multiplier} = ${value * multiplier++}`

export default () => 
  <IntervalFormatter
    tag='label'
    formatter={formatter}
    value={10}
    className='ten-multiplier'
    onClick={() => alert('aaa')}
  />;

It will render Instantly: <label class="ten-multiplier">10 * 1 = 10</div> 15 seconds later: <label class="ten-multiplier">10 * 2 = 20</div> 30 seconds later: <label class="ten-multiplier">10 * 3 = 30</div>

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago