7ae87ca367
* Expose schemas * Accept strings for select shipping rate * strings are allowed * Refactor shipping package to hold it's own state * Add extension data to cart hook * Progress but state is broken * Move state back to hook * Progress but state is broken * use shipping hook updates * Fix re-render issue * hide x1 * Shipping slot fill * Working slot fills * Do not export package * Update extend usage in unit tests * update mock test data * Package per slotfill * Resolved merge conflicts * Update assets/js/blocks/cart-checkout/subscriptions-integration.js Co-authored-by: Seghir Nadir <nadir.seghir@gmail.com> * rename slot * deriveSelectedRates return doc * useCallback in throwError * final class ExtendRestApi * spacing * Move shipping rate selection to package level * remove const for counts * Remove schemas from extend * unused use * move to a single fill for packages * add todos * move subs code * fix extra extensions Co-authored-by: Seghir Nadir <nadir.seghir@gmail.com> |
||
---|---|---|
.. | ||
cart | ||
collections | ||
query-state | ||
schema | ||
utils | ||
README.md | ||
constants.js | ||
default-states.js | ||
index.js | ||
shared-controls.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 |