woocommerce/plugins/woocommerce-blocks/assets/js/data/collections
Mike Jolley a58b2d0ac4 Store API: Introduce API Versioning System (https://github.com/woocommerce/woocommerce-blocks/pull/5911)
* Fix missing dependency

* Min version exceeds required 5.6

* Move exceptions

* Move schemas under V1 namespace

* Move routes to v1

* Move RouteException

* Route versioning

* Update route and schema identifiers/init

* Rework route init to support multiple versions and multiple schema

* Tests for cart routes

* Cart coupons tests

* Batch

* extensions

* Update docs

* Update remaining tests

* woocommerce_store_api_route_version was unused

* Revert unrelated change

* Fix phpcs

* Update src/StoreApi/docs/guiding-principles.md

Co-authored-by: Thomas Roberts <5656702+opr@users.noreply.github.com>

* Update src/StoreApi/docs/cart-items.md

Co-authored-by: Thomas Roberts <5656702+opr@users.noreply.github.com>

* Update src/StoreApi/RoutesController.php

Co-authored-by: Thomas Roberts <5656702+opr@users.noreply.github.com>

* Note about v1 unversioned endpoints

* Remove unused get_route_version

* 409 comment in tests

* Remove copy pasted comments

* Update all usage to v1

* Correct namespace

* More v1 namespaces

* More missing v1

* fix mocks

Co-authored-by: Thomas Roberts <5656702+opr@users.noreply.github.com>
2022-02-23 12:00:45 +00:00
..
test Add @woocommerce/eslint-plugin dependency (https://github.com/woocommerce/woocommerce-blocks/pull/3115) 2020-09-07 13:31:10 -04:00
README.md Rename modelName to resourceName everywhere (https://github.com/woocommerce/woocommerce-blocks/pull/1173) 2019-11-14 11:10:50 -05:00
action-types.js Implement last modified header for the products endpoint to allow for cache busting (https://github.com/woocommerce/woocommerce-blocks/pull/1647) 2020-02-18 11:37:39 +00:00
actions.js Add missing experimental functions to the feature flags page (https://github.com/woocommerce/woocommerce-blocks/pull/3522) 2020-12-09 15:10:57 +01:00
constants.js Store API: Introduce API Versioning System (https://github.com/woocommerce/woocommerce-blocks/pull/5911) 2022-02-23 12:00:45 +00:00
index.js Add nonces to Store API endpoints (https://github.com/woocommerce/woocommerce-blocks/pull/1992) 2020-03-19 11:50:51 +00:00
reducers.js Implement last modified header for the products endpoint to allow for cache busting (https://github.com/woocommerce/woocommerce-blocks/pull/1647) 2020-02-18 11:37:39 +00:00
resolvers.js Add nonces to Store API endpoints (https://github.com/woocommerce/woocommerce-blocks/pull/1992) 2020-03-19 11:50:51 +00:00
selectors.js Implement last modified header for the products endpoint to allow for cache busting (https://github.com/woocommerce/woocommerce-blocks/pull/1647) 2020-02-18 11:37:39 +00:00

README.md

Collections Store.

To utilize this store you will import the COLLECTIONS_STORE_KEY in any module referencing it. Assuming @woocommerce/block-data is registered as an external pointing to wc.wcBlocksData you can import the key via:

import { COLLECTIONS_STORE_KEY } from '@woocommerce/block-data';

Actions

receiveCollection( namespace, resourceName, queryString, ids = [], items = [], replace = false )

This will return an action object for the given arguments used in dispatching the collection results to the store.

Note: You should rarely have to dispatch this action directly as it is used by the resolver for the getCollection selector.

argument type description
namespace string The route namespace for the collection (eg. /wc/blocks)
resourceName string The resource name for the collection (eg. products/attributes)
queryString string An additional query string to add to the request for the collection. Note, collections are cached by the query string. (eg. '?order=ASC')
ids array If the collection route has placeholders for ids, you provide them via this argument in the order of how the placeholders appear in the route
response Object An object containing a items property with the collection items from the response (array), and a headers property that is matches the window.Headers interface containing the headers from the response.
replace boolean Whether or not to replace any existing items in the store for the given indexes (namespace, resourceName, queryString) if there are already values in the store

Selectors

getCollection( namespace, resourceName, query = null, ids=[] )

This selector will return the collection for the given arguments. It has a sibling resolver, so if the selector has never been resolved, the resolver will make a request to the server for the collection and dispatch results to the store.

argument type description
namespace string The route namespace for the collection (eg. /wc/blocks)
resourceName string The resource name for the collection (eg. products/attributes)
query Object The query arguments for the collection. Eg. { order: 'ASC', sortBy: Price }
ids Array If the collection route has placeholders for ids you provide the values for those placeholders in this array (in order).

getCollectionHeader( namespace, resourceName, header, query = null, ids = [])

This selector will return a header from the collection response using the given arguments. It has a sibling resolver that will resolve getCollection using the arguments if that has never been resolved.

If the collection has headers but not a matching header for the given header argument, then undefined will be returned.

If the collection does not have any matching headers for the given arguments, then null is returned.

argument type description
namespace string The route namespace for the collection (eg. /wc/blocks)
resourceName string The resource name for the collection (eg. products/attributes)
header string The header key for the header.
query Object The query arguments for the collection. Eg. { order: 'ASC', sortBy: Price }
ids Array If the collection route has placeholders for ids you provide the values for those placeholders in this array (in order).