\n
\n {!isLoyaltyMember && (\n
\n \n \n )}\n
\n {currentTierId && isLoyaltyMember && (\n
\n \n \n
\n )}\n
\n
\n {!isLoyaltyMember ? (\n
\n \n
\n ) : (\n
\n )}\n
\n {isLoyaltyMember && (\n
\n )}\n {!isLoyaltyMember && (\n <>\n
\n {optInError && (\n
\n \n \n \n
\n )}\n
\n
\n {replaceJSX(\n formatTranslation(\"ma_web_loyalty_hub_nav_item_terms_link\"),\n [\"%{termslink}\", \"%{privacypolicylink}\"],\n [\n ,\n ,\n ]\n )}\n
\n >\n )}\n
\n );\n};\n\nLoyaltyNavLink.propTypes = {\n isLoyaltyMember: PropTypes.bool,\n};\n\nLoyaltyNavLink.defaultProps = {\n isLoyaltyMember: false,\n};\n","// extracted by mini-css-extract-plugin\nexport default {\"xsBreakpoint\":\"(min-width: 480px)\",\"xsBreakpointMax\":\"(max-width: 639px)\",\"sBreakpoint\":\"(min-width: 640px)\",\"sBreakpointMax\":\"(max-width: 719px)\",\"mBreakpoint\":\"(min-width: 720px)\",\"mBreakpointMax\":\"(max-width: 839px)\",\"ordersListLBreakpoint\":\"(min-width: 840px)\",\"ordersListLBreakpointMax\":\"(max-width: 959px)\",\"lBreakpoint\":\"(min-width: 960px)\",\"fullPageLoadingAnimation\":\"PlIgQLQv3fWd1IqkMGeY\",\"item\":\"pZjOCY3TDlEuuABM8lQY\",\"link\":\"vdVk8qwbd6fYWZC9vbQQ\",\"hasTag\":\"GlJ3S5VRUgciCZ847ZC0\",\"hideBorderTop\":\"VrkbZ5Gx3NysBjj0KoGn\",\"active\":\"ZYrFUipKyF92P2oqKbnQ\",\"iconWrapper\":\"EyBuPQaoDEqI3MMru8vX\",\"iconInner\":\"nh6B9AOlOeUFQXkFPP8P\",\"iconOffset\":\"NJa16vl9DlY7bM9YpUTo\",\"badge\":\"WmqgvpcH6cVsFk85rmCO\",\"text\":\"HmsYyiwP4bIWUZuZ8IAG\",\"tagWrapper\":\"sK8aGy_nV4dMREgLaw7h\",\"tag\":\"xET9bBPwpUAkmoKjPiN8\",\"navItem\":\"xBzCgA7f8XplMgt7mswQ\",\"shownOnlyOnLarge\":\"GtR838UuVwdRhxi0A085\",\"loyaltyNavItemOptedOut\":\"nl6yP6YiuBh4KJHWMvFj\",\"loyaltyNavItem\":\"j1RyVBNdX9W2TwdVYlSY\"};","import React from \"react\";\nimport { useSelector } from \"react-redux\";\nimport { useLocation, matchPath } from \"react-router\";\n\nimport classnames from \"classnames\";\nimport PropTypes from \"prop-types\";\n\nimport NotificationBadge from \"@components/notification-badge\";\nimport Icon from \"@components/picture-icon\";\nimport { Translation } from \"@components/translation\";\n\nimport { useFormatTranslation } from \"@hooks/useFormatTranslation\";\n\nimport { mainId } from \"@configuration/application\";\n\nimport { getIsOptedIn } from \"@state/loyalty/selectors\";\n\nimport { SmartLink } from \"../../../smart-link\";\nimport { LoyaltyNavLink } from \"./loyalty-nav-item\";\n\nimport styles from \"./index.css\";\n\nexport const isActivePathMatch = (pathname, path) => {\n if (!pathname) {\n return false;\n }\n if (path !== \"/\") {\n return pathname.includes(path);\n } else {\n return pathname === path;\n }\n};\n\nconst AlternativeAnchor = ({ children, className, onClick, onKeyDown, to }) => {\n const href = to ? `/my-account${to}` : undefined;\n const Element = to ? \"a\" : \"span\";\n return (\n