hooks-composer
v1.0.1
Published
yet another way to create your react hooks
Downloads
3
Maintainers
Readme
React Hooks Composer
Tiny Javascript composition over React Hooks ( React > 16.7.0 ). Yet another way to create your hooks :)
Before
import React from 'react'
export default function Test(props) {
const [name, setName] = React.useState('Mary')
const [surname, setSurname] = React.useState('Poppins')
const [language, setLanguage] = React.useState('🇬🇧')
}
After
import React from 'react'
import useHooksComposer from 'hooks-composer'
export default function Test(props) {
const { name, surname, language, setName, setSurname, setLanguage } = useHooksComposer({
name: 'Mary',
surname: 'Poppins',
language: '🇬🇧'
})
}
How it works
Instead of creating your hooks line by line and defining the pairs for value and its setter, you can pass a static object, where each key is the name of your hook variable and the value is the initial value of the hook. The composer will create an independent hook for each key and will return an object with all values and setters named according to the convention.
Example:
import React from 'react'
import useHooksComposer from 'hooks-composer'
export function Test(props) {
const { count, setCount } = useHooksComposer({ count: 0 })
}
Installation
npm i hooks-composer or yarn add hooks-composer
Made with ♥ by nudelx