All notable changes to this project will be documented in this file.
- New advanced React hooks with Effect:
useCancellable
: Managing cancellable operations with timeout supportuseRetry
: Automatic retry after failure with customizable strategiesuseSWR
: Implementation of Stale-While-Revalidate pattern for data fetchinguseReducerWithEffect
: Extended useReducer hook with Effect capabilitiesusePrioritizedEffects
: Orchestration of effects with priority management
- Better integration with Effect's Fiber API for cancellation management
- More idiomatic use of Effect's functional patterns
- Enhanced error handling across all hooks
- Optimized package size by excluding examples from the published package
- Reduced unpacked size from ~183KB to ~135KB (26% reduction)
- Enhanced use of Effect in all asynchronous hooks:
- Replaced try/catch blocks with more functional patterns using
Effect.tap
,Effect.tapError
, andEffect.ensuring
- Improved error handling with typed errors
- Better composition of effects
- More declarative and functional implementation
- Replaced try/catch blocks with more functional patterns using
- Improved documentation in README with comparison examples showing:
- Traditional React approach vs. zeft hooks implementation
- Clear examples of code simplification provided by the library
- More comprehensive usage examples for all hooks
- Support for slices with
createSlice
andcombineSlices
- New asynchronous hooks:
useAsyncEffect
: Manages a single asynchronous effect with built-in stateuseCombinedEffects
: Combines multiple effects in parallel or sequenceuseConditionalEffect
: Runs effects based on conditionsuseStoreEffect
: Integrates effects directly with a store
- Examples for all new features
- DevTools middleware for Redux DevTools integration
- Support for time-travel debugging
- Action naming for better debugging
- Documentation for DevTools usage
- Persist middleware for state persistence
- Support for various storage options
- Migration capabilities for versioned storage
- Documentation and examples
- Initial release
- Basic store implementation
- Effect store for async operations
- React integration with optimized hooks
- TypeScript support