{"version":3,"file":"mobile-side-menu-e5a73f1a.js","sources":["../../../client/src/javascripts/customer_pages/_megamenu/mobile-side-menu.jsx"],"sourcesContent":["'use strict';\n\n// Import Libraries\nimport React, { useState } from 'react';\nimport classNames from 'classnames';\nimport FocusTrap from 'focus-trap-react';\nimport PropTypes from 'prop-types';\nimport { href, link_classes } from './utils';\nimport { builderDispatch, WebUI } from '../_utils/ui';\n\nconst MobileSideMenu = ({ headerLinks, links }) => {\n React.useEffect(() => {\n const builderDispatchLogin = builderDispatch.register((event) => {\n switch (event.type) {\n case WebUI.LOGIN:\n updateComponent();\n break;\n }\n });\n return () => {\n builderDispatch.unregister(builderDispatchLogin);\n };\n });\n\n const [values, setValues] = useState({\n opened: false,\n display: 'none',\n update: false,\n });\n\n const updateComponent = () => {\n setValues({ ...values, update: !values.update });\n };\n\n const renderAccountTools = () => {\n const loggedIn =\n typeof window.App !== 'undefined' && window.App.order.logged_in();\n const { store_finder: storeFinderUrl, help_page: helpPageUrl } = headerLinks;\n const utilityLinks = () => {\n if (!storeFinderUrl && !helpPageUrl) {\n return null;\n }\n\n return (\n <>\n