{"version":3,"file":"mega-menu-b67f89e5.js","sources":["../../../client/src/javascripts/customer_pages/_megamenu/sublink.jsx","../../../client/src/javascripts/customer_pages/_megamenu/flyout-section.jsx","../../../client/src/javascripts/customer_pages/_megamenu/wrapper.jsx","../../../client/src/javascripts/customer_pages/_megamenu/flyout.jsx","../../../client/src/javascripts/customer_pages/_megamenu/dropdown.jsx","../../../client/src/javascripts/customer_pages/_megamenu/mega-menu.jsx"],"sourcesContent":["'use strict';\n\n// Import Libraries\nimport React from 'react';\nimport classNames from 'classnames';\n\n// Import JS Modules\nimport { href, media_link, link_classes } from './utils';\n\nconst Sublink = ({ sublink }) => {\n const alt = !!sublink.alt ? sublink.alt : sublink.name;\n\n if (media_link(sublink)) {\n return (\n
  • \n \n {alt}\n \n
  • \n );\n }\n\n return (\n
  • \n \n {sublink.name}\n \n
  • \n );\n}\n\nexport default Sublink;\n","'use strict';\n\n// Import Libraries\nimport React from 'react';\nimport classNames from 'classnames';\n\n// Import JS Modules\nimport Sublink from './sublink'\nimport { href } from './utils';\n\nconst FlyoutSection = (props) => {\n let $sublinks = (props.section.sublinks || []).map((sublink, i) => {\n return ;\n });\n // props.section.hidden -> current link hide, if any of sublinks are hidden, they'll be hidden inside \n return (\n
    \n

    \n \n {props.section.name}\n \n \n

    \n
      \n { $sublinks }\n
    \n
    \n );\n}\n\nexport default FlyoutSection;\n","'use strict';\n\n// Import Libraries\nimport React from 'react';\n\n// Import JS Modules\nimport FlyoutSection from './flyout-section'\n\nconst Wrapper = (props) => {\n if (!props.section.sublinks) return null;\n\n let $sublinks = props.section.sublinks.map((sublinks, i) => {\n return (\n
  • \n \n
  • \n );\n });\n\n return (\n
  • \n
      \n { $sublinks }\n
    \n
  • \n );\n}\n\nexport default Wrapper;\n","'use strict';\n\n// Import Libraries\nimport React from 'react';\nimport classNames from 'classnames';\n\n// Import JS Modules\nimport FlyoutSection from './flyout-section'\nimport Wrapper from './wrapper'\nimport { href, link_classes, megamenu_wrapper, handleFlyoutMoreClick, handleTopLevelKeyPress, handleFlyoutKeypress } from './utils';\n\nconst Flyout = (props) => {\n let $sublinks = (props.links.sublinks || []).map((sublink, i) => {\n if (megamenu_wrapper(sublink)) {\n return (\n \n );\n }\n return (\n
  • \n \n
  • \n );\n });\n\n return (\n
  • \n \n {props.links.name}\n \n \n
    \n handleFlyoutKeypress(event, props)}\n >\n {props.links.name}\n \n
      handleFlyoutKeypress(event, props)}>\n {$sublinks}\n
    \n
    \n
  • \n );\n}\n\nexport default Flyout;\n","'use strict';\n\n// Import Libraries\nimport React from 'react';\nimport classNames from 'classnames';\n\n// Import JS Modules\nimport { href, link_classes, handleFlyoutMoreClick, handleTopLevelKeyPress, handleFlyoutKeypress } from './utils';\n\nconst Dropdown = (props) => {\n const { sublinks } = props.links;\n\n let $sublinks = (sublinks || []).map((sublink, i) => {\n return (\n \n { sublink.name }\n \n );\n });\n\n return (\n
  • \n \n { props.links.name }\n \n \n
    \n { $sublinks }\n
    \n
  • \n );\n\n function handleClick(e) {\n if (href(props.links) == '#') {\n e.preventDefault();\n }\n }\n};\n\nexport default Dropdown;\n","'use strict';\n\n// Import Libraries\nimport React from 'react';\nimport classNames from 'classnames';\nimport ResizeObserver from 'resize-observer-polyfill';\n\n// Import JS Modules\nimport ScreenAndStyle from '../_utils/screen-and-style';\nimport Flyout from './flyout'\nimport Dropdown from './dropdown'\nimport {\n href, link_classes,\n megamenu_link_dropdown,\n megamenu_link_flyout\n} from './utils';\n\nfunction componentForMenuItem(link) {\n if (megamenu_link_flyout(link)) { return Flyout; }\n if (megamenu_link_dropdown(link)) { return Dropdown; }\n}\n\nclass MegaMenu extends React.Component {\n constructor(props) {\n super(props);\n\n this.state = {\n selected: null,\n numberOfNavItemsWhichWillFit: Infinity\n };\n }\n\n componentDidMount() {\n const isMobile = ScreenAndStyle.isBootstrapXS() || ScreenAndStyle.isBootstrapSM();\n const { menu: $menu } = this;\n if ($menu && !isMobile) {\n this.itemsPositions = [];\n const margin = 0.5 * (window.innerWidth - $menu.offsetWidth);\n\n Array.from($menu.getElementsByClassName('nav-item')).forEach(($navItem, i) => {\n // this is the accumulated width of each item in the menu\n const previousRight = (this.itemsPositions[i - 1] || {}).right,\n right = $navItem.offsetWidth + (previousRight || 0),\n centre = parseInt(($navItem.getBoundingClientRect().left +\n $navItem.getBoundingClientRect().right) / 2 - margin),\n flyoutWidth = $($navItem.getElementsByClassName('dropdown-menu')[0]).outerWidth();\n this.itemsPositions.push({ right, centre, flyoutWidth });\n });\n\n this.calculateVisible($menu.parentElement.offsetWidth);\n\n this.resizeObserver = new ResizeObserver(entries => {\n const parentElement = $menu.parentElement;\n if (entries.some(entry => entry.target === parentElement)) {\n this.calculateVisible(parentElement.offsetWidth);\n }\n });\n this.resizeObserver.observe($menu.parentElement);\n }\n }\n\n componentWillUnmount() {\n this.resizeObserver.disconnect();\n }\n\n render() {\n const numberOfNavItemsWhichWillFit = this.state.numberOfNavItemsWhichWillFit - 1,\n showMore = numberOfNavItemsWhichWillFit <= this.props.links.length,\n { selected } = this.state;\n const $links = (this.props.links || []).map((link, i) => {\n const MenuItem = componentForMenuItem(link),\n positioningProperties = this.getFlyoutPositioning(i);\n\n if (MenuItem) {\n return (\n