{"version":3,"file":"index-C_S_OSJk.js","sources":["../../../app/javascript/src/explore/elements/Location/index.tsx","../../../app/javascript/src/explore/elements/VideoCard/index.jsx","../../../app/assets/images/videos/hero.jpg","../../../app/javascript/src/explore/scenes/Videos/scenes/Index/elements/Hero/index.jsx","../../../app/javascript/src/explore/scenes/Videos/scenes/Index/index.jsx","../../../app/javascript/src/explore/compositions/ProductRowUsingSearch/index.tsx","../../../app/javascript/src/explore/elements/VideoCardRow/index.jsx","../../../app/javascript/src/explore/scenes/Videos/scenes/Show/index.jsx","../../../app/javascript/src/explore/scenes/Videos/index.jsx"],"sourcesContent":["import React from 'react';\nimport cls from 'classnames';\n\nimport { IMerchant } from 'src/explore/types/shoppe';\nimport SvgIcon from 'src/explore/elements/SvgIcon';\n\ninterface LocationProps {\n  analytics?: Record<string, string>;\n  className?: string;\n  merchant: IMerchant;\n  target?: string;\n  onClick?: ( event: React.MouseEvent ) => void;\n}\n\nexport const Location = ({ analytics, className, merchant, target, onClick }: LocationProps ) => (\n  <a\n    className={cls( 'text-dark', className )}\n    data-analytics={analytics?.click}\n    data-turbolinks=\"false\"\n    href={merchant.statePermalink}\n    target={target}\n    onClick={onClick}\n  >\n    <SvgIcon icon=\"icon-map-pin\" iconClasses=\"text-secondary\" baseline />\n    {` ${merchant.location}`}\n  </a>\n);\n","import React from 'react';\nimport camelCaseKeys from 'camelcase-keys';\nimport { Link } from 'react-router-dom';\nimport cls from 'classnames';\n\nimport { LazyImgix } from 'src/explore/elements/LazyImgix';\nimport { Location } from 'src/explore/elements/Location';\nimport { SvgUse } from 'src/shoppe/elements/SvgUse';\n\nimport styles from './index.module.sass';\n\nconst LinkElement = ({ children, className, href, spa }) => {\n  if ( spa ) {\n    return (\n      <Link to={href} className={className}>\n        {children}\n      </Link>\n    );\n  }\n  return (\n    <a href={href} className={className} data-turbolinks=\"false\">\n      {children}\n    </a>\n  );\n};\n\nexport const VideoCard = ({ className = '', spa, video }) => (\n  <div className={cls( className, 'spec__video' )}>\n    <LinkElement\n      className={`${styles.link} position-relative d-block`}\n      href={`/videos/${video.permalink}`}\n      spa={spa}\n    >\n      <LazyImgix\n        alt={video.title}\n        className={`${styles.image} w-100 h-100 d-block`}\n        imgixParams={{ ar: '16:9' }}\n        sizes=\"(min-width: 992px) 30vw, (min-width: 768px) 30vw, 45vw\"\n        src={video.image_url}\n      />\n\n      <div className={`${styles.imgOverlay} position-absolute h-100 w-100`} />\n\n      <div className={`${styles.playIcon} position-absolute h-100`}>\n        <SvgUse ariaHidden=\"true\" className=\"w-100 h-100\" name=\"play-button\" role=\"presentation\" />\n      </div>\n    </LinkElement>\n\n    <div className=\"mt-4 mr-2 text-capitalize fs-4 text-truncate\">\n      {/*\n          <strong>\n            Hardcoded who?\n            {`S1E${video.position}`}\n          </strong>\n          {' '}\n        */}\n      {video.title}\n    </div>\n\n    {video.merchant && (\n      <div className=\"fs-4\">\n        <div className=\"mt-3 mt-sm-4 text-capitalize\">\n          <strong>{video.merchant.name}</strong>\n        </div>\n\n        <div className=\"mt-1 mt-sm-2\">\n          <Location merchant={camelCaseKeys( video.merchant, { deep: true })} />\n        </div>\n      </div>\n    )}\n  </div>\n);\n","export default \"__VITE_ASSET__wRPwLJdg__\"","import React from 'react';\n\nimport heroImg from 'images/videos/hero.jpg';\n\nimport { LazyImage } from 'src/explore/elements/LazyImage';\n\nimport styles from './index.module.sass';\n\nexport const Hero = () => (\n  <div className=\"row no-gutters\">\n    <div className=\"col position-relative\">\n      <LazyImage\n        alt=\"The Goldbelly Show\"\n        className={`${styles.image} w-100 d-block`}\n        sizes=\"100vw\"\n        src={heroImg}\n      />\n\n      <div className={`${styles.text} position-absolute pl-4 pl-md-6 pl-lg-9`}>\n        <div className={`${styles.title} text-uppercase`}>\n          The\n          <br />\n          Goldbelly\n          <br />\n          Show\n        </div>\n\n        <div className={`${styles.description} mt-2`}>\n          Follow America&apos;s Best Food Explorer and Chief Eating Officer Joe Ariel as he seeks\n          out the most legendary icons of the culinary scene.\n        </div>\n      </div>\n    </div>\n  </div>\n);\n","import React from 'react';\n\nimport { useApiObject } from 'src/explore/hooks/useApiObject';\n\nimport { VideoCard } from 'src/explore/elements/VideoCard';\n\nimport { Hero } from './elements/Hero';\n\nexport const Index = () => {\n  const videos = useApiObject( '/videos?sort=position_desc' );\n\n  return (\n    <div className=\"spec__videos\">\n      <div className=\"container-xl p-0 px-lg-4\">\n        <Hero />\n      </div>\n\n      <div className=\"container-xl\">\n        <div className=\"row mt-8\">\n          <div className=\"col d-flex flex-column flex-md-row align-items-md-center align-items-stretch justify-content-between\">\n            {/* Hardcoded who? */}\n            <h1>Season 1</h1>\n          </div>\n        </div>\n\n        {videos.data && (\n          <div className=\"row no-gutters mt-4\">\n            {videos.data.map(( video ) => (\n              <div className=\"col-sm-6 col-lg-4\" key={video.id}>\n                <VideoCard className=\"px-1 pb-8\" video={video} spa />\n              </div>\n            ))}\n          </div>\n        )}\n      </div>\n    </div>\n  );\n};\n","import React from 'react';\n\nimport ahoyTrack from 'src/explore/services/ahoy';\nimport { Deserializer } from 'src/explore/services/api';\nimport { SearchTracking } from 'src/explore/services/SearchTracking';\nimport { IProduct } from 'src/explore/types/shoppe';\nimport { useApiObject } from 'src/explore/hooks/useApiObject';\n\nimport { ProductCarousel } from '../ProductCarousel';\n\ninterface ProductRowUsingSearchProps {\n  analytics?: Record<string, string>;\n  conditions?: string;\n  linkParameters?: {\n    [key: string]: string;\n  };\n  template: string;\n  title?: string | null;\n  viewAllText?: string;\n  viewAllLinkUrl?: string;\n}\n\nexport const ProductRowUsingSearch = ({\n  analytics,\n  conditions = '',\n  linkParameters,\n  template,\n  title,\n  viewAllText,\n  viewAllLinkUrl,\n}: ProductRowUsingSearchProps ) => {\n  const track = React.useCallback(( data ) => {\n    if ( data ) {\n      ahoyTrack( '$browserSearch', data );\n    }\n  }, []);\n\n  // 20 products means 5 full pages on desktop\n  const products = useApiObject<IProduct[]>( `search?${conditions}&limit=20`, {\n    responseParser: Deserializer.deserialize,\n  });\n\n  React.useEffect(() => {\n    if ( !products.data ) return;\n\n    if ( products.meta ) {\n      track(\n        SearchTracking.syncProductAndVideoDataToPage( products.meta.tracking_params, products.data )\n      );\n    }\n  }, [ products.data ]);\n\n  return (\n    <ProductCarousel\n      analytics={analytics}\n      linkParameters={linkParameters}\n      pristine={products.loading}\n      products={products.data}\n      template={template}\n      title={title}\n      viewAllText={viewAllText}\n      viewAllLinkUrl={viewAllLinkUrl}\n    />\n  );\n};\n","import React from 'react';\n\nimport { VideoCard } from 'src/explore/elements/VideoCard';\nimport withScroll from 'src/explore/hocs/withScroll';\nimport styles from './index.module.sass';\n\nconst FixedRow = ({ children, noWrap }) => (\n  <ul className={`d-flex flex-row flex-nowrap${noWrap ? '' : ' overflow-auto'}`}>{children}</ul>\n);\n\nconst ScrollableRow = withScroll( FixedRow );\n\nexport const VideoCardRow = ({ spa, videos }) => {\n  const Row = videos.length > 3 ? ScrollableRow : FixedRow;\n\n  return (\n    <Row>\n      {videos.map(( video ) => (\n        <li className={styles.thumbnail} key={video.id}>\n          <VideoCard className=\"px-1 pb-8\" video={video} spa={spa} />\n        </li>\n      ))}\n    </Row>\n  );\n};\n","import React from 'react';\nimport { Helmet } from 'react-helmet';\nimport { Link, useParams } from 'react-router-dom';\n\nimport { BreadcrumbList } from 'src/explore/elements/BreadcrumbList';\nimport { BreadcrumbItem } from 'src/explore/elements/BreadcrumbItem';\nimport CollapsibleContainer from 'src/explore/elements/CollapsibleContainer';\nimport { ProductRowUsingSearch } from 'src/explore/compositions/ProductRowUsingSearch';\nimport { VideoCardRow } from 'src/explore/elements/VideoCardRow';\nimport { useApiObject } from 'src/explore/hooks/useApiObject';\nimport styles from './index.module.sass';\n\nconst VideoBreadcrumbs = ({ title }) => (\n  <BreadcrumbList className=\"d-none d-md-block pt-6 px-4 px-md-2 pb-1 mb-5\">\n    <BreadcrumbItem textClassName=\"text-white\" title=\"Home\" url=\"/\" position=\"1\" />\n    <BreadcrumbItem\n      textClassName=\"text-white\"\n      title=\"Goldbelly Show\"\n      url=\"/videos\"\n      position=\"2\"\n      spa\n    />\n    <BreadcrumbItem textClassName=\"text-white\" title={title} position=\"3\" />\n  </BreadcrumbList>\n);\n\nconst Video = ({ id }) => (\n  <div className=\"w-100 px-md-2\">\n    <div className=\"embed-responsive embed-responsive-16by9\">\n      <iframe\n        title=\"Responsive Video\"\n        className=\"embed-responsive-item\"\n        src={`https://www.youtube.com/embed/${id}?rel=0&showinfo=0`}\n        frameBorder=\"0\"\n        mozallowfullscreen=\"true\"\n        webkitallowfullscreen=\"true\"\n        allowFullScreen\n      />\n    </div>\n  </div>\n);\n\nconst VideoDetails = ({ description, title }) => (\n  <div className=\"col-12 pt-5 pt-md-9 pb-5 pb-md-9 text-center text-md-left\">\n    <h1 className=\"mt-md-n1 mb-md-1 text-white fs-4 fs-md-8\">{title}</h1>\n    {description && (\n      <CollapsibleContainer\n        className=\"pb-md-1\"\n        collapseHeight={{\n          xs: '1.3125rem',\n        }}\n        bgRGB={[ 0, 0, 0 ]}\n        btnClass=\"text-white\"\n      >\n        <p>{description}</p>\n      </CollapsibleContainer>\n    )}\n  </div>\n);\n\nconst VideoContainer = ({ data }) => (\n  <div className=\"row px-md-8 text-white\">\n    <VideoBreadcrumbs title={data.title} />\n\n    <Video id={data.video_id} />\n\n    <VideoDetails description={data.description} position={data.position} title={data.title} />\n  </div>\n);\n\nconst Order = ({ merchant }) => (\n  <ProductRowUsingSearch\n    conditions={`merchant_id=${merchant.id}`}\n    template=\"carousel\"\n    title={`Order ${merchant.name} to Your Door`}\n    viewAllText={`Shop ${merchant.name}`}\n    viewAllLinkUrl={merchant.permalink}\n  />\n);\n\nconst LatestVideos = ({ videos }) => (\n  <>\n    <h2 className=\"mb-3 mb-md-4\">Latest Videos</h2>\n\n    <VideoCardRow videos={videos} spa />\n\n    <div className=\"text-center\">\n      <Link className=\"btn btn-outline-dark\" to=\"/videos\">\n        View All Episodes\n      </Link>\n    </div>\n  </>\n);\n\nexport const Show = () => {\n  const { videoPermalink } = useParams();\n  const { data, status } = useApiObject( `/videos/${videoPermalink}` );\n  const latestVideos = useApiObject(\n    data?.id && `/videos?limit=9&sort=position_desc&exclude=${data.id}`\n  );\n\n  return (\n    <>\n      {data && (\n        <Helmet>\n          <title>{data.meta_title?.capitalize() || 'The Goldbelly Show'}</title>\n          <meta\n            name=\"description\"\n            content=\"Follow America's Best Food Explorer and Chief Eating Officer Joe Ariel as he seeks out the most legendary icons of the culinary scene.\"\n          />\n        </Helmet>\n      )}\n\n      <div className=\"pb-9 spec__showcase-video\">\n        {status === 'success' && (\n          <div className={styles.videoContainer}>\n            <div className=\"container-xl\">\n              <VideoContainer data={data} />\n            </div>\n          </div>\n        )}\n\n        {data?.merchant && (\n          <aside className=\"container-xl pt-md-1 mt-4 mt-md-8\">\n            <Order merchant={data.merchant} />\n          </aside>\n        )}\n\n        {latestVideos.data && (\n          <aside className=\"container-xl pt-md-3 mt-7 mt-md-8 spec__latest-videos\">\n            <LatestVideos videos={latestVideos.data} />\n          </aside>\n        )}\n      </div>\n    </>\n  );\n};\n","import React from 'react';\nimport { BrowserRouter, Routes, Route } from 'react-router-dom';\n\nimport { PageViewTracker } from 'src/explore/elements/PageViewTracker';\n\nimport { ScrollToTop } from 'src/explore/elements/ScrollToTop';\n\nimport { Index } from './scenes/Index';\nimport { Show } from './scenes/Show';\n\nconst Videos = () => (\n    <BrowserRouter>\n      <PageViewTracker />\n      <ScrollToTop />\n      <Routes>\n        <Route path=\"/videos\" element={<Index />} />\n        <Route path=\"/videos/:videoPermalink\" element={<Show />} />\n      </Routes>\n    </BrowserRouter>\n);\n\nexport default Videos;\n"],"names":["Location","analytics","className","merchant","target","onClick","React","cls","SvgIcon","LinkElement","children","href","spa","Link","VideoCard","video","styles","LazyImgix","SvgUse","camelCaseKeys","heroImg","Hero","LazyImage","Index","videos","useApiObject","ProductRowUsingSearch","conditions","linkParameters","template","title","viewAllText","viewAllLinkUrl","track","data","ahoyTrack","products","Deserializer","SearchTracking","ProductCarousel","FixedRow","noWrap","ScrollableRow","withScroll","VideoCardRow","Row","VideoBreadcrumbs","BreadcrumbList","BreadcrumbItem","Video","id","VideoDetails","description","CollapsibleContainer","VideoContainer","Order","LatestVideos","Show","videoPermalink","useParams","status","latestVideos","Helmet","_a","Videos","BrowserRouter","PageViewTracker","ScrollToTop","Routes","Route"],"mappings":"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"}