Next.js 中使用 TypeScript 和 HOC 的持久布局

IT技术 reactjs typescript next.js higher-order-components
2021-05-06 17:53:41

我想向 Next.js 应用程序的某些页面添加持久布局。我发现这篇文章解释了人们如何做到这一点的几种方法。看起来很简单,但是我在使用推荐的方法时遇到了以下两个问题:

  1. 我正在使用 TypeScript,但不确定如何输入。例如,我有以下工作,但我显然不喜欢使用as any
const getLayout =
    (Component as any).getLayout ||
    ((page: NextPage) => <SiteLayout children={page} />);
  1. 我正在使用 Apollo,因此我正在为某些页面使用withApolloHOC(来自此处)。使用这个会导致Component.getLayout总是undefined我对正在发生的事情没有足够的了解来知道为什么会发生这种情况(我可以猜到),所以我自己很难解决这个问题。
3个回答

我有类似的问题,这就是我为我的项目解决它的方法。

创建types/page.d.ts类型定义:

import { NextPage } from 'next'
import { ComponentType, ReactElement, ReactNode } from 'react'

export type Page<P = {}> = NextPage<P> & {
  // You can disable whichever you don't need
  getLayout?: (page: ReactElement) => ReactNode
  layout?: ComponentType
}

在您的_app.tsx文件中,

import type { AppProps } from 'next/app'
import { Fragment } from 'react'
import type { Page } from '../types/page'

// this should give a better typing
type Props = AppProps & {
  Component: Page
}
const MyApp = ({ Component, pageProps }: Props) => {
  // adjust accordingly if you disabled a layout rendering option
  const getLayout = Component.getLayout ?? (page => page)
  const Layout = Component.layout ?? Fragment

  return (
    <Layout>
      {getLayout(<Component {...pageProps} />)}
    </Layout>
  )

  // or swap the layout rendering priority
  // return getLayout(<Layout><Component {...pageProps} /></Layout>)
}

export default MyApp

以上只是最适合我的用例的示例实现,您可以根据types/page.d.ts需要切换类型

您可以通过将getLayout属性添加AppProps.Component.

next.d.ts (从 Next 11.1.0 开始):

import type { CompletePrivateRouteInfo } from 'next/dist/shared/lib/router/router';
import type { Router } from 'next/dist/client/router';

declare module 'next/app' {
  export declare type AppProps = Pick<CompletePrivateRouteInfo, 'Component' | 'err'> & {
    router: Router;
  } & Record<string, any> & {
    Component: {
      getLayout?: (page: JSX.Element) => JSX.Element;
    }
  }
}

pages/_app.tsx

import type { AppProps } from 'next/app';

const NextApp = ({ Component, pageProps }: AppProps) => {
  // Typescript does not complain about unknown property
  const getLayout = Component.getLayout || ((page) => page);
  // snip
}

如果你想要更多的类型安全,你可以定义自定义NextPageWithLayout类型,它会断言你的组件有getLayout属性集。

next.d.ts (从 Next 11.1.0 开始):

import type { NextPage } from 'next';
import type { NextComponentType } from 'next/dist/next-server/lib/utils';

declare module 'next' {
  export declare type NextPageWithLayout<P = {}, IP = P> = NextPage<P, IP> & {
    getLayout: (component: NextComponentType) => JSX.Element;
  };
}

pages/example-page/index.tsx

import type { NextPageWithLayout } from 'next';

const ExamplePage: NextPageWithLayout<ExamplePageProps> = () => {
  // snip
}

// If you won't define `getLayout` property on this component, TypeScript will complain
ExamplePage.getLayout = (page) => {
  // snip
}

请注意,在扩展 Next 类型定义时,您必须提供准确的类型/接口签名(以及匹配的泛型),否则声明合并将不起作用。不幸的是,如果库更改 API,这意味着调整类型定义。

  1. 我相信 next.js 提供了一个Componentprop 作为 AppProps 的一部分。这个例子应该有你正在寻找的东西。
  2. 您可能需要getLayout在创建包含以下内容的组件后进行分配withApollo
import CustomLayout = CustomLayout;
const MyPage = () => (...);

const MyPageWithApollo = withApollo(MyPage);
MyPageWithApollo.Layout = CustomLayout;
export default MyPageWithApollo;

此外,next.js 有两个示例可以用来实现这一点(虽然不是用typescript写的):

  1. 动态应用布局
  2. 与阿波罗