|
1 | 1 | # @shopify/hydrogen-react
|
2 | 2 |
|
| 3 | +## 2022.10.2 |
| 4 | + |
| 5 | +### Patch Changes |
| 6 | + |
| 7 | +- d31be71: Added <CartCheckoutButton /> that redirects to the CheckoutUrl when clicked. |
| 8 | +- 8005144: Adds the AddToCartButton component. This component renders a button that adds an item to the cart when pressed. |
| 9 | +- f1cb723: Adds BuyNowButton that adds an item to the cart and redirects the customer to checkout. |
| 10 | +- a34f44d: Add `<CartCost/>` component |
| 11 | +- 1ccbd1c: Introducing the new `metafieldParser()` function and `ParsedMetafield` type. |
| 12 | + |
| 13 | + ## `metafieldParser()` |
| 14 | + |
| 15 | + `metafieldParser()` is a temporary name; it will be renamed to `parseMetafield()` in a future release. |
| 16 | + |
| 17 | + The `metafieldParser()` function is an improvement and enhancement upon the existing `parseMetafield()` and `parseMetafieldValue()` functions. `metafieldParser()` now supports all Metafield types as outlined in the [Storefront API](https://shopify.dev/apps/metafields/types) documentation, including the list types! |
| 18 | + |
| 19 | + The parsed value can be found on the newly-added `parsedValue` property of the returned object from `metafieldParser()`. For example: |
| 20 | + |
| 21 | + ```js |
| 22 | + const parsed = metafieldParser(metafield); |
| 23 | + |
| 24 | + console.log(parsed.parsedValue); |
| 25 | + ``` |
| 26 | + |
| 27 | + `parseMetafieldValue()` has been marked as deprecated and will be removed in a future version of Hydrogen-UI. |
| 28 | + |
| 29 | + ## The `ParsedMetafield` type |
| 30 | + |
| 31 | + For TypeScript developers, we also introduce the new `ParsedMetafield` type to help improve your experience. The `ParsedMetafield` type is an object in which the keys map to the type that will be returned from `metafieldParser()`. For example: |
| 32 | + |
| 33 | + ```ts |
| 34 | + ParsedMetafield['boolean']; |
| 35 | + // or |
| 36 | + ParsedMetafield['list.collection']; |
| 37 | + ``` |
| 38 | + |
| 39 | + When used in conjunction with `metafieldParser()`, it will help TypeScript to understand what the returned object's `parsedValue` type is: |
| 40 | + |
| 41 | + ```ts |
| 42 | + const parsed = metafieldParser<ParsedMetafield['boolean']>(booleanMetafield) |
| 43 | + |
| 44 | + // type of `parsedValue` is `boolean | null` |
| 45 | + if(parsed.parsedValue) { |
| 46 | + ... |
| 47 | + } |
| 48 | + ``` |
| 49 | + |
| 50 | + or |
| 51 | + |
| 52 | + ```ts |
| 53 | + const parsed = metafieldParser<ParsedMetafield['list.collection']>( |
| 54 | + listCollectionMetafield |
| 55 | + ); |
| 56 | + |
| 57 | + // type of `parsedValue` is `Array<Collection> | null` |
| 58 | + parsed.parsedValue?.map((collection) => { |
| 59 | + console.log(collection?.name); |
| 60 | + }); |
| 61 | + ``` |
| 62 | + |
| 63 | +- f7a3932: Update the TS types for MediaFile to allow className and other HTML attributes |
| 64 | + |
3 | 65 | ## 2022.10.1
|
4 | 66 |
|
5 | 67 | ### Patch Changes
|
|
0 commit comments