a58b2d0ac4
* 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> |
||
---|---|---|
.. | ||
cart | ||
collections | ||
query-state | ||
schema | ||
utils | ||
README.md | ||
constants.ts | ||
default-states.ts | ||
index.ts | ||
mapped-types.ts | ||
shared-controls.ts | ||
tsconfig.json | ||
types.ts |
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 |