Clicking the App from NavigationMenu throws "Please supply a shop param" error.

Solved

Clicking the App from NavigationMenu throws "Please supply a shop param" error.

ericute
Shopify Partner
63 5 14

I'm trying to implement NavigationMenu.

 

My code is pretty simple.

pages/_app.js

import enTranslations from '@shopify/polaris/locales/en.json'
import { AppProvider, Frame, FooterHelp, Link } from '@shopify/polaris'
import { useShopOrigin, ShopifyAppBridgeProvider } from 'shopify-nextjs-toolbox'
import { useCallback, useEffect, useState } from 'react'
import { useRouter } from 'next/router'

import '@shopify/polaris/build/esm/styles.css'
import '../styles.css'

import RoutePropagator from 'pages/route-propagator'
import ShopProvider from '../contexts/ShopContext'
import SideNavigation from '../components/shared/SideNavigation'

function MyApp({ Component, pageProps }) {
  const shopOrigin = useShopOrigin()
  const router = useRouter()

  let host
  if (typeof window !== 'undefined') {
    // Get the query parameters from window.location.search
    const searchParams = new URLSearchParams(window.location.search)
    if (searchParams?.host) {
      host = searchParams.host
    } else if (searchParams?.shop) {
      host = btoa(searchParams.shop)
    }
  }

  if (typeof window === 'undefined' || !window.location || !shopOrigin) {
    return <></>
  }

  const config = {
    apiKey: process.env.NEXT_PUBLIC_SHOPIFY_API_PUBLIC_KEY,
    forceRedirect: true,
  }

  return (
    <ShopifyAppBridgeProvider
      Component={Component}
      pageProps={pageProps}
      appBridgeConfig={config}
    >
      <AppProvider i18n={enTranslations} features={{ newDesignLanguage: true }}>
        <RoutePropagator />
        <ShopProvider shopifyDomain={shopOrigin}>
          <SideNavigation />
        </ShopProvider>
      </AppProvider>
    </ShopifyAppBridgeProvider>
  )
}

export default MyApp

pages/route-propagator.js

import { useContext, useEffect } from 'react'
import Router, { useRouter } from 'next/router'
import {
  Context as AppBridgeContext,
  RoutePropagator as ShopifyRoutePropagator,
} from '@shopify/app-bridge-react'
import { Redirect } from '@shopify/app-bridge/actions'

function RoutePropagator() {
  const router = useRouter()
  const { route, asPath } = router
  const appBridge = useContext(AppBridgeContext)

  useEffect(() => {
    appBridge.subscribe(Redirect.Action.APP, (payload) => {
      Router.push(payload.path)
    })
  }, [appBridge])

  return appBridge && route ? (
    <ShopifyRoutePropagator location={asPath} app={appBridge} />
  ) : null
}

export default RoutePropagator

pages/home.js

function HomePage() {
  return <>I am home!</>
}

export default HomePage

pages/page1/index.js

import { Layout, Page } from '@shopify/polaris'

const Page1 = () => (
  <Page title="Page 1">
    <Layout>
      <Layout.Section>Hello from Page 1</Layout.Section>
    </Layout>
  </Page>
)

export default Page1

 pages/page2/index.js

import { Layout, Page } from '@shopify/polaris'

const Page2 = () => (
  <Page title="Page 2">
    <Layout>
      <Layout.Section>Hello from Page 2</Layout.Section>
    </Layout>
  </Page>
)

export default Page2

 

It is looking good.

ericute_1-1698772502824.png

 

 

...until I click back on the app where it throws the following error:

ericute_0-1698771682081.png

 

Here a sample screen recording:

https://www.awesomescreenshot.com/video/22070718?key=b9c66db8db9a6bc78c9082892d30e317 

 

 

Does anyone know what I'm missing? Can you point me in the right direction? Thanks!

 

 

Accepted Solution (1)

ericute
Shopify Partner
63 5 14

This is an accepted solution.

The error was being returned from within the app. We have an endpoint in ../api/auth/start.js.

Screenshot 2023-11-01 at 12.02.43 PM.png

 

In the code, it checks if the shop is included in the request and it throws that error if it isn't.

export default async (req, res) => {
  if (!req.query.shop) {
    res.send("Please supply a 'shop' param")
    return
  }
  ...
}

 

View solution in original post

Reply 1 (1)

ericute
Shopify Partner
63 5 14

This is an accepted solution.

The error was being returned from within the app. We have an endpoint in ../api/auth/start.js.

Screenshot 2023-11-01 at 12.02.43 PM.png

 

In the code, it checks if the shop is included in the request and it throws that error if it isn't.

export default async (req, res) => {
  if (!req.query.shop) {
    res.send("Please supply a 'shop' param")
    return
  }
  ...
}