-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added iOS styled headlines to category routes and widgets #324
Added iOS styled headlines to category routes and widgets #324
Conversation
- updated root category and category route the use the new component - updated widget headlines to use the new component - updated snapshots
- product lists with filter bars are not vertically scrollable anymore
Pull Request Test Coverage Report for Build 1195
💛 - Coveralls |
const Headline = ({ text }) => ( | ||
text.length ? <h3 className={styles.headline}>{text}</h3> : null | ||
); | ||
const Headline = (props) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This component receives a bunch of props. Even though the children
prop is hard to check, I would use PureComponent
here.
const className = props.small ? styles.small : styles.large; | ||
const Component = props.small ? 'h2' : 'h1'; | ||
|
||
const hasContent = props.children || (props.text && props.text.length); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please make this an if
condition and return null
immediately. For better readability.
...headline, | ||
fontSize: 34, | ||
margin: `${variables.gap.small}px 20px 20px`, | ||
}).toString(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please get rid of these toString
function call. We try to not use them anymore.
}; | ||
|
||
const large = css({ | ||
...headline, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
css()
can receive multiple parameters. Please use it like this instead of spreading another object it. Leave it to glamor to handle this.
fontSize: 18, | ||
margin: `${variables.gap.big * 2}px 0 ${variables.gap.big}px`, | ||
textAlign: 'center', | ||
const headline = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please wrap this with css()
as well in favor of the comment below.
}).toString(); | ||
|
||
const small = css({ | ||
...headline, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same thing with the spreading as above, please.
6303a2c Merge pull request #457 from shopgate/develop 9fd3d42 Merge branch 'PWA-764-migrate-pages-tracking' into develop 3e15b23 Merge branch 'PWA-327-Exchange-Router' into PWA-764-migrate-pages-tracking cb90554 Changed navigation.about key in English locale 37a2895 Updated gitignore files to match the new subtree structure. Also added some information about adding new core extensions into the `README.md` file. 4741b4c Changed gitignore settings. 205cd6e Merge branch 'develop' into PWA-327-Exchange-Router 2bb4302 Merge pull request #443 from shopgate/PWA-765-migrate-product-tracking 63e1557 PWA-765: Prioritized tracking in subscriber registration - the change fixed an issue where productIsReady$ from the tracking library didn't emit at the first time a product was opened b769534 PWA-764: Added route pattern constants to the index.jsx 158f1d0 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-765-migrate-product-tracking e5ce024 PWA-765: Reactivated product tracking 8782281 Merge pull request #439 from shopgate/CON-PWA-1025-ios10-scrollable-overflow-background 9e5441a Merge branch 'PWA-327-Exchange-Router' into CON-PWA-1025-ios10-scrollable-overflow-background 0521778 Merge pull request #437 from shopgate/PWA-763-mirgrate-checkout-tracking 1b9834c PWA-1025 - hint for an ios10 issue with background-color and overflow-scrolling combo bug 5447c33 PWA-763: Updated snapshots 236e6b5 PWA-763: Reactivated checkout tracking subscriptions ad1a56b Merge branch 'develop' into PWA-327-Exchange-Router 789f83d Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-327-Exchange-Router 499d4ed PWA-327 Updated snapshots ebd94bb PWA-327: Quickfix for leftover conflict fragment 1e7aec8 Fixed package.json 908a587 Merge branch 'develop' into PWA-327-Exchange-Router b3dbdc9 Merge pull request #435 from shopgate/PWA-768-Migrate-Link-tracking 84c1207 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-768-Migrate-Link-tracking a18cefe Merge pull request #436 from shopgate/PWA-667-pwa-6.0-refactoring 37d6d6b Merge branch 'PWA-327-Exchange-Router' into PWA-667-pwa-6.0-refactoring 49638d7 Merge pull request #434 from shopgate/PWA-767-Migrate-User-tracking f93e64d Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-767-Migrate-User-tracking f31f299 Merge pull request #432 from shopgate/PWA-766-Migrate-Search-tracking ae07e54 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-766-Migrate-Search-tracking 7d7a73c PWA-667 Updated snapshots. a1794d9 PWA-768 Re-enabled Link tracking d49a4c9 Merge branch 'PWA-327-Exchange-Router' into PWA-667-pwa-6.0-refactoring 9f3dff6 PWA-667 refactored test IDs and e2e Tests 8df1aac PWA-767 Re-enabled User tracking subscription. Added default grey background to Search route 511dce5 6.0.0-beta.13 1c94c41 PWA-766 Re-enabled search tracking 0c573c5 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-667-pwa-6.0-refactoring 1faf427 Merge pull request #429 from shopgate/PWA-508-Optimise-Cart-Route 766648c Merge branch 'PWA-327-Exchange-Router' into PWA-508-Optimise-Cart-Route c6ea58f Merge pull request #431 from shopgate/PWA-990-fix-products-request-with-filters 056af99 PWA-508 Corrected the Cart unit tests ced1b00 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-667-pwa-6.0-refactoring 7418bea PWA-667 added test ids 9cfbedd Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-990-fix-products-request-with-filters e4fc99b PWA-912: Filter adjustments - the value arrays now contain id and label - the filter chips are now rendered with the value label instead of the value id - added filters to the product pagination requests of categories 0e5f716 Merge branch 'PWA-327-Exchange-Router' into PWA-508-Optimise-Cart-Route 0eff2b0 Merge pull request #428 from shopgate/PWA-444-optomize-category-and-search 6ba38ce PWA-444 Added white background to placeholder list 10802ef PWA-444 Added lines between list placeholders bb43135 PWA-508 Updated snapshot 26c17f7 Merge branch 'PWA-327-Exchange-Router' into PWA-508-Optimise-Cart-Route 70a7248 PWA-508 Restructured Cart components 88b1486 PWA-444 Added unit tests. 4fcbaaf Merge branch 'PWA-327-Exchange-Router' into PWA-444-optomize-category-and-search ac61e8e PWA-444 Optimized category and search e76fc31 Merge pull request #426 from shopgate/PWA-983-remove-description-in-test-id 2092422 PWA-983 Updates Product Description snapshot 8fa7c3c Merge branch 'PWA-327-Exchange-Router' into PWA-983-remove-description-in-test-id 0b7e70a Merge pull request #427 from shopgate/PWA-511-Optimise-Navigator 798f5ad PWA-511 Recovered missing file 7edbb59 Merge branch 'PWA-327-Exchange-Router' into PWA-511-Optimise-Navigator 594ff24 PWA-511 Corrected/removed unit tests bcf1c7a Merge pull request #425 from shopgate/PWA-447-optimize-filter-pages 5fa953e Merge branch 'PWA-327-Exchange-Router' into PWA-511-Optimise-Navigator b4ef322 PWA-511 Adjusted some unit tests d779c2b PWA-447: Updated ValueButton styles to use color variables d611dad Merge branch 'PWA-327-Exchange-Router' into PWA-667-pwa-6.0-refactoring 3559078 PWA-983 removed description from test id. 44a8e9a Merge branch 'PWA-447-optimize-filter-pages' of github.com:shopgate/theme-gmd into PWA-447-optimize-filter-pages cfb8389 PWA-447 Added some tests. 8db72a2 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-447-optimize-filter-pages bce0578 Merge pull request #424 from shopgate/PWA-964-optomize-product-content 93ef6f2 Merge branch 'PWA-327-Exchange-Router' into PWA-511-Optimise-Navigator 70eb5a8 PWA-447 Optimized filter page. c575941 PWA-511 Removed all Navigator actions/selectors and reducer 5238b4b PWA-964: Fixed a bug where Manufacturer was stuck in loading state b20ea94 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-964-optomize-product-content 3aa7581 Merge pull request #422 from shopgate/PWA-956-optimize-PDP-reviews 8c2374a PWA-956: Fixed failing tests 07c662e PWA-956: Small reviews related changes - added deep compare for reviews data to the Reviews page Content connector to properly update when users update reviews - fixed some text 41bb4fb PWA-964 Optimized product content. 49c5623 Merge branch 'PWA-327-Exchange-Router' into PWA-956-optimize-PDP-reviews 98673d8 Merge pull request #423 from shopgate/PWA-957-optimize-tax-disclaimer ab2c856 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-957-optimize-tax-disclaimer 483a0bb PWA-957: Updated snapshots d8989c3 PWA-956 Triggers travis. ac3f35b Merge branch 'PWA-327-Exchange-Router' into PWA-956-optimize-PDP-reviews 9c39622 PWA-327 Added this branch to Travis 8c3a78e PWA-959 Adjusted data spreading in the feature. c2769c7 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-957-optimize-tax-disclaimer f84a9b1 Merge branch 'PWA-327-Exchange-Router' into PWA-956-optimize-PDP-reviews 90fc2eb Merge pull request #413 from shopgate/PWA-872-fix-unit-tests 5258ede Merge branch 'PWA-327-Exchange-Router' into PWA-511-Optimise-Navigator 1bb5c7d Merge pull request #421 from shopgate/PWA-970-Filterbar-visibility 18eab02 PWA-970 Codestyle 19572c6 PWA-511 Removed showTitle prop from Navigator 94c5912 PWA-957 Optimized Tax Disclaimer. 88a5f64 PWA-872: Fixed more tests 0d69866 PWA-872: Fixed additional tests d06e5eb Merge branch 'PWA-327-Exchange-Router' into PWA-956-optimize-PDP-reviews 0a4b2f4 PWA-956 Optimized PDP reviews. 8cccef9 Merge branch 'PWA-327-Exchange-Router' into PWA-511-Optimise-Navigator 475a02b PWA-970 Filterbar now updated ViewBefore only when the node is there ee54268 Merge branch 'PWA-327-Exchange-Router' into PWA-970-Filterbar-visibility 3abcdcf PWA-970 Filterbar is not visible only when a category has products only 2593555 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-872-fix-unit-tests f40a75b Merge pull request #419 from shopgate/PWA-955-optimize-properties 60c11ca Merge pull request #418 from shopgate/PWA-954-optimize-pdp-options ebb3ff7 PWA-954: Removed unused import 08d4ea6 PWA-954: Fixed styling of selected options 2e49040 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-954-optimize-pdp-options 6cfba3b Merge branch 'PWA-327-Exchange-Router' into PWA-956-optimize-PDP-reviews c620b62 PWA-511 Removed toggleSearch action 50ace66 Merge branch 'PWA-327-Exchange-Router' into PWA-511-Optimise-Navigator f6fdc99 PWA-956 optimized reviews list. b0f21b7 Merge pull request #412 from shopgate/PWA-558-Optimise-NavDrawer e977271 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-954-optimize-pdp-options f12c891 Merge branch 'PWA-327-Exchange-Router' into PWA-558-Optimise-NavDrawer 51299bd Merge pull request #417 from shopgate/PWA-953-optimize-characteristics 461aefb Merge pull request #420 from shopgate/PWA-831-Refactor-filters 0fc4773 Merge branch 'PWA-327-Exchange-Router' into PWA-831-Refactor-filters 74e550f Merge pull request #414 from shopgate/PWA-959-remove-redux-props 8c3b0c9 Merge branch 'PWA-831-Refactor-filters' into PWA-959-remove-redux-props 88eaa05 Merge pull request #411 from shopgate/PWA-918-enable-product-fetching d709112 Merge branch 'PWA-327-Exchange-Router' into PWA-956-optimize-PDP-reviews 5814e44 Merge branch 'PWA-327-Exchange-Router' into PWA-953-optimize-characteristics 9888d68 PWA-327 removed react-addon-test-utils 1a42509 Merge branch 'PWA-327-Exchange-Router' into PWA-956-optimize-PDP-reviews b198943 asdasd 68e12da Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-953-optimize-characteristics bbd9c56 PWA-327: Added react-addons-shallow-compare module to the package.json f630957 PWA-511 Removed old unused actions 03aaed9 PWA-955 Optimized product properties. a9cfccb PWA-954 Optimized product options. addf595 Merge branch 'PWA-918-enable-product-fetching' into PWA-959-remove-redux-props f712827 PWA-918 Fixed display mistake in the template. add0ce6 Merge branch 'PWA-831-Refactor-filters' into PWA-918-enable-product-fetching 5452e14 Merge branch 'PWA-327-Exchange-Router' into PWA-953-optimize-characteristics d245eab Merge branch 'PWA-327-Exchange-Router' into PWA-831-Refactor-filters 98f71c0 Merge branch 'develop' into PWA-327-Exchange-Router 2c15000 Merge branch 'PWA-558-Optimise-NavDrawer' into PWA-511-Optimise-Navigator 0fbcaa5 PWA-558 PR feedback d4cc5a2 PWA-953 Add finish timeout c606cd6 Merge branch 'PWA-327-Exchange-Router' into PWA-953-optimize-characteristics 94dc7a1 PWA-953 Optimize product characteristics. 5c42a5a Merge pull request #415 from shopgate/PWA-950-optimize-product-header 8fe3199 Merge branches 'PWA-950-optimize-product-header' and 'PWA-950-optimize-product-header' of github.com:shopgate/theme-gmd into PWA-950-optimize-product-header 39e4a99 PWA-950: Fixed some areStatePropsEqual return values 2a895ce Merge branch 'PWA-327-Exchange-Router' into PWA-950-optimize-product-header 353dc0a Merge branch 'PWA-831-Refactor-filters' into PWA-959-remove-redux-props c3a0840 Merge branch 'PWA-831-Refactor-filters' into PWA-918-enable-product-fetching f5a1df2 Merge branch 'PWA-327-Exchange-Router' into PWA-831-Refactor-filters f1c911b PWA-327 Fixed react versions. 734bd56 Merge branch 'develop' into PWA-327-Exchange-Router e03780b Merge branch 'PWA-831-Refactor-filters' into PWA-959-remove-redux-props 59ae2fa Merge branch 'PWA-327-Exchange-Router' into PWA-831-Refactor-filters 48d1ab6 Merge branch 'PWA-327-Exchange-Router' into PWA-950-optimize-product-header 0893c5a Merge pull request #405 from shopgate/PWA-875-implement-dynamic-redirects 9a1d38d PWA-875: Quickfix - added ORDERS_PATH to the auth routes a5c61a8 PWA-950 Optimized product header. 931bf12 PWA-872: Fixed CartPage tests 8a48e5a PWA-511 Blurred search field when form is submitted d94457c Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-872-fix-unit-tests 72e375b PWA-959 Removed redux-props 90c2c04 PWA-918 Added missing stream 3a65293 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-875-implement-dynamic-redirects 65e6e91 PWA-872: Fixed widget tests 870ee2d PWA-872: Fixed the rest of the unit test 13b91a1 PWA-558 Removed redux-props 51755f2 PWA-872: Fixed first chunk of unit tests cc2ddb9 Merge branch 'PWA-327-Exchange-Router' into PWA-558-Optimise-NavDrawer f041ae8 PWA-558 Optimised component re-rendering da18d4f PWA-588 Completed navDrawer content d2dec14 Merge branch 'PWA-831-Refactor-filters' into PWA-918-enable-product-fetching 5ac1699 Merge branch 'PWA-327-Exchange-Router' into PWA-831-Refactor-filters 49b9afe Merge pull request #410 from shopgate/PWA-936-Sheet-items-are-not-visually-correct-when-selected 92cad43 Merge pull request #409 from shopgate/PWA-693-Checkout-bar-hidden-on-cart 85e2788 PWA-918 products are fetched on filtering. 9cffb17 Merge branch 'PWA-831-Refactor-filters' into PWA-918-enable-product-fetching fc440f9 Merge branch 'PWA-327-Exchange-Router' into PWA-831-Refactor-filters 6070eec Merge branch 'develop' into PWA-327-Exchange-Router a1fb30e Merge pull request #408 from shopgate/PWA-945-Cannot-deeplink-to-search-route bf7f7b9 Merge branch 'PWA-327-Exchange-Router' into PWA-558-Optimise-NavDrawer 6c03fab PWA-936 Corrected sheet item highlight style 214ae16 PWA-693 Corrected config of sizeMe HOC 483bb6e Merge branch 'PWA-831-Refactor-filters' into PWA-918-enable-product-fetching 024e7af PWA-918 enabled product fetching for category. 950d57d PWA-945 Updated conductor 76ae394 PWA-831 Prevented widgets from fetching when deeplinking 98392e2 PWA-831 Corrected FilterBar usage on search route ff68329 Merge branch 'PWA-831-Refactor-filters' of github.com:shopgate/theme-gmd into PWA-831-Refactor-filters 0cd2332 PWA-831 Fixed selected value display bug with wrapping. 2c807d6 PWA-831 Corrected bug where previously set filters were not remembered. 6b1de49 PWA-831 Corrected bug where ViewAbove was not being set when filters were removed 1831905 Merge pull request #406 from shopgate/PWA-922-Refactor-FilterChips 81053d0 Merge pull request #403 from shopgate/PWA-913-add-portals-back-to-filters 5be5d28 Merge branch 'PWA-831-Refactor-filters' into PWA-913-add-portals-back-to-filters 98bd0a5 Merge branch 'PWA-831-Refactor-filters' into PWA-922-Refactor-FilterChips 9a487e8 PWA-922 FilterChips now use route state to display active filters 0b2424d Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-875-implement-dynamic-redirects 63fc579 Merge branch 'PWA-327-Exchange-Router' into PWA-831-Refactor-filters aa61cfb Merge branch 'develop' into PWA-327-Exchange-Router 28035c4 Merge branch 'PWA-327-Exchange-Router' into PWA-831-Refactor-filters 6b0ddab PWA-327 Clean ups. f0128e8 Merge branch 'PWA-831-Refactor-filters' into PWA-922-Refactor-FilterChips dbd27bb Merge pull request #401 from shopgate/PWA-910-render-UI-with-available-filters c131b26 PWA-922 Removing all filter chips now sets the route state key to be null be48184 Merge branch 'PWA-831-Refactor-filters' into PWA-910-render-UI-with-available-filters a5d9fc8 PWA-922 Refactored FilterChips to be compatible with new filter format 9af6ceb Merge branch 'PWA-327-Exchange-Router' into PWA-831-Refactor-filters 9e9fc8d Merge branch 'PWA-831-Refactor-filters' into PWA-910-render-UI-with-available-filters ed15683 Merge pull request #402 from shopgate/PWA-897-Refactor-FilterBar a38bc66 6.0.0-beta.12 3deb74f PWA-327 Removed background color from viewport aabf875 6.0.0-beta.11 aeeb44d PWA-327 Fixed history issue. 442aba7 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-875-implement-dynamic-redirects dc793bc PWA-922 Removed unnecessary code 2731b78 PWA-910 Fixes unsetting / resetting of filters. a155eae PWA-913 Re-added portal. 54aeabe PWA-897 Refactored FilterBar 3299347 6.0.0-beta.10 59e4974 PWA-910 Finalized the Selector. 61ade0c Merge pull request #398 from shopgate/PWA-906-add-transitions-and-the-chevron 839e68e PWA-906 Removed unnecessary comment fc4ac51 PWA-906 Corrected the styling of the buttons. Corrected the reset/done button display logic 576e0c6 Merge pull request #399 from shopgate/PWA-898-Move-filter-fetching-to-subscriptions 75ac444 PWA-898 Filters are now fetched via subscriptions only 382c4a1 Merge branch 'PWA-831-Refactor-filters' into PWA-906-add-transitions-and-the-chevron eb07f3b Merge pull request #397 from shopgate/PWA-909-Refactor-Apply-button-in-filters e29e787 PWA-875: Added the redirect from the login route to the register link efa5cdb PWA-906 Updated tests. b1073f8 PWA-909 Added new apply button for the filters bceba41 PWA-906 Added Chevron and transitions. e13947a Merge branch 'PWA-327-Exchange-Router' into PWA-831-Refactor-filters d76d279 Merge branch 'develop' into PWA-327-Exchange-Router 0ca1eb9 Merge pull request #394 from shopgate/PWA-895-add-selection-component f6e0d44 Merge branch 'PWA-831-Refactor-filters' into PWA-895-add-selection-component 34a14be Merge pull request #395 from shopgate/PWA-908-Refactor-Filter-Clear-Button 60c78ac PWA-908 Fixed code style. 583d9f6 PWA-908 Connected Clear Button to filter route state ebea316 Merge pull request #393 from shopgate/PWA-914-Connect-PriceSlider-to-filter-route-state de38f3d PWA-895 added selection components. 7f4edc7 Merge branch 'PWA-831-Refactor-filters' into PWA-914-Connect-PriceSlider-to-filter-route-state 0fc2fef PWA-914 PriceSlider updated now change the filter route state. 9e95589 Merge pull request #391 from shopgate/PWA-857-Adjust-price-slider-styling 89d1d4c PWA-857 Adjusted PriceSlider styling. Added background prop to View component b161a8e Merge pull request #390 from shopgate/PWA-896-Forward-filters-to-filter-route 6bd41e6 Merge branch 'PWA-831-Refactor-filters' into PWA-896-Forward-filters-to-filter-route 3077f2c Merge branch 'PWA-327-Exchange-Router' into PWA-831-Refactor-filters 4830a73 Merge pull request #389 from shopgate/PWA-858-Create-new-Filter-route 468cc74 Merge branch 'develop' into PWA-327-Exchange-Router 1ae5029 PWA-896 Filters can now be passed to the filter route via the route state a617eb8 PWA-327: Updated conductor version to fix a deeplink bug 8ea51cb PWA-327: Improved characteristic picker lables - now the prefix "Please select a..." isn't added to the label anymore when a picker value is selected e3b29aa PWA-858 Exchanged connector for consumer f0d83cb Merge branch 'PWA-327-Exchange-Router' into PWA-858-Create-new-Filter-route d9d3424 PWA-858 Created new filter route. Removed old routes de4804b Merge pull request #385 from shopgate/PWA-813-add-to-cart-grayed-out cbc0891 6.0.0-beta.9 d3f3dc9 PWA-327 added missing babel presets. b811eb5 6.0.0-beta.8 0f60997 PWA-813: Implemented review feedback - improved descriptions within describe and it blocks - removed unnecessary comments - updated snapshots 4e72105 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-813-add-to-cart-grayed-out c9d1c2a PWA-327 Re-added lint-staged. e426ab4 Merge pull request #386 from shopgate/PWA-861-Pop-action-causes-errors b9059c6 PWA-861 Updated conductor package. Adjusted routePattern setting in Navigator ff5e62c Merge branch 'PWA-327-Exchange-Router' into PWA-813-add-to-cart-grayed-out 4893557 Merge pull request #384 from shopgate/PWA-820-spacing-between-attributes-and-options 690cdcc Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-813-add-to-cart-grayed-out ba42151 PWA-813: Fixed SheetItem spacing for characteristics 46a2f66 PWA-813: Improved ProductContent component 4297836 PWA-820: Fixed spacing between attribute and option selects 63ed270 Merge pull request #383 from shopgate/PWA-817-EmptyCategory-shown-incorrectly 08051cb Merge pull request #382 from shopgate/PWA-849-Scrolling-is-delayed e268e2f PWA-817 Corrected the condition for the empty component on the category page 7733d0a Merge pull request #377 from shopgate/PWA-830-fix-timings 88455b2 PWA-813: Extended the product page behavior on route changes 65faedc PWA-813: Fixed cart button connector fe8ec9b PWA-813: Update product selector usages dd64207 PWA-849 Corrected package versions 21ca571 Merge branch 'PWA-327-Exchange-Router' into PWA-849-Scrolling-is-delayed 6eac9c0 PWA-849 Updated conductor 8b4f0fd PWA-813: Added disabled prop the the CartButton 79f8400 PWA-830 Removed web-worker. cf3f5a5 Merge branch 'PWA-327-Exchange-Router' into PWA-830-fix-timings 27c7520 Merge pull request #381 from shopgate/PWA-805-Forms-are-not-cleared f85551c Merge pull request #380 from shopgate/PWA-807-Toast-messages-disappear cc58245 Merge branch 'develop' into PWA-327-Exchange-Router 6ccee6c PWA-805 Forms are not cleared on route change 7f81fa3 PWA-807 Toast messages now are not flushed on route change 6ba2502 PWA-558 Started rewriting NavDrawer cf30e3d Merge pull request #378 from shopgate/PWA-860-implement-revised-product-selectors b329a59 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-667-pwa-6.0-refactoring 7ae5451 PWA-860: Updated components to use the revised product selectors - updated related JEST tests ca28aba PWA-830 Remove `redux-worker`. 2511c8c PWA-830 removed unused code. 0590e6e Merge branch 'PWA-327-Exchange-Router' into PWA-830-fix-timings 7dd7f6d PWA-860: Updated product selector usage 6a85985 PWA-860: Updated first chunk of components with revised product selectors 4610718 Merge pull request #375 from shopgate/PWA-816-child-product-reviews 4874991 6.0.0-beta.7 4345ddb PWA-830 Started tests with new web worker. 10a26c0 PWA-816: Fix for the write review button - the write review form is now opened for the product id of the parent product - updated unit tests 880f0cf Merge pull request #374 from shopgate/PWA-823-Apply-legacy-redirects 16bb56b PWA-823: Added the orders path to the auth routes and redirects fd4975e 6.0.0-beta.6 96901e9 Merge branch 'PWA-327-Exchange-Router' into PWA-830-fix-timings 9ceba4a PWA-823 Applied legacy url redirects a3df3e5 Merge pull request #373 from shopgate/PWA-809-opening-child-product-only-works-once 61335f2 Merge pull request #372 from shopgate/PWA-822-fix-linting-issues 9ffde34 PWA-809: Fixed displaying of the manufacturer name - took care that the manufacturer name is always picked from the current selected product b546f77 6.0.0-beta.5 2d81729 PWA-327 Re-added css-spring package 569c1ca 6.0.0-beta.4 8dc0961 PWA-830 move redux store init to very app start scripts. 92325c9 PWA-667 update reviews selector 4742377 Merge branch 'PWA-327-Exchange-Router' into PWA-667-pwa-6.0-refactoring 07ee41d Merge branch 'develop' into PWA-327-Exchange-Router 6d5da1d PWA-822 lint test 738f89f PWA-822 lint test 2a46129 PWA-822 lint test c64aae7 PWA-822 Lint test fda10e1 PWA-822 linting test. 2765209 PWA-822 linting test. dd1ffb3 PWA-822 linting test. f78612b Merge branch 'PWA-327-Exchange-Router' into PWA-822-fix-linting-issues 810fb60 PWA-327 Updated conductor dependencies. 950a178 PWA-822 Fixed eslint issues. dfe8ff5 PWA-822 Fixed eslint issues. 6ac18a5 Merge branch 'develop' into PWA-327-Exchange-Router 73dbbf6 PWA-327 Husky is configured to be performing pre-commit hooks. 37959d9 Merge branch 'develop' into PWA-327-Exchange-Router 74bb9c6 Merge branch 'develop' into PWA-327-Exchange-Router 60f1bd0 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-667-pwa-6.0-refactoring 40e9b63 Merge branch 'develop' into PWA-327-Exchange-Router 6d32bbd Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-667-pwa-6.0-refactoring 32c44ae Merge pull request #370 from shopgate/PWA-762-cart-tracking fe51093 PWA-667 fix tests for exchange router 2bf8a2b PWA-327 re-activated cart tracking f9580fb Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-667-pwa-6.0-refactoring 4cc485a PWA-327: Fixed some links - product image gallery works again - links within sanitized html work again - removed import of removed toast reducers 3f8c0f2 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-667-pwa-6.0-refactoring 19eb8ab Merge pull request #367 from shopgate/PWA-555-Redo-Toast-Messages b331c07 PWA-555 Implemented feedback 4b6e229 Merge branch 'PWA-327-Exchange-Router' into PWA-555-Redo-Toast-Messages f84450b Merge develop 9a24740 Corrected all Eslint errors. Re-enabled linting hook b9093be Install husky d91a1f6 PWA-555 Replaced toast declaration d30a667 PWA-555 Added toast flushing on route change 9363a31 Merge branch 'PWA-327-Exchange-Router' into PWA-555-Redo-Toast-Messages 321082e Merge pull request #364 from shopgate/PWA-683-Fix-favorites-route 968fb16 PWA-683 Fixed dependencies 6e94de5 Merge branch 'PWA-327-Exchange-Router' into PWA-555-Redo-Toast-Messages f41a854 PWA-683 Fix favorites route 09bb056 Merge pull request #361 from shopgate/PWA-760-Add-support-for-silent-routing fe783ef PWA-760 Codestyle 7e88529 PWA-760 Corrected search navigation 21ba851 PWA-760 Refactored usage of navigate action ba9b6c8 Re-added missing files 5967bad Merge branch 'develop' into PWA-327-Exchange-Router 737423d Merge pull request #357 from shopgate/PWA-627-Add-cross-icon d0ef7b2 PWA-627 Close via dispatching a link. 0c24429 Merge branch 'PWA-327-Exchange-Router' into PWA-627-Add-cross-icon b405859 Merge pull request #356 from shopgate/PWA-685-add-to-cart-not-clickable 0b943f9 Merge branch 'PWA-327-Exchange-Router' into PWA-627-Add-cross-icon f0a3ab6 PWA-627 Added icons for back and close to NavButton f5cc5d9 PWA-685 change update behaviour. 6cfd47b Merge pull request #354 from shopgate/PWA-693-PaymentBar-hidden aff80c6 PWA-693 PaymentBar package updated 2ad7705 Merge branch 'PWA-327-Exchange-Router' into PWA-555-Redo-Toast-Messages 109363c Merge branch 'develop' into PWA-327-Exchange-Router 2fb3575 Merge pull request #350 from shopgate/PWA-698-write-reviews-page-opens-without-login d8ce798 Merge branch 'PWA-327-Exchange-Router' into PWA-698-write-reviews-page-opens-without-login ddc7076 Merge branch 'develop' into PWA-327-Exchange-Router dcee7c1 Merge pull request #349 from shopgate/PWA-725-Remove-unused-code-from-pwa-common 17560f2 PWA-698 Fixed missing subscriptions and protected routes. 1c11630 PWA-725 Optimized and cleaned codebase. fb4cf24 PWA-725 Optimized and cleaned codebase. 2a26bcb Merge branch 'develop' into PWA-327-Exchange-Router c0f18a4 wip 20a9948 Merge branch 'develop' into PWA-327-Exchange-Router ae4d742 Merge branch 'develop' into PWA-327-Exchange-Router 98f138a Merge pull request #325 from shopgate/PWA-661-Re-enable-the-product-sorting 5dd13ef PWA-661 Fixed optimization to consider sorting. b127026 Merge branch 'PWA-327-Exchange-Router' into PWA-661-Re-enable-the-product-sorting d7e4391 Merge pull request #334 from shopgate/PWA-453-unit-test-new-router 70c6e8c PWA-453: adjust tests a3a1696 Merge branch 'PWA-327-Exchange-Router' into PWA-661-Re-enable-the-product-sorting af954e8 Merge branch 'PWA-327-Exchange-Router' into PWA-453-unit-test-new-router b876ada Merge pull request #324 from shopgate/PWA-626-Empty-components dd2a142 Merge pull request #333 from shopgate/PWA-674-CTAButtons-not-working 58c2841 PWA-626 show filter bar if active filters set but no results. a60db8c Merge branch 'PWA-327-Exchange-Router' into PWA-626-Empty-components 8ea60f8 Merge branch 'develop' into PWA-327-Exchange-Router 452a304 Merge branch 'PWA-327-Exchange-Router' into PWA-626-Empty-components 1ab5de9 PWA-453: update snapshots d9a81d6 PWA-674 Favorites button now works as expected. Product description now renders correctly 5acd5d4 Merge branch 'PWA-327-Exchange-Router' into PWA-453-unit-test-new-router af4e206 Merge branch 'develop' into PWA-327-Exchange-Router c37679b Merge pull request #331 from shopgate/PWA-672-Root-Category-content-displays-too-early af77ad0 Merge branch 'PWA-327-Exchange-Router' into PWA-672-Root-Category-content-displays-too-early 8cdf15d PWA-672 Root Category content only displays once page has been opened 4041784 Merge pull request #326 from shopgate/PWA-624-Navigation-History-Reset a1a96d9 PWA-555 Added new toast message system 1470feb PWA-624 Handle history reset. 9df8636 PWA-327 Added test ids to view 4519e34 PWA-661 Implemented Ordering. 4962644 PWA-626 fixed no results page. 0bf17a1 Merge branch 'PWA-327-Exchange-Router' into PWA-626-Empty-components 3a25ca3 PWA-327 Fixed import d024cbd PWA-327 Fixed imports. f158c27 Merge branch 'develop' into PWA-327-Exchange-Router e5ae843 Merge pull request #300 from shopgate/PWA-417-implement-filters 1bd12de Merge branch 'PWA-327-Exchange-Router' into PWA-417-implement-filters 655754f PWA-327 Cleaned up Product Characteristics. 20cee7f PWA-327 Correct search behavior e946254 6.0.0-beta.3 8b60321 Merge branch 'develop' into PWA-327-Exchange-Router 10c1f5c Merge branch 'develop' into PWA-327-Exchange-Router f9ecac6 PWA-626 Fixed appearance of the empty page. 0f5e2ce Merge branch 'develop' into PWA-327-Exchange-Router 8354567 PWA-327 Added support for extension routes 0bcd435 PWA-327 Fixed variants highlighting 8543391 PWA-327 Removed css-spring package 1eb04a6 Merge branch 'PWA-327-Exchange-Router' into PWA-586-Characteristics-can-be-deselected 83d4f59 PWA-586 Added variant selection effects for missing items 1b28f00 Merge branch 'PWA-327-Exchange-Router' into PWA-417-implement-filters 9857faf PWA-586 Refactored Cart Button 6a5c34d Merge branch 'develop' into PWA-327-Exchange-Router 70531fe PWA-586 resolved conflicts. 0b33fb5 Merge branch 'PWA-327-Exchange-Router' into PWA-586-Characteristics-can-be-deselected 59b37cd Merge branch 'develop' into PWA-327-Exchange-Router 364b61f PWA-586 variant availability is now conditional 94b4940 Merge branch 'PWA-586-Characteristics-can-be-deselected' of github.com:shopgate/theme-gmd into PWA-586-Characteristics-can-be-deselected b23944d PWA-586 Added availability to sheets 677173d Merge branch 'PWA-327-Exchange-Router' into PWA-586-Characteristics-can-be-deselected 0d29baa Merge branch 'develop' into PWA-327-Exchange-Router 904dc1b PWA-586 Handle scrolling if selection missing. 4d3f8be PWA-586 Conditionally add a product to the cart. d087e71 Merge branch 'PWA-327-Exchange-Router' into PWA-586-Characteristics-can-be-deselected ee0da17 PWA-586 Fixed bugs that prevented sheets from closing correctly 2234959 Merge pull request #310 from shopgate/PWA-602-Search-Suggestions 59e771f Merge branch 'PWA-586-Characteristics-can-be-deselected' of github.com:shopgate/theme-gmd into PWA-586-Characteristics-can-be-deselected 8dba9fe PWA-586 Product replacing will now not happen when selection matches current visible product 82e75a2 6.0.0-beta.2 ed3c030 6.0.0-beta.1 7e70018 PWA-586 Characteristics are now preset when a variant product is opened 4d152f3 Merge branch 'PWA-586-Characteristics-can-be-deselected' of github.com:shopgate/theme-gmd into PWA-586-Characteristics-can-be-deselected a2f79b6 PWA-586 Handle finished selections. 75cd6ca PWA-586 Fixed bug where sheets would open when selecting characteristics 85c8f40 PWA-586 Corrected subset creation when determining which characteristic values are applicable 5ecd71f PWA-586 Offset functions to a helper 1aed65f Merge branch 'PWA-327-Exchange-Router' into PWA-602-Search-Suggestions 988dfc4 PWA-602 Search suggestions a1a3a8a PWA-586 Handle deselection of already selected on change. 363582e Merge branch 'PWA-327-Exchange-Router' into PWA-586-Characteristics-can-be-deselected 2a1bbf2 Added decorators plugin. e273c31 PWA-586 Moved state to ProductCharacteristics a6a0ee4 PWA-460: Test PDP 4cd5a8f Merge branch 'develop' into PWA-327-Exchange-Router 7ef0d80 Merge branch 'develop' into PWA-327-Exchange-Router 2df8796 PWA-459: Test navigator 395f748 PWA-459: Test navigator fd694a9 Merge pull request #293 from shopgate/PWA-453-unit-test-new-router 9331684 Merge branch 'PWA-327-Exchange-Router' into PWA-453-unit-test-new-router 6ca7e97 PWA-459: Test navigator aeec814 PWA-459: Test navigator 29c0804 Merge pull request #302 from shopgate/PWA-585-Variants-UI 4d86d52 PWA-585 Code style and additional components. bb160b9 PWA-459: Test navigator 982730c Merge branch 'PWA-327-Exchange-Router' into PWA-453-unit-test-new-router a025dd6 PWA-453: js doc 893f8f2 PWA-453: fix empty category display cea2fc9 PWA-460: add streams tests 4b8a3f6 PWA-460: Test Write Reviews - remove console warn c51cc29 PWA-460: Test Write Reviews - write subscription test - handle view title 1313cb3 PWA-585 Cleanup 4ee3cf0 Merge branch 'PWA-327-Exchange-Router' into PWA-585-Variants-UI 9ce2c2d PWA-460: Test Write Reviews -fix tests 3591343 PWA-460: Test Reviews a22024b Merge branch 'PWA-327-Exchange-Router' into PWA-417-implement-filters da6e66f Merge branch 'develop' into PWA-327-Exchange-Router 878b95d Merge branch 'PWA-327-Exchange-Router' into PWA-417-implement-filters 663ddfe Merge branch 'develop' into PWA-327-Exchange-Router 4bd70db PWA-417 Applied filter to search 02d1a89 Merge branch 'PWA-327-Exchange-Router' into PWA-453-unit-test-new-router 478a788 Merge branch 'PWA-327-Exchange-Router' into PWA-417-implement-filters 738b0f6 Merge branch 'develop' into PWA-327-Exchange-Router f66b201 PWA-327 Changed Link import. 3eaa736 Merge branch 'PWA-327-Exchange-Router' into PWA-417-implement-filters ded38da Merge branch 'develop' into PWA-327-Exchange-Router. 1b9e4d7 PWA-585 Added characteristics components 4ca9f20 PWA-417 Filters work on categories. 4a17974 PWA-417 Filters work on categories. d99de6a PWA-417 Fixed merge bug. f9b41af Merge branch 'PWA-327-Exchange-Router' into PWA-417-implement-filters b2ff0ad Merge branch 'develop' into PWA-327-Exchange-Router e8f1f62 PWA-417 Finished the main filter page. 11546b4 PWA-417 Re-applied the filter page. d4480e0 PWA-417 Re-added FilterBar 08000b1 Merge branch 'develop' into PWA-327-Exchange-Router 60f2cb1 PWA-460: Test navigator f90ee99 PWA-460: Test navigator 288c1c2 Merge pull request #295 from shopgate/PWA-420-Implement-Add-Review-page 0ca43c9 Merge branch 'PWA-327-Exchange-Router' into PWA-420-Implement-Add-Review-page fe163e7 Merge branch 'develop' into PWA-327-Exchange-Router 492b97a Merge pull request #294 from shopgate/PWA-561-Fix-Liveshopping-Widget 5e07455 PWA-420 Solved uncaught merge conflict ed0a6cf Merge branch 'PWA-327-Exchange-Router' into PWA-420-Implement-Add-Review-page c01faf8 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-327-Exchange-Router 15f6b4a PWA-420 Completed write reviews page c9fe26b PWA-561 Changed liveshopping widget selectors. 1bb71e7 Merge branch 'PWA-327-Exchange-Router' into PWA-453-unit-test-new-router 1157a9e Merge branch 'develop' into PWA-327-Exchange-Router 4e997e1 PWA-420 Passed productId into Review Header 0c1e734 PWA-460: Test PDP - Reviews - move mock b939780 PWA-460: Test PDP - ProductGallery 77ae409 PWA-460: Test PDP - fix tests PDP, Cart, Category fb54073 Merge remote-tracking branch 'origin/PWA-327-Exchange-Router' into PWA-453-unit-test-new-router 1b8267b Merge branch 'PWA-420-Implement-Add-Review-page' into PWA-327-Exchange-Router b123a9d Merge branch 'develop' into PWA-327-Exchange-Router 5da74c2 Merge branch 'develop' into PWA-327-Exchange-Router 6704eaf Merge pull request #287 from shopgate/PWA-556-Correct-scrolling d763c59 Merge branch 'PWA-327-Exchange-Router' into PWA-556-Correct-scrolling ef5a253 Merge branch 'develop' into PWA-327-Exchange-Router 8cc8cd4 PWA-558 Nav drawer is now toggled through events and not redux action 9203e64 PWA-556 Removed setViewTop action 7b06fba PWA-556 Scrolling up is no longer handled by Redux actions f0f4c79 Merge branch 'develop' into PWA-327-Exchange-Router d369be9 Merge branch 'develop' into PWA-453-unit-test-new-router d7ce18b Merge branch 'PWA-327-Exchange-Router' into PWA-453-unit-test-new-router 2132530 Merge pull request #283 from shopgate/PWA-416-Implement-search-route 78272ba PWA-416 Codestyle and cleanup 3c6e606 Merge branch 'PWA-327-Exchange-Router' into PWA-416-Implement-search-route 09d0649 Merge pull request #285 from shopgate/PWA-421-GMD-Implement-new-router-for-favorites-page 28ecb7f PWA-420 Started migrating page 23f0c84 Merge branch 'PWA-327-Exchange-Router' into PWA-421-GMD-Implement-new-router-for-favorites-page 85f3b2b Merge pull request #278 from shopgate/PWA-526-PDP-Add-minor-optimizations c0f47d0 Merge branch 'PWA-327-Exchange-Router' into PWA-526-PDP-Add-minor-optimizations df52bb7 PWA-421 Added `hasVariants` check. b85abb0 PWA-416 Updated conductor packages fec4c29 PWA-416 Fixed a case where product description placeholder showed with no content b2b6fb7 Merge branch 'PWA-327-Exchange-Router' into PWA-416-Implement-search-route 564a5b6 Merge branch 'PWA-327-Exchange-Router' into PWA-421-GMD-Implement-new-router-for-favorites-page b04767a PWA-421 Implemented favorites route. d6d4912 Merge pull request #282 from shopgate/PWA-419-GMD-Implement-new-router-for-reviews-page 0de0726 PWA-416 Completed search migration 883fadd PWA-459: Test navigator 496436d Merge branch 'PWA-327-Exchange-Router' into PWA-526-PDP-Add-minor-optimizations 183949e Merge branch 'PWA-327-Exchange-Router' into PWA-419-GMD-Implement-new-router-for-reviews-page 05aad68 Merge branch 'develop' into PWA-327-Exchange-Router fd3beee PWA-419 Implemented reviews page. a7c93f1 PWA-457: Test widget page 73381b1 PWA-457: Test widget page 5a9ffa7 Merge branch 'PWA-327-Exchange-Router' into PWA-453-unit-test-new-router ed63816 PWA-416 Started changing navigator search field f63e8b1 Merge branch 'develop' into PWA-419-GMD-Implement-new-router-for-reviews-page 686fabc PWA-457: Test widget page 4336b29 Merge branch 'develop' into PWA-327-Exchange-Router 0c20e7a Merge remote-tracking branch 'origin/PWA-327-Exchange-Router' into PWA-453-unit-test-new-router 3095401 Merge branch 'PWA-327-Exchange-Router' into PWA-416-Implement-search-route 893ba40 Merge branch 'PWA-327-Exchange-Router' of github.com:shopgate/theme-gmd into PWA-327-Exchange-Router 3b5afcd PWA-327 Protected the checkout with AutoRoutes 0581a4e Merge branch 'develop' into PWA-327-Exchange-Router 1bbfd0f PWA-327 Corrected options updating 6058ea4 Merge pull request #276 from shopgate/PWA-507-PDP-Implement-Gallery 7814dad PWA-526 Implemented some minor optimizations. 31a31bf Merge branch 'PWA-327-Exchange-Router' into PWA-416-Implement-search-route 25d65c5 PWA-416 Connected with hasSearchResults 42debee PWA-507 Finished and optimized product gallery view. 623a417 Merge branch 'PWA-327-Exchange-Router' into PWA-507-PDP-Implement-Gallery a6e7e0e Merge pull request #272 from shopgate/PWA-472-Implement-product-reviews 84c9a92 Merge branch 'PWA-327-Exchange-Router' into PWA-472-Implement-product-reviews 93f6112 Merge branch 'develop' into PWA-327-Exchange-Router 9aacb13 Merge branch 'PWA-327-Exchange-Router' into PWA-416-Implement-search-route b53e049 Merge pull request #274 from shopgate/PWA-468-PDP-Implement-the-Options dbda811 Merge branch 'PWA-327-Exchange-Router' into PWA-468-PDP-Implement-the-Options 69d7cc1 PWA-468 Simplified shouldComponentUpdate check inside ProductContent 503a434 PWA-468 Corrected incoming prop 64bfac2 PWA-507 Correctly connected gallery 34f11fc PWA-507 Corrected gallery pattern 7728d4c PWA-507 Implemented product gallery. f01d240 Merge pull request #259 from shopgate/PWA-465-PDP-Implement-the-ImageSlider 150a06e PWA-416 Implemented search route 08d6f1a Merge branch 'PWA-327-Exchange-Router' into PWA-465-PDP-Implement-the-ImageSlider c130d8d PWA-468 Adjusted addToCart functionality. cc04db8 Merge branch 'PWA-327-Exchange-Router' into PWA-472-Implement-product-reviews 32f0353 PWA-472 Implemented product reviews 2f26a5e Merge branch 'PWA-327-Exchange-Router' into PWA-468-PDP-Implement-the-Options 18aeb82 Merge pull request #270 from shopgate/PWA-471-Implement-product-properties 99ed119 PWA-471 Removed passing of `productId` to the Header e9b37ac Merge branch 'PWA-327-Exchange-Router' into PWA-471-Implement-product-properties c71a697 Merge pull request #269 from shopgate/PWA-411-Implement-Login-route 65042d9 PWA-471 Implemented product properties f4f9a07 Merge branch 'PWA-327-Exchange-Router' into PWA-411-Implement-Login-route be249e8 Merge pull request #266 from shopgate/PWA-517-PDP-Implement-prices fa342fd Merge branch 'PWA-517-PDP-Implement-prices' of github.com:shopgate/theme-gmd into PWA-517-PDP-Implement-prices 008807c PWA-517 Corrected typo b9ad501 Merge branch 'PWA-327-Exchange-Router' into PWA-411-Implement-Login-route 83e77c9 Merge branch 'PWA-327-Exchange-Router' into PWA-517-PDP-Implement-prices 33745f2 Merge branch 'develop' into PWA-327-Exchange-Router 21b240a PWA-411 Implemented Login route 332356b PWA-468 Product options can be selected. 6ac8c5d Merge branch 'PWA-327-Exchange-Router' into PWA-517-PDP-Implement-prices 0b319b8 Merge branch 'PWA-327-Exchange-Router' into PWA-465-PDP-Implement-the-ImageSlider e76d271 Merge branch 'develop' into PWA-327-Exchange-Router 61b286f PWA-465 Adjusted ImageSlider implementation. 4d148fc Merge branch 'PWA-327-Exchange-Router' into PWA-465-PDP-Implement-the-ImageSlider 9d87f0e PWA-517 Implemented product prices. 7f24493 PWA-453: Router unit tests - update snapshots 9d7a081 Merge branch 'PWA-327-Exchange-Router' into PWA-453-unit-test-new-router 24d95c2 Merge branch 'develop' into PWA-327-Exchange-Router 0fa8b3f Merge pull request #264 from shopgate/PWA-514-Implement-AddToCart-button e2f411f Merge branch 'PWA-327-Exchange-Router' into PWA-514-Implement-AddToCart-button 1e815c2 Merge pull request #263 from shopgate/PWA-469-PDP-Implement-the-Description d59c1b4 PWA-469 Corrected passed props 39f155a Merge branch 'PWA-327-Exchange-Router' into PWA-514-Implement-AddToCart-button 0e10f1a Merge branch 'PWA-327-Exchange-Router' into PWA-469-PDP-Implement-the-Description c4f250a Merge pull request #261 from shopgate/PWA-466-Implement-Product-header d2c7cec PWA-514 Products can now be added to the cart 3640887 PWA-466 Enabled tax disclaimer f7d138e PWA-466 Implemented review feedback d907975 Merge branch 'PWA-466-Implement-Product-header' into PWA-469-PDP-Implement-the-Description 7920840 PWA-469 Implemented product description. 71964d5 PWA-466 Migrated more product header components 386fef0 PWA-456: Test category page 45731cd Merge branch 'PWA-327-Exchange-Router' into PWA-465-PDP-Implement-the-ImageSlider ab6bb4b PWA-466 Fixed lifecycle hook in Product Content 04e6921 PWA-466 Implemented ProductContext to display Header 505feb9 Merge branch 'develop' into PWA-327-Exchange-Router 693e83a Merge pull request #258 from shopgate/PWA-464-PDP-Implement-the-basic-route 716b0c9 Merge branch 'PWA-464-PDP-Implement-the-basic-route' into PWA-465-PDP-Implement-the-ImageSlider 9a7e87d PWA-464 Changed product streams. 7de461d PWA-456: Test category page fb2fdef Merge branch 'PWA-464-PDP-Implement-the-basic-route' into PWA-465-PDP-Implement-the-ImageSlider afd305b PWA-464 Implemented feedback. 25e99ca PWA-458: Test cart page 6c47a79 PWA-465 Implemented image slider. 5c935f2 PWA-464 Implemented PDP route. 29f739c PWA-458: Test cart page a50cd21 Merge branch 'PWA-327-Exchange-Router' into PWA-453-unit-test-new-router 5cf1707 Merge branch 'PWA-327-Exchange-Router' into PWA-464-PDP-Implement-the-basic-route efb7bcd PWA-458: Test cart page 98397b5 PWA-458: Test cart page ed7e6ed Added missing constant 00e2bb2 Merge pull request #252 from shopgate/PWA-441-Optimise-category-routes 2b0418a PWA-441 Changed the optimization in favor of recomose's `shouldUpdate`. 11340a1 PWA-441 Removed commented out code. a25f2b5 PWA-441 Fixed arguments order. 8042a5f PWA-441 Fixed arguments order. 9980c87 Merge pull request #256 from shopgate/PWA-440-optimize-cms-page-speed b88310b Merge branch 'PWA-440-optimize-cms-page-speed' of github.com:shopgate/theme-gmd into PWA-440-optimize-cms-page-speed 798f8c6 PWA-440 Codestyle 0cf0dd0 PWA-440 Corrected state props check 926fe4c Update subscriptions.js 063e563 Merge branch 'PWA-327-Exchange-Router' into PWA-441-Optimise-category-routes 933ee24 Merge branch 'PWA-327-Exchange-Router' into PWA-440-optimize-cms-page-speed 9fb4a9c Merge pull request #251 from shopgate/PWA-433-Implement-Category-products 7e88e4c PWA-433 Send offset to action. c40ff49 PWA-440 Speed optimized CMS pages. 48d99e4 PWA-433 Corrected stream name d8e05f1 Merge branch 'PWA-327-Exchange-Router' into PWA-433-Implement-Category-products 2b2fb3a PWA-458: Test category page - add tests for cart page 5689b57 PWA-440 Added recompose optimizations. 115dc33 PWA-440 Semi-optimized the View component. 65690fe PWA-440 Introduced StartPage component. 56127c0 Merge branch 'PWA-327-Exchange-Router' into PWA-440-optimize-cms-page-speed 885832b Merge pull request #255 from shopgate/PWA-432-Implement-Category-route 30f7aaa PWA-440 Optimized widgets performance. 1cd33a8 PWA-432 Implemented url param based category route 0e175b0 PWA-441 Optimised RootCategory page. Removed empty cart animation. Added translation possibility to navigator title 4f49bef PWA-458: Test category page - add tests for cart page 96a7840 PWA-464 Implemented very basic route. bfabbe4 PWA-456: Test category page - root category test 99c27bd PWA-456: Test category page - root category test 4cddd44 PWA-433 Added first rudimental unit test. 13da52b PWA-433 Re-implemented category products. 3176dcb Merge pull request #250 from shopgate/PWA-449-Add-support-for-Navigator 4fac0e6 Merge branch 'PWA-327-Exchange-Router' into PWA-449-Add-support-for-Navigator 2cdb316 Merge branch 'develop' into PWA-327-Exchange-Router 84e508a PWA-449 Enabled missing titles c2dc95b Merge pull request #246 from shopgate/PWA-432-Implement-Category-route d9504db PWA-449 Navigator is updated to use new selectors cf9b7c2 PWA-432 Improved category subscriptions. 955ce3d Merge branch 'PWA-327-Exchange-Router' into PWA-432-Implement-Category-route fdf76af Merge branch 'develop' into PWA-327-Exchange-Router ac54010 PWA-432 Re-applied CategoryList. d151f9a Merge branch 'PWA-327-Exchange-Router' into PWA-432-Implement-Category-route 7f4d9c3 Merge branch 'develop' into PWA-327-Exchange-Router 7b6a4d7 Merge branch 'develop' into PWA-432-Implement-Category-route 6822960 PWA-432 Implemented category route. d5c4f79 PWA-432 Added basic category page. 05fcb1a Merge pull request #243 from shopgate/PWA-436-Refactor-ParsedLink-usage 965f844 PWA-436 Corrected a few mistakes cb191c7 Merge branch 'develop' into PWA-327-Exchange-Router eda7202 Merge branch 'develop' into PWA-327-Exchange-Router 5d2fb15 Merge pull request #242 from shopgate/PWA-431-Implement-RootCategory-route e8e95f8 Merge branch 'PWA-327-Exchange-Router' into PWA-431-Implement-RootCategory-route 9be0dbd Merge pull request #241 from shopgate/PWA-222-change-ParsedLink-helper f1050ce Merge branch 'PWA-327-Exchange-Router' into PWA-222-change-ParsedLink-helper 78b5596 Merge branch 'PWA-327-Exchange-Router' into PWA-431-Implement-RootCategory-route 8a98f17 Merge pull request #240 from shopgate/PWA-410-Implement-Cart-with-Conductor a67ad53 PWA-431 RootCategory is now a separate route 2c666cd Merge branch 'develop' into PWA-222-change-ParsedLink-helper 9307870 PWA-222 Applied new router navigation to the widgets. 89382db PWA-410 Cart is now compatible with Conductor 5bd3c0a Merge pull request #237 from shopgate/PWA-418-Make-NavDrawer-compatible-with-Conductor 0390923 Merge branch 'PWA-327-Exchange-Router' into PWA-418-Make-NavDrawer-compatible-with-Conductor 313bc6d Merge pull request #238 from shopgate/PWA-328-implement-cms-pages 89c5d41 Update selectors.js 6fce7b7 Update streams.js c3b8f36 Update selectors.js d531a9b PWA-328 Re-activated all widgets. f37dec5 PWA-418 Adjusted NavDrawer links 3e807ab PWA-328 started integration of CMS pages. 6c6ff41 Merge branch 'PWA-327-Exchange-Router' into PWA-328-implement-cms-pages 27ca71c Merge branch 'develop' into PWA-327-Exchange-Router de8fa49 Merge branch 'develop' into PWA-327-Exchange-Router 503b542 Merge branch 'PWA-327-Exchange-Router' into PWA-328-implement-cms-pages ee3d6db PWA-328 implemented first version of cms pages. f445399 PWA-327 Added new dependency 2efa13f Merge branch 'develop' into PWA-327-Exchange-Router b71b390 Merge branch 'develop' into PWA-327-Exchange-Router 60f739d Merge pull request #236 from shopgate/PWA-221-Add-Navigation-action-and-Link-component 2f16f96 PWA-221 Added router subscription to subscribers 0958179 Merge branch 'PWA-241-Install-new-Router' into PWA-327-Exchange-Router dc7d7d0 PWA-241 Disabled unwanted imports 8287f28 Merge pull request #235 from shopgate/PWA-241-Install-new-Router 53ac66b Merge branch 'PWA-327-Exchange-Router' into PWA-241-Install-new-Router 21774eb PWA-327 added web-worker implementation. 12f35a7 Merge branch 'PWA-327-Exchange-Router' into PWA-241-Install-new-Router e914f41 PWA-241 Moved to Conductor git-subtree-dir: themes/theme-gmd git-subtree-split: 6303a2c
PWA-626 empty components
Description
This ticket adds iOS styled headlines to the root category, the common category route and widgets.
Type of change