ca8efd7c3e
* initial experiment for fetch error handling * throw error from api response error (this allows for catching it in the stream) * Add ERROR action type * Controls: resolve with an error response object rather than throw exception * remove try catch from resolver; just yield correct object based on presence of any errors * Make the use collection hook return an error. * Small tidy up in use-store-products * Throw exception from Use Collection - useState is needed for the exception to work inside a hook (see comments) * Show error code from API in error message * Update assets/js/base/components/block-error-boundary/block-error.js Co-Authored-By: Albert Juhé Lluveras <aljullu@gmail.com> * Update assets/js/base/components/block-error-boundary/style.scss Co-Authored-By: Albert Juhé Lluveras <aljullu@gmail.com> * Remove comment * Handle api error in boundry * Use reject in promise * Return error message by default which may be undefined (this is ok) * Update mocks so tests pass again Co-authored-by: Darren Ethier <darren@roughsmootheng.in> Co-authored-by: Albert Juhé Lluveras <aljullu@gmail.com> |
||
---|---|---|
.. | ||
collections | ||
query-state | ||
schema | ||
utils | ||
README.md | ||
constants.js | ||
index.js |
README.md
This folder contains all the data stores registered with wp.data
for use by various blocks. Store keys are exported as constants on the wc.wcBlocksData
export (external registered as @woocommerce/block-data
and enqueued via handle wc-blocks-data-store
). For any block using the store, make sure you import the store key rather than using the reference directly to ensure dependencies are automatically extracted correctly.
It is assumed there is some familiarity already with interacting with the wp.data
api. You can read more about that here.
The following stores are registered:
store | description | store key |
---|---|---|
schema | Used for accessing routes. Has more internal usage. | SCHEMA_STORE_KEY |
collections | Holds collections of data indexed by namespace, model name and query string | COLLECTIONS_STORE_KEY |
query-state | Holds arbitrary values indexed by context and key. Typically used for tracking state of query objects for a given context | QUERY_STATE_STORE_KEY |