web-dev-qa-db-ja.com

typescriptでスタイル付きコンポーネントを「as」プロップとして使用する

私は現在、Buttonおよびstyled-componentsを使用してReactコンポーネントを構築したパターンライブラリを構築しています。 Buttonコンポーネントに基づいて、すべてのLinksコンポーネントがまったく同じに見え、まったく同じ小道具を受け取るようにします。そのために、私はstyled-componentsasプロップを使用しています。これにより、すでに構築された要素を別のタグまたはコンポーネントとして使用できます。

ボタンコンポーネント

import * as React from 'react'
import { ButtonBorderAnimation } from './ButtonAnimation'
import { ButtonProps, ButtonVariant } from './Button.types'
import { ButtonBase, LeftIcon, RightIcon } from './Button.styled'

function Button({
  variant = ButtonVariant.Filled,
  children,
  leftIcon = null,
  rightIcon = null,
  ...props
}: ButtonProps): JSX.Element {
  return (
    <ButtonBase variant={variant} {...props}>
      {variant !== ButtonVariant.Ghost ? (
        <ButtonBorderAnimation {...props} />
      ) : null}
      {leftIcon ? <LeftIcon>{leftIcon}</LeftIcon> : null}
      {children}
      {rightIcon ? <RightIcon>{rightIcon}</RightIcon> : null}
    </ButtonBase>
  )
}

export default Button

ボタンの種類

export interface ButtonProps {
  children: React.ReactNode
  variant?: 'filled' | 'outlined' | 'ghost'
  size?: 'small' | 'regular'
  underlinedOnHover?: boolean
  leftIcon?: React.ReactNode
  rightIcon?: React.ReactNode
  inverse?: boolean
}

export enum ButtonVariant {
  Filled = 'filled',
  Outlined = 'outlined',
  Ghost = 'ghost',
}

export enum ButtonSize {
  Small = 'small',
  Regular = 'regular',
}

リンクコンポーネント

import * as React from 'react'
import Button from '../Button/Button'
import { Link as LinkRouter } from 'react-router-dom'
import { LinkProps } from './Link.types'

function Link({ to, ...props }: LinkProps): JSX.Element {
  return <Button to={to} as={LinkRouter} {...props} />
}

export default Link

リンクタイプ

import { ButtonProps } from '../Button/Button.types'
import { LinkProps } from 'react-router-dom'

type RouterLinkWithButtonProps = ButtonProps & LinkProps

export interface LinkProps extends RouterLinkWithButtonProps {}

上記を実行すると、この問題が発生します...

Property 'to' does not exist on type 'IntrinsicAttributes & ButtonProps'.

...これは、ボタンにreact-router-domtoコンポーネントに必要なLinkプロパティがないため、理にかなっています。

このようなものにどのように取り組みますか? Buttonを使用する場合、toプロップを型に含めることはできません。Linkを使用する場合は、toが必要です。

用途

<Button>Hello</Button>
<Link to="/somewhere">Hello</Link>

これはうまくいくはずです。

function Link(_props: LinkProps): JSX.Element {
  const props = { as: LinkRouter, ..._props };
  return <Button {...props} />
}

TypeScriptは 厳密なオブジェクトリテラルの割り当てチェック を適用することに注意してください。これは、たとえば、Reactコンポーネントは割り当て動作をサポートします。

declare function foo(arg: { a: number }): void;

foo({ to: '', a: 1 }); // error

const arg = { to: '', a: 1 };
foo(arg); // no error
1
kimamula