React에서 다형성 버튼을 만드는 방법
8744 단어 react
훨씬 더 많은 작업이 필요한 접근 방식을 사용하는 대신 RadixUI Slot 구성 요소(~800B)를 사용합니다.
구현 예:
/components/button-icon/ButtonIcon.tsx
import React from 'react'
import { Slot } from '@radix-ui/react-slot'
type AsButton = {
asChild?: false
} & React.ComponentPropsWithoutRef<'button'>
type AsSlot = {
asChild?: true
}
type ButttonIconProps = {
children: React.ReactNode
} & (AsButton | AsSlot)
const ButtonIcon = ({ children, asChild, ...props }: ButttonIconProps) => {
const Comp = asChild ? Slot : 'button'
return (
<Comp
className="flex h-12 w-12 items-center justify-center rounded-lg border border-[#4A5465] bg-[#252932]"
{...props}
>
{children}
</Comp>
)
}
export default ButtonIcon
보시다시피 코드는 구현보다 훨씬 깔끔합니다.
사용예시
/페이지/index.tsx
import type { NextPage } from 'next'
import NextLink from 'next/link'
import ButtonIcon from 'components/button-icon'
import { AppleIcon, FbIcon, GoogleIcon } from 'components/icons'
const HomePage: NextPage = () => {
return (
<div className="flex h-screen w-screen items-center justify-center bg-gray-600">
<div className="flex h-80 w-full max-w-sm flex-col items-center justify-end rounded-md bg-gray-800 p-4">
<div className="mt-4 flex gap-4">
{/* link (route) */}
<NextLink href="/account" passHref>
<ButtonIcon asChild>
<a>
<AppleIcon />
</a>
</ButtonIcon>
</NextLink>
{/* external link */}
<ButtonIcon asChild>
<a
href="https://www.linkedin.com/in/gabrielmlinassi/"
target="_blank"
rel="noreferrer"
>
<FbIcon />
</a>
</ButtonIcon>
{/* button */}
<ButtonIcon onClick={() => alert('clicked')}>
<GoogleIcon />
</ButtonIcon>
</div>
</div>
</div>
)
}
export default HomePage
Stackblitz 라이브 코드
Reference
이 문제에 관하여(React에서 다형성 버튼을 만드는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/gabrielmlinassi/how-to-create-a-polymorphic-button-in-react-27p8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)