diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-04-04 12:12:26 +0200 | 
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-04 12:12:26 +0200 | 
| commit | 9b445e635e2694c0d6095a1a2613fc59314dc595 (patch) | |
| tree | 03ef1ca0d663fcb935c65b47382934a41d834216 /src/components/atoms | |
| parent | e29e145b053a5b1f338cef8a0721e185e955cdc2 (diff) | |
chore: add a NavLink component
Diffstat (limited to 'src/components/atoms')
| -rw-r--r-- | src/components/atoms/links/nav-link.module.scss | 48 | ||||
| -rw-r--r-- | src/components/atoms/links/nav-link.stories.tsx | 49 | ||||
| -rw-r--r-- | src/components/atoms/links/nav-link.test.tsx | 12 | ||||
| -rw-r--r-- | src/components/atoms/links/nav-link.tsx | 36 | 
4 files changed, 145 insertions, 0 deletions
| diff --git a/src/components/atoms/links/nav-link.module.scss b/src/components/atoms/links/nav-link.module.scss new file mode 100644 index 0000000..24e8737 --- /dev/null +++ b/src/components/atoms/links/nav-link.module.scss @@ -0,0 +1,48 @@ +@use "@styles/abstracts/functions" as fun; +@use "@styles/abstracts/mixins" as mix; +@use "@styles/abstracts/placeholders"; + +.link { +  --draw-border-thickness: #{fun.convert-px(4)}; +  --draw-border-color1: var(--color-primary-light); +  --draw-border-color2: var(--color-primary-lighter); +  --icon-size: #{fun.convert-px(30)}; + +  display: inline-flex; +  flex-flow: column nowrap; +  place-items: center; +  place-content: center; +  row-gap: var(--spacing-2xs); +  min-width: var(--link-min-width, fun.convert-px(85)); +  padding: var(--spacing-xs); +  background: var(--color-bg); +  background-repeat: no-repeat; +  font-size: var(--font-size-sm); +  font-variant: small-caps; +  font-weight: 600; +  line-height: 1; +  text-decoration: none; + +  @include mix.media("screen") { +    @include mix.dimensions("md") { +      background-color: inherit; +      border-radius: 8%; +    } +  } + +  &:hover, +  &:focus { +    @extend %draw-borders; +  } + +  &:focus { +    color: var(--color-primary-light); +  } + +  &:active { +    --draw-border-color1: var(--color-primary-dark); +    --draw-border-color2: var(--color-primary-light); + +    @extend %draw-borders; +  } +} diff --git a/src/components/atoms/links/nav-link.stories.tsx b/src/components/atoms/links/nav-link.stories.tsx new file mode 100644 index 0000000..08553be --- /dev/null +++ b/src/components/atoms/links/nav-link.stories.tsx @@ -0,0 +1,49 @@ +import { ComponentMeta, ComponentStory } from '@storybook/react'; +import NavLinkComponent from './nav-link'; + +export default { +  title: 'Atoms/Links', +  component: NavLinkComponent, +  argTypes: { +    href: { +      control: { +        type: 'text', +      }, +      description: 'The link target.', +      type: { +        name: 'string', +        required: true, +      }, +    }, +    label: { +      control: { +        type: 'text', +      }, +      description: 'The link label.', +      type: { +        name: 'string', +        required: true, +      }, +    }, +    logo: { +      control: { +        type: null, +      }, +      description: 'The link logo.', +      type: { +        name: 'string', +        required: true, +      }, +    }, +  }, +} as ComponentMeta<typeof NavLinkComponent>; + +const Template: ComponentStory<typeof NavLinkComponent> = (args) => ( +  <NavLinkComponent {...args} /> +); + +export const NavLink = Template.bind({}); +NavLink.args = { +  href: '#', +  label: 'A nav link', +}; diff --git a/src/components/atoms/links/nav-link.test.tsx b/src/components/atoms/links/nav-link.test.tsx new file mode 100644 index 0000000..7750cee --- /dev/null +++ b/src/components/atoms/links/nav-link.test.tsx @@ -0,0 +1,12 @@ +import { render, screen } from '@test-utils'; +import NavLink from './nav-link'; + +describe('NavLink', () => { +  it('renders a nav link to blog page', () => { +    render(<NavLink href="/blog" label="Blog" />); +    expect(screen.getByRole('link', { name: 'Blog' })).toHaveAttribute( +      'href', +      '/blog' +    ); +  }); +}); diff --git a/src/components/atoms/links/nav-link.tsx b/src/components/atoms/links/nav-link.tsx new file mode 100644 index 0000000..7c6fede --- /dev/null +++ b/src/components/atoms/links/nav-link.tsx @@ -0,0 +1,36 @@ +import Link from 'next/link'; +import { FC, ReactNode } from 'react'; +import styles from './nav-link.module.scss'; + +export type NavLinkProps = { +  /** +   * Link target. +   */ +  href: string; +  /** +   * Link label. +   */ +  label: string; +  /** +   * Link logo. +   */ +  logo?: ReactNode; +}; + +/** + * NavLink component + * + * Render a navigation link. + */ +const NavLink: FC<NavLinkProps> = ({ href, label, logo }) => { +  return ( +    <Link href={href}> +      <a className={styles.link}> +        {logo} +        {label} +      </a> +    </Link> +  ); +}; + +export default NavLink; | 
