Providers
Providers are a key concept in the ReactiveModel system. They allow you to decouple data access logic from the reactive state itself. By implementing a simple interface, providers make it possible to integrate your models and collections with any kind of data source โ from local storage and IndexedDB to SQL, NoSQL, REST APIs, or even file systems.
๐ฏ Purpose
The main goal of a provider is to externalize persistence logic so the reactive layer (items and collections) can remain agnostic of how data is fetched, stored, or updated.
This enables:
Clean separation of concerns
Easier testing and mocking
Plug-and-play integration with various backends or storage engines
Uniform handling of local and remote data sources
๐ Shared Concept
The provider concept is used in both:
Item<T>
โ for single entity operationsCollection<T>
โ for group operations
While both rely on a provider, each one requires a different interface, suited to its purpose.
๐ฆ Item Providers
Used in the Item<T>
class to interact with a single entity.
You must implement the IEntityProvider
interface:
Example
๐ Collection Providers
Used in the Collection<T>
class to interact with a list of items. You must implement the ICollectionProvider
interface:
Example
โ๏ธ Key Benefits
โ Agnostic of backend or storage engine
โ Fully compatible with remote APIs or local storage
โ Uniform interface for loading, saving, deleting
โ Reusable and testable logic
โ Scales from simple files to complex data layers
๐งช Implementation Notes
All methods return
Promise<any>
. The return shape is not enforced strictly yet, but a standard response withstatus
,data
, orerror
is encouraged.These interfaces are simple by design but will evolve in future versions to support advanced patterns like optimistic updates, error handling, and more detailed typing.
๐ฎ Future Enhancements
The current provider interfaces are intentionally minimal. Upcoming improvements may include:
Better typing for responses
Automatic retry logic
Lifecycle hooks
Centralized error handling
๐ Summary
Single Entity
Item<T>
IEntityProvider
Collection
Collection<T>
ICollectionProvider
By following these simple interfaces, you can seamlessly integrate your models and collections with any data source, while keeping your reactive logic clean and focused.
Last updated