@jetshop/template-trend 5.8.4 → 5.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/.linaria-cache/packages/template-trend/src/components/Layout/Header/ChannelSelector/ChannelSelector.linaria.css +1 -1
  2. package/.linaria-cache/packages/template-trend/src/components/SearchPage/CategoryList.linaria.css +7 -0
  3. package/.linaria-cache/packages/template-trend/src/components/StartPage/CategoryList.linaria.css +6 -6
  4. package/.linaria-cache/packages/template-trend/src/components/StartPage/StartPage.linaria.css +0 -1
  5. package/.linaria-cache/packages/ui/ChannelSelector/Region.linaria.css +3 -0
  6. package/README.md +118 -1944
  7. package/cypress/integration/essentials.spec.js +50 -0
  8. package/package.json +5 -5
  9. package/schema.graphql +1 -0
  10. package/src/components/Auth/ForgotPassword.js +3 -8
  11. package/src/components/Auth/README.md +5 -0
  12. package/src/components/Cart/CartButton.js +40 -44
  13. package/src/components/Cart/CartFlyout.js +8 -5
  14. package/src/components/Cart/CartItem.js +12 -15
  15. package/src/components/Cart/{addMultipleToCart.gql → queries/addMultipleToCart.gql} +1 -1
  16. package/src/components/Cart/{addToCart.gql → queries/addToCart.gql} +1 -1
  17. package/src/components/Cart/{CartFragment.gql → queries/cartFragment.gql} +9 -0
  18. package/src/components/Cart/{CartQuery.gql → queries/cartQuery.gql} +1 -1
  19. package/src/components/Cart/{decrementQuantity.gql → queries/decrementQuantity.gql} +1 -1
  20. package/src/components/Cart/{incrementQuantity.gql → queries/incrementQuantity.gql} +1 -1
  21. package/src/components/Cart/{removeFromCart.gql → queries/removeFromCart.gql} +1 -1
  22. package/src/components/CategoryPage/CategoryPage.js +1 -0
  23. package/src/components/CategoryPage/Filters/ListFilters.js +1 -2
  24. package/src/components/CategoryPage/ProductCard.js +2 -0
  25. package/src/components/CategoryPage/ProductGrid.js +5 -0
  26. package/src/components/CategoryPage/ProductGridFragment.gql +8 -0
  27. package/src/components/CategoryPage/ProductGridWindow.js +19 -12
  28. package/src/components/CategoryPage/README.md +11 -0
  29. package/src/components/CategoryPage/WindowedCategoryPage.js +6 -5
  30. package/src/components/Forms/Input.js +3 -6
  31. package/src/components/Layout/Header/ChannelSelector/ChannelSelector.js +3 -0
  32. package/src/components/Layout/Header/ChannelSelector/ChannelSelectorModal.js +4 -3
  33. package/src/components/Layout/Header/ChannelSelector/Selector.js +2 -0
  34. package/src/components/Layout/Header/RecommendedChannel/RecommendedChannelSelector.js +3 -1
  35. package/src/components/Layout/Header/TopNav.js +13 -11
  36. package/src/components/LogOut.loadable.js +10 -0
  37. package/src/components/MyPages/MyPagesSidebar.js +0 -1
  38. package/src/components/PreviewRoute.loadable.js +10 -0
  39. package/src/components/ProductList/AddToCart.js +8 -5
  40. package/src/components/ProductList/Favourite.js +2 -2
  41. package/src/components/ProductList/FavouriteCount.js +2 -2
  42. package/src/components/ProductList/Favourites.js +17 -12
  43. package/src/components/ProductList/Lister.js +44 -0
  44. package/src/components/ProductList/Product.js +5 -4
  45. package/src/components/ProductList/ProductLists.gql +8 -5
  46. package/src/components/ProductList/SelectVariant.js +6 -10
  47. package/src/components/ProductList/productListQueries.js +5 -0
  48. package/src/components/ProductPage/AddToCart/AddToCartForm.js +19 -18
  49. package/src/components/ProductPage/AddToCart/ProductToast.js +7 -4
  50. package/src/components/ProductPage/PackageProduct/PackageProduct.js +8 -6
  51. package/src/components/ProductPage/VariantSelector.js +1 -1
  52. package/src/components/{StartPage → SearchPage}/CategoryList.js +6 -4
  53. package/src/components/SearchPage/EmptySearchResults.js +1 -1
  54. package/src/components/Shop.js +52 -76
  55. package/src/components/StartPage/Content/Row.js +0 -37
  56. package/src/components/StartPage/Content/StartPageHero.js +9 -1
  57. package/src/components/StartPage/StartPage.js +0 -13
  58. package/src/components/StartPage/StartPageProductGridFragment.gql +8 -0
  59. package/cypress/constants.js +0 -5
  60. package/cypress/integration/addToCart/addToCart.spec.js +0 -27
  61. package/cypress/integration/addToCart/disabledVariations.spec.js +0 -17
  62. package/cypress/integration/addToCart/newslettersubscriber.spec.js +0 -24
  63. package/cypress/integration/addToCart/notifyWhenBackInStock.spec.js +0 -20
  64. package/cypress/integration/addToCart/productConfigurations.spec.js +0 -35
  65. package/cypress/integration/addToCart/productVariations.spec.js +0 -42
  66. package/cypress/integration/addToCart/sizePriceChange.spec.js +0 -20
  67. package/cypress/integration/analytics/gtag.spec.js +0 -90
  68. package/cypress/integration/analytics/releware.spec.js +0 -95
  69. package/cypress/integration/auth/login.spec.js +0 -18
  70. package/cypress/integration/auth/signup.spec.js +0 -98
  71. package/cypress/integration/category_page_spec.js +0 -73
  72. package/cypress/integration/filters.spec.js +0 -103
  73. package/cypress/integration/getbyarticlenumber.spec.js +0 -28
  74. package/cypress/integration/packages.spec.js +0 -85
  75. package/cypress/integration/prefetch_headers_spec.js +0 -26
  76. package/cypress/integration/product_browsing_spec.js +0 -17
  77. package/cypress/integration/search/autocomplete.spec.js +0 -28
  78. package/cypress/integration/search/search_page.spec.js +0 -39
  79. package/cypress/integration/ssr/categorySSR.js +0 -9
  80. package/cypress/integration/ssr/productSSR.js +0 -9
  81. package/cypress/integration/ssr/startPageSSR.js +0 -5
  82. package/cypress/integration/start_page_spec.js +0 -5
  83. package/cypress/integration/stores_page.spec.js +0 -5
  84. package/src/components/StartPage/Campaign.js +0 -162
  85. package/src/components/StartPage/CampaignHeader.js +0 -101
  86. package/src/components/StartPage/ExtraDetails.js +0 -72
  87. package/src/components/StartPage/Readme.md +0 -88
  88. package/src/components/StartPage/campaign.json +0 -20
  89. package/src/components/StartPage/campaignHeader.json +0 -5
  90. package/src/components/StartPage/categoryList.json +0 -65
  91. package/src/components/StartPage/extraDetails.json +0 -6
  92. package/src/components/StartPage/title.json +0 -3
@@ -0,0 +1,50 @@
1
+ // This file contains essential tests to ensure that the basic purchase flow is working
2
+ // Make sure to update the URLs below to pages that are relevant to your shop
3
+ const CATEGORY_PAGE = '/se/sv/nyheter';
4
+ const PRODUCT_PAGE = '/se/sv/mobler/nice-chair';
5
+
6
+ describe('Start page', () => {
7
+ it('successfully loads', () => {
8
+ cy.visit('/');
9
+ });
10
+ });
11
+
12
+ describe('Category page', () => {
13
+ it('successfully loads', () => {
14
+ cy.visit(CATEGORY_PAGE);
15
+ });
16
+
17
+ it('links to products', () => {
18
+ cy.visit(CATEGORY_PAGE);
19
+ const url = cy.url();
20
+ cy.findAllByTestId('product').first().click();
21
+ cy.url().should('not.be', url);
22
+ });
23
+ });
24
+
25
+ describe('Product page', () => {
26
+ it('successfully loads', () => {
27
+ cy.visit(PRODUCT_PAGE);
28
+ });
29
+
30
+ it('lets you add to cart', () => {
31
+ cy.visit(PRODUCT_PAGE);
32
+ cy.findByTestId('add-to-cart').click();
33
+ // Cart now contains one item
34
+ cy.findByTestId('cart-button').next().contains('1');
35
+ });
36
+ });
37
+
38
+ describe('Cart', () => {
39
+ it('can be successfully opened', () => {
40
+ cy.findByTestId('cart-button').click();
41
+ });
42
+
43
+ it('lets you go to the checkout', () => {
44
+ cy.visit(PRODUCT_PAGE);
45
+ cy.findByTestId('add-to-cart').click();
46
+ cy.findByTestId('cart-button').click();
47
+ cy.findByTestId('checkout-button').click();
48
+ cy.url().should('contain', '/checkout');
49
+ });
50
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jetshop/template-trend",
3
- "version": "5.8.4",
3
+ "version": "5.11.1",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "build": "react-scripts build",
@@ -45,11 +45,11 @@
45
45
  ]
46
46
  },
47
47
  "dependencies": {
48
- "@jetshop/core": "^5.8.4",
48
+ "@jetshop/core": "^5.11.1",
49
49
  "@jetshop/flight-shortcodes": "^2.0.10",
50
- "@jetshop/intl": "^5.8.4",
51
- "@jetshop/react-scripts": "^5.8.4",
52
- "@jetshop/ui": "^5.8.4",
50
+ "@jetshop/intl": "^5.11.1",
51
+ "@jetshop/react-scripts": "^5.11.1",
52
+ "@jetshop/ui": "^5.11.1",
53
53
  "@react-google-maps/api": "~1.7.0",
54
54
  "prop-types": "^15.6.2",
55
55
  "react": "^16.9.0",
package/schema.graphql CHANGED
@@ -1458,6 +1458,7 @@ type Product implements Document {
1458
1458
  """
1459
1459
  campaigns: [Category]
1460
1460
  hasVariants: Boolean!
1461
+ hasVariantsWithDifferingPrices: Boolean!
1461
1462
  variants: ProductVariants
1462
1463
  images(
1463
1464
  """
@@ -13,7 +13,7 @@ import { activeSegment, smallSection } from './UI/Form';
13
13
  import MaxWidth from '../Layout/MaxWidth';
14
14
  import { cx } from 'linaria';
15
15
 
16
- export default function ForgotPasswordPage(props) {
16
+ export default function ForgotPasswordPage() {
17
17
  return (
18
18
  <MaxWidth style={{ alignItems: 'center', marginTop: '2em' }}>
19
19
  <ForgotPasswordProvider>
@@ -28,13 +28,8 @@ export default function ForgotPasswordPage(props) {
28
28
  }
29
29
 
30
30
  function ForgotPasswordForm() {
31
- const {
32
- submitted,
33
- isSubmitting,
34
- globalError,
35
- isValid,
36
- emailInputProps
37
- } = useForgotPasswordData();
31
+ const { submitted, isSubmitting, globalError, isValid, emailInputProps } =
32
+ useForgotPasswordData();
38
33
 
39
34
  if (submitted) {
40
35
  return (
@@ -0,0 +1,5 @@
1
+ # Auth
2
+
3
+ These components deal with registering and signing in, using Jetshop to keep track of memberships. This is usually used for customer loyalty programs, or for e.g. b2b sales where you need an account to browse the site.
4
+
5
+ If you don't use this feature, feel free to comment out the imports and routes in Shop.js to reduce the bundle size.
@@ -1,14 +1,15 @@
1
+ import React from 'react';
2
+ import { css } from 'linaria';
3
+ import { styled } from 'linaria/react';
4
+
1
5
  import CartProvider from '@jetshop/core/components/Query/CartProvider';
2
6
  import t from '@jetshop/intl';
3
7
  import { Above } from '@jetshop/ui/Breakpoints';
4
8
  import { DrawerTrigger } from '@jetshop/ui/Modal/Drawer/DrawerTrigger';
5
9
  import { FlyoutTrigger } from '@jetshop/ui/Modal/Flyout';
6
- import { styled } from 'linaria/react';
7
- import { css } from 'linaria';
8
- import React, { Fragment } from 'react';
9
- import { ReactComponent as Cart } from '../../svg/Cart.svg';
10
+ import { ReactComponent as CartIcon } from '../../svg/Cart.svg';
10
11
  import Badge from '../ui/Badge';
11
- import cartQuery from './CartQuery.gql';
12
+ import cartQuery from './queries/cartQuery.gql';
12
13
 
13
14
  const Button = styled('button')`
14
15
  padding: 0;
@@ -38,7 +39,7 @@ function CartButton({ target, itemsInCart, className }) {
38
39
  data-testid="cart-button"
39
40
  onClick={target.isOpen ? target.hideTarget : target.showTarget}
40
41
  >
41
- <Cart className="badge-svg-wrapper" />
42
+ <CartIcon className="badge-svg-wrapper" />
42
43
  <span>{t('Cart')}</span>
43
44
  </Button>
44
45
  {itemsInCart > 0 && <Badge text={itemsInCart} />}
@@ -48,45 +49,40 @@ function CartButton({ target, itemsInCart, className }) {
48
49
 
49
50
  function CartButtonFlyout({ className }) {
50
51
  return (
51
- <Fragment>
52
- <CartProvider query={cartQuery}>
53
- {result => {
54
- // Set items in cart to the API result.
55
- // If the result is undefined, fall back to 0
56
- const itemsInCart = result?.data?.cart?.totalQuantity || 0;
52
+ <CartProvider query={cartQuery}>
53
+ {result => {
54
+ const itemsInCart = result?.data?.cart?.totalQuantity || 0;
57
55
 
58
- return (
59
- // Use a flyout for breakpoints above md
60
- // Else use a Drawer
61
- <Above breakpoint="md">
62
- {matches =>
63
- matches ? (
64
- <FlyoutTrigger id="cart-flyout">
65
- {flyout => (
66
- <CartButton
67
- className={className}
68
- target={flyout}
69
- itemsInCart={itemsInCart}
70
- />
71
- )}
72
- </FlyoutTrigger>
73
- ) : (
74
- <DrawerTrigger preventOverflow={true} id="cart-drawer">
75
- {drawer => (
76
- <CartButton
77
- className={className}
78
- target={drawer}
79
- itemsInCart={itemsInCart}
80
- />
81
- )}
82
- </DrawerTrigger>
83
- )
84
- }
85
- </Above>
86
- );
87
- }}
88
- </CartProvider>
89
- </Fragment>
56
+ // Drawer on mobile, flyout on desktop
57
+ return (
58
+ <Above breakpoint="md">
59
+ {matches =>
60
+ matches ? (
61
+ <FlyoutTrigger id="cart-flyout">
62
+ {flyout => (
63
+ <CartButton
64
+ className={className}
65
+ target={flyout}
66
+ itemsInCart={itemsInCart}
67
+ />
68
+ )}
69
+ </FlyoutTrigger>
70
+ ) : (
71
+ <DrawerTrigger preventOverflow={true} id="cart-drawer">
72
+ {drawer => (
73
+ <CartButton
74
+ className={className}
75
+ target={drawer}
76
+ itemsInCart={itemsInCart}
77
+ />
78
+ )}
79
+ </DrawerTrigger>
80
+ )
81
+ }
82
+ </Above>
83
+ );
84
+ }}
85
+ </CartProvider>
90
86
  );
91
87
  }
92
88
 
@@ -1,3 +1,6 @@
1
+ import React from 'react';
2
+ import { styled } from 'linaria/react';
3
+
1
4
  import { useTracker } from '@jetshop/core/analytics/Analytics';
2
5
  import { trackCartCheckoutEvent } from '@jetshop/core/analytics/tracking';
3
6
  import CartProvider from '@jetshop/core/components/Query/CartProvider';
@@ -6,15 +9,15 @@ import { Above } from '@jetshop/ui/Breakpoints';
6
9
  import Drawer, { DrawerTarget } from '@jetshop/ui/Modal/Drawer';
7
10
  import { FlyoutTarget } from '@jetshop/ui/Modal/Flyout';
8
11
  import { Price } from '@jetshop/ui/Price';
12
+ import { useChannelSettings } from '@jetshop/core/hooks/Channels/useChannelSettings';
13
+ import { Currency } from '@jetshop/ui/Price/Currency';
14
+
9
15
  import { theme } from '../Theme';
10
- import React from 'react';
11
- import { styled } from 'linaria/react';
12
16
  import { baseStyles } from '../ui/Button';
13
17
  import CartItem from './CartItem';
14
- import cartQuery from './CartQuery.gql';
15
18
  import FreeShipping from './FreeShipping';
16
- import { useChannelSettings } from '@jetshop/core/hooks/Channels/useChannelSettings';
17
- import { Currency } from '@jetshop/ui/Price/Currency';
19
+
20
+ import cartQuery from './queries/cartQuery.gql';
18
21
 
19
22
  const Flyout = styled('div')`
20
23
  background: white;
@@ -1,18 +1,19 @@
1
+ import React from 'react';
2
+ import { styled } from 'linaria/react';
3
+ import { Link } from 'react-router-dom';
4
+
1
5
  import useDecrementQuantity from '@jetshop/core/components/Mutation/useDecrementQuantity';
2
6
  import useIncrementQuantity from '@jetshop/core/components/Mutation/useIncrementQuantity';
3
7
  import useRemoveFromCart from '@jetshop/core/components/Mutation/useRemoveFromCart';
4
8
  import getCartItemVariant from '@jetshop/core/helpers/getCartItemVariant';
5
9
  import Image from '@jetshop/ui/Image';
6
10
  import { Price } from '@jetshop/ui/Price';
7
- import { ReactComponent as Cross } from '@jetshop/ui/svg/Cross.svg';
8
- import React from 'react';
9
- import { styled } from 'linaria/react';
10
- import { Link } from 'react-router-dom';
11
+ import { ReactComponent as CrossIcon } from '@jetshop/ui/svg/Cross.svg';
11
12
  import { FlyoutTrigger } from '@jetshop/ui/Modal/Flyout';
12
- import removeFromCartMutation from './removeFromCart.gql';
13
- import incrementQuantityMutation from './incrementQuantity.gql';
14
- import decrementQuantityMutation from './decrementQuantity.gql';
15
- import cartQuery from './CartQuery.gql';
13
+ import removeFromCartMutation from './queries/removeFromCart.gql';
14
+ import incrementQuantityMutation from './queries/incrementQuantity.gql';
15
+ import decrementQuantityMutation from './queries/decrementQuantity.gql';
16
+ import cartQuery from './queries/cartQuery.gql';
16
17
 
17
18
  const Wrapper = styled('div')`
18
19
  display: flex;
@@ -103,12 +104,8 @@ const RemoveItem = styled('div')`
103
104
  `;
104
105
 
105
106
  const CartItem = ({ item, className = '' }) => {
106
- const {
107
- isVariant,
108
- variantImage,
109
- variantValues,
110
- hasVariantImage
111
- } = getCartItemVariant(item);
107
+ const { isVariant, variantImage, variantValues, hasVariantImage } =
108
+ getCartItemVariant(item);
112
109
 
113
110
  const { incrementQuantity } = useIncrementQuantity({
114
111
  incrementQuantityMutation,
@@ -196,7 +193,7 @@ const CartItem = ({ item, className = '' }) => {
196
193
  }
197
194
  data-testid="remove-from-cart"
198
195
  >
199
- <Cross />
196
+ <CrossIcon />
200
197
  </button>
201
198
  </RemoveItem>
202
199
 
@@ -1,4 +1,4 @@
1
- #import "./CartFragment.gql"
1
+ #import "./cartFragment.gql"
2
2
 
3
3
  mutation addMultipleToCart($cartId: String, $items: [AddMultipleToCartInput]!) {
4
4
  addMultipleToCart(cartId: $cartId, items: $items) {
@@ -1,4 +1,4 @@
1
- #import "./CartFragment.gql"
1
+ #import "./cartFragment.gql"
2
2
 
3
3
  mutation addToCart($input: AddToCartInput!) {
4
4
  addToCart(input: $input) {
@@ -4,6 +4,7 @@
4
4
  #import "@jetshop/core/data/fragments/CommentsFragment.gql"
5
5
 
6
6
  fragment Cart on Cart {
7
+ __optimistic @client
7
8
  id
8
9
  externalCheckoutUrl
9
10
  totalQuantity
@@ -82,6 +83,14 @@ fragment Cart on Cart {
82
83
  id
83
84
  path
84
85
  }
86
+ customFields {
87
+ key
88
+ type
89
+ title
90
+ ... on CustomStringField {
91
+ stringValue: value
92
+ }
93
+ }
85
94
  images {
86
95
  modifiedDate
87
96
  alt
@@ -1,4 +1,4 @@
1
- #import "./CartFragment.gql"
1
+ #import "./cartFragment.gql"
2
2
 
3
3
  query CartQuery($cartId: String) {
4
4
  cart(id: $cartId) {
@@ -1,4 +1,4 @@
1
- #import "./CartFragment.gql"
1
+ #import "./cartFragment.gql"
2
2
 
3
3
  mutation decrementItemQuantity($input: ChangeByOneItemQuantityInput!) {
4
4
  decrementItemQuantity(input: $input) {
@@ -1,4 +1,4 @@
1
- #import "./CartFragment.gql"
1
+ #import "./cartFragment.gql"
2
2
 
3
3
  mutation incrementItemQuantity($input: ChangeByOneItemQuantityInput!) {
4
4
  incrementItemQuantity(input: $input) {
@@ -1,4 +1,4 @@
1
- #import "./CartFragment.gql"
1
+ #import "./cartFragment.gql"
2
2
 
3
3
  mutation removeFromCart($input: RemoveFromCartInput!) {
4
4
  removeFromCart(input: $input) {
@@ -25,6 +25,7 @@ const CategoryPage = props => {
25
25
  const searchObject = qs.parse(search, { ignoreQueryPrefix: true });
26
26
  const standardPagination = searchObject.standardPagination === 'true';
27
27
 
28
+ // Comment out the one you're not using
28
29
  if (standardPagination) {
29
30
  return <LoadableStandardCategoryPage {...props} />;
30
31
  } else {
@@ -45,8 +45,7 @@ function ListFilter({ filter }) {
45
45
  item.resultCount === 0
46
46
  ? {
47
47
  opacity: 0.4,
48
- cursor: 'not-allowed',
49
- cursor: 'pointer'
48
+ cursor: 'not-allowed'
50
49
  }
51
50
  : { cursor: 'pointer' }
52
51
  }
@@ -69,6 +69,7 @@ export function ProductCard({
69
69
  forwardRef,
70
70
  as = 'li',
71
71
  children,
72
+ loadImageEagerly = false,
72
73
  ...linkProps
73
74
  }) {
74
75
  const hasImages = product.images && product.images.length > 0;
@@ -103,6 +104,7 @@ export function ProductCard({
103
104
  src={product.images[0].url}
104
105
  modifiedDate={product.images[0].modifiedDate}
105
106
  badges={<Badges badges={badges} />}
107
+ critical={loadImageEagerly}
106
108
  ></Image>
107
109
  ) : (
108
110
  <Image src={transparentDataImg} />
@@ -51,6 +51,10 @@ export const Wrapper = styled('ul')`
51
51
  }
52
52
  `;
53
53
 
54
+ export function isAboveFold(index) {
55
+ return index < 4;
56
+ }
57
+
54
58
  export function ProductGrid({
55
59
  products,
56
60
  listName,
@@ -81,6 +85,7 @@ export function ProductGrid({
81
85
  product={product}
82
86
  style={{ opacity: loading ? 0.5 : 1 }}
83
87
  list={listName}
88
+ loadImageEagerly={isAboveFold(index)}
84
89
  {...rest}
85
90
  >
86
91
  <Favourite
@@ -27,4 +27,12 @@ fragment ProductGrid on Product {
27
27
  path
28
28
  }
29
29
  }
30
+ customFields {
31
+ key
32
+ type
33
+ title
34
+ ... on CustomStringField {
35
+ stringValue: value
36
+ }
37
+ }
30
38
  }
@@ -3,7 +3,7 @@ import { trackListEvent } from '@jetshop/core/analytics/tracking';
3
3
  import React, { useEffect, useMemo } from 'react';
4
4
  import { css, cx } from 'linaria';
5
5
  import { ProductCard } from './ProductCard';
6
- import { priceStyle } from './ProductGrid';
6
+ import { isAboveFold, priceStyle } from './ProductGrid';
7
7
  import { WindowGrid } from '@jetshop/ui/WindowGrid';
8
8
 
9
9
  const container = css`
@@ -40,24 +40,31 @@ function ProductGridWindow({
40
40
  }, [listName, products, track]);
41
41
 
42
42
  const renderProduct = useMemo(
43
- () => ({ item: product, style, innerRef }) => (
44
- <div className={defaultStyle} style={style} ref={innerRef}>
45
- <ProductCard
46
- key={product.articleNumber}
47
- product={product}
48
- as="div"
49
- categoryPath={categoryPath}
50
- />
51
- </div>
52
- ),
43
+ () =>
44
+ ({ item: product, style, innerRef }) =>
45
+ (
46
+ <div className={defaultStyle} style={style} ref={innerRef}>
47
+ <ProductCard
48
+ key={product.articleNumber}
49
+ product={product}
50
+ as="div"
51
+ categoryPath={categoryPath}
52
+ loadImageEagerly={isAboveFold(product.index)}
53
+ />
54
+ </div>
55
+ ),
53
56
  [categoryPath]
54
57
  );
55
58
 
59
+ const items = useMemo(() => {
60
+ return products.map((product, index) => ({ ...product, index }));
61
+ }, [products]);
62
+
56
63
  return (
57
64
  <WindowGrid
58
65
  id={id}
59
66
  itemsPerRow={[2, null, 3, 4]}
60
- items={products}
67
+ items={items}
61
68
  prevOffset={prevOffset}
62
69
  className={cx(container, priceStyle)}
63
70
  component={renderProduct}
@@ -0,0 +1,11 @@
1
+ # Category page
2
+ This folder contains two versions of category pages, of which you would usually select one.
3
+
4
+ ## Classic paginated category page
5
+ A category page that uses classic pagination, meaning next/previous buttons to step through pages, showing only one page of products at a time.
6
+
7
+ ## Infinite pagination category page
8
+ A more scroll-friendly version of a category page, where new products are appended to the list when you press the "Load more products" button. In order not to lose performance when rendering a large amount of products, it uses a technique called windowing to only render the products that are in view at the moment. This can cause issues if you have product cards of varying height, so make sure that all images and details showed on the product card result in the same overall height for the product card.
9
+
10
+ ## Read more
11
+ You can find more information about pagination in the [Flight documentation](https://docs.dev.jetshop.se/pagination).
@@ -47,9 +47,10 @@ const WindowedCategory = ({ category, result }) => {
47
47
  const location = useLocation();
48
48
  const params = qs.parse(location.search, { ignoreQueryPrefix: true });
49
49
  const routePath = category?.isDynamic ? null : result?.data?.route?.path;
50
- const categoryPath = useMemo(() => routePath && { path: routePath }, [
51
- routePath
52
- ]);
50
+ const categoryPath = useMemo(
51
+ () => routePath && { path: routePath },
52
+ [routePath]
53
+ );
53
54
 
54
55
  if (!category) {
55
56
  return (
@@ -106,7 +107,7 @@ const WindowedCategory = ({ category, result }) => {
106
107
  {previous.hasProducts && (
107
108
  <ButtonWrapper>
108
109
  <TrendLink
109
- secondary
110
+ className="secondary"
110
111
  onClick={e => {
111
112
  e.preventDefault();
112
113
  previous.fetchProducts();
@@ -135,7 +136,7 @@ const WindowedCategory = ({ category, result }) => {
135
136
  {next.hasProducts && (
136
137
  <ButtonWrapper>
137
138
  <TrendLink
138
- secondary
139
+ className="secondary"
139
140
  onClick={e => {
140
141
  e.preventDefault();
141
142
  next.fetchProducts();
@@ -71,11 +71,8 @@ const InputWithLabel = ({
71
71
  <span>{label || name}</span>
72
72
  {required && <span className="req">{t('(Required)')}</span>}
73
73
  </Label>
74
- <Field
75
- className={cx(disabled && 'disabled')}
76
- id={name}
77
- name={name}
78
- render={({ field, form: { touched, errors } }) => (
74
+ <Field className={cx(disabled && 'disabled')} id={name} name={name}>
75
+ {({ field, form: { touched, errors } }) => (
79
76
  <div>
80
77
  <Input
81
78
  {...props}
@@ -104,7 +101,7 @@ const InputWithLabel = ({
104
101
  )}
105
102
  </div>
106
103
  )}
107
- />
104
+ </Field>
108
105
  {!disableValidation && <ErrorMessage name={name} component={ErrorSpan} />}
109
106
  </Wrapper>
110
107
  );
@@ -13,6 +13,7 @@ const Flyout = styled('div')`
13
13
 
14
14
  const CountryFlag = styled('img')`
15
15
  height: 12px;
16
+ width: 12px;
16
17
  margin-right: 5px;
17
18
  `;
18
19
 
@@ -32,6 +33,8 @@ export default class HeaderChannelSelector extends Component {
32
33
  <CountryFlag
33
34
  src={`https://countryflags.jetshop.io/${selectedChannel.country.code}/flat/32.png`}
34
35
  alt="Country Flag"
36
+ width="16"
37
+ height="12"
35
38
  />
36
39
  {selectedChannel.country.name}
37
40
  </button>
@@ -26,9 +26,8 @@ const modalStyles = css`
26
26
  `;
27
27
 
28
28
  const ChannelSelectorModal = props => {
29
- const { selectedChannel, channels, updateChannel } = useContext(
30
- ChannelContext
31
- );
29
+ const { selectedChannel, channels, updateChannel } =
30
+ useContext(ChannelContext);
32
31
 
33
32
  return (
34
33
  <ModalTrigger
@@ -49,6 +48,8 @@ const ChannelSelectorModal = props => {
49
48
  src={`https://countryflags.jetshop.io/${selectedChannel.country.code}/flat/32.png`}
50
49
  alt="Country Flag"
51
50
  style={{ height: '12px', marginRight: '6px' }}
51
+ width="16"
52
+ height="12"
52
53
  />
53
54
  <span>{selectedChannel.country.name}</span>
54
55
  </Button>
@@ -139,6 +139,8 @@ const Selector = ({
139
139
  <CountryFlag
140
140
  src={`https://countryflags.jetshop.io/${code}/flat/32.png`}
141
141
  alt="Country Flag"
142
+ width="16"
143
+ height="12"
142
144
  />
143
145
  {name} ({channel.name})
144
146
  </Country>
@@ -1,6 +1,6 @@
1
1
  import React, { useState } from 'react';
2
2
  import { styled } from 'linaria/react';
3
- import { css, cx } from 'linaria';
3
+ import { cx } from 'linaria';
4
4
  import t from '@jetshop/intl';
5
5
  import ChannelSelector, {
6
6
  LangCurrWrapper,
@@ -153,6 +153,8 @@ const Selector = ({
153
153
  <CountryFlag
154
154
  src={`https://countryflags.jetshop.io/${code}/flat/32.png`}
155
155
  alt="Country Flag"
156
+ width="16"
157
+ height="12"
156
158
  />
157
159
  {name} ({channel.name})
158
160
  </Country>