npm i @bit-about/state
- 100% Idiomatic React
- 100% Typescript with state types deduction
- Efficient sub-states selectors
- State on hook
- ...with static access
- No centralized state provider
- Tiny - only 2.6kB
- Just works β’
import * as React from 'react'
import { state } from '@bit-about/state'
// 1οΈβ£ Create your hook-like store
const [Provider, useStore] = state(
() => {
const [alice, setAlice] = React.useState('Alice')
return { alice, setAlice }
}
)
// 3οΈβ£ Use the selector hook in component
const Child = () => {
const alice = useStore(state => state.alice)
return <p>{alice}</p>
}
// 2οΈβ£ Wrap the tree with the Provider
const App = () => (
<Provider>
<Child />
</Provider>
)
Choose your own way to select state and rerender component only when necessary.
// π Rerender when anything changed
const { alice, bob } = useStore()
// πͺ Rerender when alice changed
const alice = useStore(state => state.alice)
// π€ Rerender when alice or bob changed
const [alice, bob] = useStore(state => [state.alice, state.bob])
// or
const { alice, bob } = useStore(
state => ({ alice: state.alice, bob: state.bob })
)
NOTE: Values in objects and arrays created on the fly are shallow compared.
The third element of the state()
result tuple is store
object. Store is static helper which provides access to the state without hook.
const [Provider, useStore, store] = state(...)
and then
// π Get whole state
const { alice } = store.get()
// πͺ Get substate
const alice = store
.select(state => state.alice)
.get()
// π€ Subscribe store and listen on changes
const subscriber = store
.select(state => state.alice)
.subscribe(alice => console.log(alice))
// remember to unsubscribe!
subscriber.unsubscribe()
NOTE: It's not necessary to fetch state inside of the Provider - but it still needs to be placed somewhere to init the state.
The state hook allows you to pass any arguments into the context. It can be some initial state or you can even return it and pass it through to the components. Any state props change will update the context and trigger components rerendering when necessary.
const [UserProvider, useUser] = state(
({ id }) => {
const [user] = React.useState(() => getMyUserBy(id))
return user
}
)
const UserProfile = ({ id }) => (
<UserProvider id={id}>
...
</UserProvider>
)
Please remember that functions defined without React.useCallback
create themselves from scratch every time - which results in incorrect comparisons and components think the state has changed so they rerender themselves.
const [Provider, useStore] = state(
() => {
const [counter, setCounter] = React.useState(0);
// βοΈ It will rerender components every time
// const incrementCounter = () => setCounter(value => value + 1)
const incrementCounter = React.useCallback(
() => setCounter(value => value + 1),
[setCounter]
)
return { counter, incrementCounter }
}
)
BitAboutState π BitAboutEvent
Are you tired of sending logic to the related components?
Move your bussiness logic to the hook-based state using @bit-about/state
+ @bit-about/event
.
Now you've got completely type-safe side-effects, isn't cool?
import { state } from '@bit-about/state'
import { useEvent } from './auth-events' // Hook generated from events()
import User from '../models/user'
const [UserProvider, useUser] = state(
() => {
const [user, setUser] = React.useState<User | null>(null)
useEvent({
userLogged: (user: User) => setUser(user),
userLoggout: () => setUser(null)
})
return user
}
)
BitAboutState π React Query
import { useQuery } from 'react-query'
import { fetchUser } from './user'
const [UserProvider, useUser] = state(
({ id }) => {
const { data: user } = useQuery(['user', id], () => fetchUser(id))
return user
}
)
const UserProfile = ({ id }) => (
<UserProvider id={id}>
...
</UserProvider>
)
// π§ Rerender ONLY when user changed (no matter if isLoading changes)
const avatar = useUser(state => state.user.avatar)
- Constate - approach main inspiration
- use-context-selector & FluentUI - fancy rerender avoiding tricks and code main inspiration
MIT Β© Maciej Olejnik π΅π±
If you use my library and you like it...
it would be nice if you put the name BitAboutState
in the work experience section of your resume.
Thanks ππ»!
πΊπ¦ Slava Ukraini