Skip to content

Commit 5ca16e9

Browse files
authored
Merge pull request #2571 from graphcommerce-org/fix/various
Fix/various
2 parents fb68972 + 4a8a60f commit 5ca16e9

40 files changed

Lines changed: 261 additions & 64 deletions

File tree

.changeset/busy-mammals-say.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@graphcommerce/magento-store': patch
3+
---
4+
5+
When switching stores unset the currency when there is no selection available for a given store.

.changeset/funky-geese-sell.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@graphcommerce/magento-store': patch
3+
---
4+
5+
Do not send an unacceptable store currency due to a configuration error and make sure the correct currency is stored. Show a StoreSwitcherFab on mobile.

.changeset/gold-eels-smash.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
'@graphcommerce/magento-recently-viewed-products': patch
3+
'@graphcommerce/magento-customer': patch
4+
'@graphcommerce/magento-compare': patch
5+
'@graphcommerce/magento-cart': patch
6+
---
7+
8+
Solve issue where the @client fields could not be resolved correctly.

.changeset/loose-stamps-peel.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@graphcommerce/magento-customer': patch
3+
---
4+
5+
Created a new GuestOrCustomerMask to show information based on their loggedIn state respecting the masking of private content.

.changeset/lovely-ads-send.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@graphcommerce/next-config': patch
3+
---
4+
5+
Always copy the file if the original file is a core file, allowing overrides.

.changeset/tiny-games-wear.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@graphcommerce/graphql': patch
3+
---
4+
5+
Show loading skeleton when loading and there is no data, but show when there is an error so we dont get in a stuck state.

.changeset/two-bags-smoke.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@graphcommerce/algolia-products': patch
3+
---
4+
5+
Make sure the default_display_currency_code is always fetched properly for Algolia

examples/magento-graphcms/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ GraphCommerce Pro is the paid verison of GraphCommerce, default Open Source
2929
license is €1000 per year, please contact us for a license. For Adobe Commerce
3030
its €2500 per year. Multi year bundles available.
3131

32-
- [GraphCommerce Pro Demo: Magento 2.4.7 + ](https://graphcommerce-pro-os-git-canary-reachdigital.vercel.app/men/photography)
32+
- [GraphCommerce Pro Demo: Magento 2.4.7 + Cache Notify + Private Pricing + Multi Cart](https://graphcommerce-pro-os-git-canary-reachdigital.vercel.app/men/photography)
3333
- [GraphCommerce Pro Demo: Adobe Commerce 2.4.7 + Pagebuilder + Returns, Store Credits, Gift Cards, Reward Points](https://graphcommerce-pro-ac-git-canary-reachdigital.vercel.app/page/test-page)
3434

3535
Please note that Pagebuilder is also available for Magento Open Source, just not

examples/magento-graphcms/components/Layout/LayoutNavigation.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ import { Logo } from './Logo'
3333
import { productListRenderer } from '../ProductListItems/productListRenderer'
3434
import {
3535
StoreSwitcherButton,
36+
StoreSwitcherFab,
3637
StoreSwitcherMenuFabSecondaryItem,
3738
} from '@graphcommerce/magento-store'
3839

@@ -157,6 +158,7 @@ export function LayoutNavigation(props: LayoutNavigationProps) {
157158
</DesktopNavActions>
158159

159160
<MobileTopRight>
161+
<StoreSwitcherFab size='responsiveMedium' />
160162
<SearchFab size='responsiveMedium' />
161163
</MobileTopRight>
162164
</>

examples/magento-open-source/components/Layout/LayoutNavigation.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { CustomerFab, CustomerMenuFabItem } from '@graphcommerce/magento-custome
55
import { SearchFab, SearchField } from '@graphcommerce/magento-search'
66
import {
77
StoreSwitcherButton,
8+
StoreSwitcherFab,
89
StoreSwitcherMenuFabSecondaryItem,
910
} from '@graphcommerce/magento-store'
1011
import { WishlistFab, WishlistMenuFabItem } from '@graphcommerce/magento-wishlist'
@@ -161,6 +162,7 @@ export function LayoutNavigation(props: LayoutNavigationProps) {
161162
</DesktopNavActions>
162163

163164
<MobileTopRight>
165+
<StoreSwitcherFab size='responsiveMedium' />
164166
<SearchFab size='responsiveMedium' />
165167
</MobileTopRight>
166168
</>

0 commit comments

Comments
 (0)