SupremeTechnopriest/react-idle-timer

View on GitHub
docs/src/components/mdx/ComponentLinks.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { ElementType } from 'react'
import { useTranslation } from 'next-i18next'
import {
  Icon,
  Text,
  HStack,
  Wrap,
  Link,
  useColorModeValue,
  LinkProps,
  WrapItem
} from '@chakra-ui/react'
import { FaNpm, FaGithub } from 'react-icons/fa'

type ComponentLinkProps = LinkProps & {
  icon: ElementType
  url: string
  iconSize?: string
  iconColor?: string
}

function ComponentLink (props: ComponentLinkProps) {
  const { icon, url, children, iconSize, iconColor, ...rest } = props
  return (
    <Link
      href={url}
      isExternal
      px='12px'
      display='flex'
      alignItems='center'
      minH='32px'
      borderWidth='1px'
      borderRadius='md'
      color={useColorModeValue('gray.600', 'whiteAlpha.700')}
      _hover={{
        color: useColorModeValue('gray.700', 'whiteAlpha.900'),
        boxShadow: 'sm',
        transform: 'translateY(-1px)'
      }}
      {...rest}
    >
      <HStack>
        <Icon fontSize={iconSize} as={icon} color={iconColor} />
        <Text fontSize='sm' lineHeight='short'>
          {children}
        </Text>
      </HStack>
    </Link>
  )
}

export type ComponentLinksProps = {
  theme?: { componentName: string }
  github?: { url?: string; package?: string }
  npm?: { package: string }
}

export function ComponentLinks (props: ComponentLinksProps) {
  const { theme, github, npm, ...rest } = props
  const iconColor = useColorModeValue('gray.600', 'inherit')
  const { t } = useTranslation()

  const githubRepoUrl = 'https://github.com/chakra-ui/chakra-ui'

  const githubLink = (github?.url || github?.package) && (
    <WrapItem>
      <ComponentLink
        url={
          github.url || `${githubRepoUrl}/tree/main/packages/${github.package}`
        }
        icon={FaGithub}
        iconColor={iconColor}
        iconSize='1rem'
      >
        {t('component.mdx-components.component-links.view-source')}
      </ComponentLink>
    </WrapItem>
  )

  const npmLink = npm?.package && (
    <WrapItem>
      <ComponentLink
        url={`https://www.npmjs.com/package/${npm.package}`}
        icon={FaNpm}
        iconSize='2rem'
        iconColor='red.500'
      >
        {npm.package}
      </ComponentLink>
    </WrapItem>
  )

  const themeComponentLink = theme && (
    <WrapItem>
      <ComponentLink
        url={`${githubRepoUrl}/tree/main/packages/theme/src/components/${theme.componentName}.ts`}
        icon={FaGithub}
        iconColor={iconColor}
        iconSize='1rem'
      >
        {t('component.mdx-components.component-links.view-theme-source')}
      </ComponentLink>
    </WrapItem>
  )

  return (
    <Wrap className='component-links' mt='2rem' spacing='4' {...rest}>
      {githubLink}
      {themeComponentLink}
      {npmLink}
    </Wrap>
  )
}