0.6.0
0.6 release 🚀
We are taking advantage of the fact that we are in an early stage (0.x) to evolve quickly the library trying to make everything more and more tiny, easy and powerful.
Sorry for the breaking changes and if you have any questions you can write inside GitHub Discussions.
The library is becoming more and more stable and we will make less breaking changes, and from version 1.0 onwards we will follow the semantic version 100%.
🚨 I have to announce that after having changed the name of the library from
fragmented-store
tofragstore
, we are forced to change it again to avoid problems with a company called fragstore that we didn't know about.We have not changed the name for this version as it already has some breaking changes. But we will change it for the next version and it will be the only breaking change for the future 0.7 version.
We will make it so that when installing the latest
fragstore
package in npm it will make a warning saying so, but I prefer to announce it.👉 Subscribe to this discussion to find out about the name change.
New features
- Add getStore helper #19 (by @aralroca) - Read more here
- Add withStore HoC #19 (by @aralroca) - Read more here
- Add callbacks inside useStore, getStore and withStore #19 (by @aralroca) - Read more here
- Update all the docs #19 (by @aralroca)
- Add more tests #19 (by @aralroca)
Breaking changes
- Remove Store component (now with getStore and callback change it no longer makes sense) #19 (by @aralroca)
- Callbacks are unified (1 function instead of an object of functions) #19 (by @aralroca)
How to migrate
- Remove this component
<Store store={initialStore} callbacks={{ cart: onCartUpdate }}>
</Store>
- Use the
store
variable insidecreateStore
:
const { useStore, getStore } = createStore(initialStore)
// Or if you need it to loading dynamically use the getStore helper:
const [, setStore] = getStore()
setStore(store => ({ ...store, ...initialStore }))
- Use a
callback
insidecreateStore
:
const { useStore, getStore } = createStore(initialStore, onStoreUpdate)
function onStoreUpdate({ path, ...rest }) {
if(path.startsWith('cart')) onCartUpdate(...rest)
}
// Or if you want the event to be cleared when the component unmounts, use useStore:
const [cart, setCart] = useStore.cart(initialCartValue, onCartUpdate)