Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Commit 80c454e

Browse files
[ci] release 2022-10 (#47)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 3add3be commit 80c454e

8 files changed

+63
-81
lines changed

.changeset/curly-turtles-itch.md

-5
This file was deleted.

.changeset/gentle-jokes-search.md

-5
This file was deleted.

.changeset/large-cobras-fold.md

-5
This file was deleted.

.changeset/nine-eels-care.md

-5
This file was deleted.

.changeset/nine-garlics-fetch.md

-55
This file was deleted.

.changeset/polite-tools-mate.md

-5
This file was deleted.

packages/react/CHANGELOG.md

+62
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,67 @@
11
# @shopify/hydrogen-react
22

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+
365
## 2022.10.1
466

567
### Patch Changes

packages/react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopify/hydrogen-react",
3-
"version": "2022.10.1",
3+
"version": "2022.10.2",
44
"description": "React components, hooks, and utilities for creating custom Shopify storefronts",
55
"homepage": "https://github.com/Shopify/hydrogen-ui/tree/main/packages/react",
66
"license": "MIT",

0 commit comments

Comments
 (0)