-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(TabsNav): add TabsNav component (#91)
- Loading branch information
Showing
18 changed files
with
433 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
packages/frosted-ui/.storybook/stories/components/tabs-nav.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import type { Meta, StoryObj } from '@storybook/react'; | ||
|
||
import React from 'react'; | ||
import { TabsNav } from '../../../src/components'; | ||
import { tabsNavPropDefs } from '../../../src/components/tabs-nav.props'; | ||
|
||
// More on how to set up stories at: https://storybook.js.org/docs/react/writing-stories/introduction#default-export | ||
const meta = { | ||
title: 'Components/TabsNav', | ||
component: TabsNav.Root, | ||
args: { | ||
size: tabsNavPropDefs.size.default, | ||
}, | ||
parameters: { | ||
// Optional parameter to center the component in the Canvas. More info: https://storybook.js.org/docs/react/configure/story-layout | ||
layout: 'centered', | ||
}, | ||
// This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/react/writing-docs/autodocs | ||
tags: ['autodocs'], | ||
} satisfies Meta<typeof TabsNav.Root>; | ||
|
||
export default meta; | ||
type Story = StoryObj<typeof meta>; | ||
|
||
// More on writing stories with args: https://storybook.js.org/docs/react/writing-stories/args | ||
|
||
export const Default: Story = { | ||
render: (args) => ( | ||
<div style={{ width: 600 }}> | ||
<TabsNav.Root {...args}> | ||
<TabsNav.Link active={true} href="#"> | ||
Account | ||
</TabsNav.Link> | ||
<TabsNav.Link href="#">Documents</TabsNav.Link> | ||
<TabsNav.Link href="#">Settings</TabsNav.Link> | ||
</TabsNav.Root> | ||
</div> | ||
), | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
.fui-BaseTabsList { | ||
display: flex; | ||
overflow-x: auto; | ||
white-space: nowrap; | ||
|
||
scrollbar-width: none; | ||
&::-webkit-scrollbar { | ||
display: none; | ||
} | ||
} | ||
|
||
.fui-BaseTabsTrigger { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
box-sizing: border-box; | ||
flex-shrink: 0; | ||
position: relative; | ||
user-select: none; | ||
} | ||
|
||
.fui-BaseTabsTriggerInner, | ||
.fui-BaseTabsTriggerInnerHidden { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
.fui-BaseTabsTriggerInner { | ||
position: absolute; | ||
|
||
:where(.fui-BaseTabsTrigger[data-state='inactive'], .fui-TabsNavLink:not([data-active])) & { | ||
letter-spacing: var(--tabs-trigger-inactive-letter-spacing); | ||
word-spacing: var(--tabs-trigger-inactive-word-spacing); | ||
} | ||
|
||
:where(.fui-BaseTabsTrigger[data-state='active'], .fui-TabsNavLink[data-active]) & { | ||
font-weight: var(--font-weight-medium); | ||
letter-spacing: var(--tabs-trigger-active-letter-spacing); | ||
word-spacing: var(--tabs-trigger-active-word-spacing); | ||
} | ||
} | ||
|
||
.fui-BaseTabsTriggerInnerHidden { | ||
visibility: hidden; | ||
font-weight: var(--font-weight-medium); | ||
letter-spacing: var(--tabs-trigger-active-letter-spacing); | ||
word-spacing: var(--tabs-trigger-active-word-spacing); | ||
} | ||
|
||
.fui-BaseTabsContent { | ||
position: relative; | ||
outline: 0; | ||
} | ||
|
||
/*************************************************************************************************** | ||
* * | ||
* SIZES * | ||
* * | ||
***************************************************************************************************/ | ||
|
||
.fui-BaseTabsTrigger { | ||
padding-left: var(--tabs-trigger-padding-x); | ||
padding-right: var(--tabs-trigger-padding-x); | ||
} | ||
|
||
.fui-BaseTabsTriggerInner, | ||
.fui-BaseTabsTriggerInnerHidden { | ||
padding: var(--tabs-trigger-inner-padding-y) | ||
var(--tabs-trigger-inner-padding-x); | ||
border-radius: var(--tabs-trigger-inner-border-radius); | ||
} | ||
|
||
@breakpoints { | ||
.fui-BaseTabsList { | ||
&:where(.fui-r-size-1) { | ||
height: 36px; | ||
font-size: var(--font-size-1); | ||
line-height: var(--line-height-1); | ||
letter-spacing: var(--letter-spacing-1); | ||
--tabs-trigger-padding-x: var(--space-1); | ||
--tabs-trigger-inner-padding-x: calc(1.5 * var(--space-1)); | ||
--tabs-trigger-inner-padding-y: var(--space-1); | ||
--tabs-trigger-inner-border-radius: var(--radius-2); | ||
} | ||
&:where(.fui-r-size-2) { | ||
height: var(--space-7); | ||
font-size: var(--font-size-2); | ||
line-height: var(--line-height-2); | ||
letter-spacing: var(--letter-spacing-2); | ||
--tabs-trigger-padding-x: var(--space-1); | ||
--tabs-trigger-inner-padding-x: calc(1.25 * var(--space-2)); | ||
--tabs-trigger-inner-padding-y: var(--space-1); | ||
--tabs-trigger-inner-border-radius: var(--radius-3); | ||
} | ||
} | ||
} | ||
|
||
/*************************************************************************************************** | ||
* * | ||
* VARIANTS * | ||
* * | ||
***************************************************************************************************/ | ||
|
||
.fui-BaseTabsList { | ||
box-shadow: inset 0 -1px 0 0 var(--gray-a5); | ||
} | ||
|
||
.fui-BaseTabsTrigger { | ||
color: var(--gray-a11); | ||
|
||
@media (hover: hover) { | ||
&:where(:hover) { | ||
color: var(--gray-12); | ||
} | ||
&:where(:hover) :where(.fui-BaseTabsTriggerInner) { | ||
background-color: var(--gray-a3); | ||
} | ||
&:where(:focus-visible:hover) :where(.fui-BaseTabsTriggerInner) { | ||
background-color: var(--accent-a3); | ||
} | ||
} | ||
&:where([data-state='active'], [data-active]) { | ||
color: var(--gray-12); | ||
} | ||
&:where(:focus-visible) :where(.fui-BaseTabsTriggerInner) { | ||
outline: 2px solid var(--color-focus-root); | ||
outline-offset: -2px; | ||
} | ||
&:where([data-state='active'], [data-active])::before { | ||
box-sizing: border-box; | ||
content: ''; | ||
height: 2px; | ||
position: absolute; | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
background-color: var(--accent-10); | ||
} | ||
} | ||
|
||
.fui-BaseTabsContent:where(:focus-visible) { | ||
outline: 2px solid var(--color-focus-root); | ||
} |
11 changes: 11 additions & 0 deletions
11
packages/frosted-ui/src/components/base-tabs-list.props.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { PropDef } from '../helpers'; | ||
|
||
const sizes = ['1', '2'] as const; | ||
|
||
const baseTabsListPropDefs = { | ||
size: { type: 'enum', values: sizes, default: '2', responsive: true }, | ||
} satisfies { | ||
size: PropDef<(typeof sizes)[number]>; | ||
}; | ||
|
||
export { baseTabsListPropDefs }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@import './base-tabs-list.css'; | ||
|
||
.fui-TabsNavItem { | ||
display: flex; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { asChildProp } from '../helpers'; | ||
|
||
const tabsNavLinkPropDefs = { | ||
asChild: asChildProp, | ||
} satisfies { | ||
asChild: typeof asChildProp; | ||
}; | ||
|
||
export { baseTabsListPropDefs as tabsNavPropDefs } from './base-tabs-list.props'; | ||
export { tabsNavLinkPropDefs }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
'use client'; | ||
|
||
import * as NavigationMenu from '@radix-ui/react-navigation-menu'; | ||
import classNames from 'classnames'; | ||
import * as React from 'react'; | ||
import { | ||
GetPropDefTypes, | ||
MarginProps, | ||
extractMarginProps, | ||
getSubtree, | ||
withBreakpoints, | ||
withMarginProps, | ||
} from '../helpers'; | ||
import { tabsNavLinkPropDefs, tabsNavPropDefs } from './tabs-nav.props'; | ||
|
||
type TabsNavRootElement = React.ElementRef<typeof NavigationMenu.Root>; | ||
type TabsNavOwnProps = GetPropDefTypes<typeof tabsNavPropDefs>; | ||
interface TabsNavRootProps | ||
extends Omit< | ||
React.ComponentPropsWithoutRef<typeof NavigationMenu.Root>, | ||
| 'asChild' | ||
| 'orientation' | ||
| 'defauValue' | ||
| 'value' | ||
| 'onValueChange' | ||
| 'delayDuration' | ||
| 'skipDelayDuration' | ||
>, | ||
MarginProps, | ||
TabsNavOwnProps {} | ||
const TabsNavRoot = React.forwardRef<TabsNavRootElement, TabsNavRootProps>( | ||
(props, forwardedRef) => { | ||
const { rest: marginRest, ...marginProps } = extractMarginProps(props); | ||
const { | ||
children, | ||
className, | ||
size = tabsNavPropDefs.size.default, | ||
...rootProps | ||
} = marginRest; | ||
|
||
return ( | ||
<NavigationMenu.Root | ||
className="fui-TabsNavRoot" | ||
{...rootProps} | ||
asChild={false} | ||
ref={forwardedRef} | ||
orientation="horizontal" | ||
> | ||
<NavigationMenu.List | ||
className={classNames( | ||
'fui-reset', | ||
'fui-BaseTabsList', | ||
'fui-TabsNavList', | ||
className, | ||
withMarginProps(marginProps), | ||
withBreakpoints(size, 'fui-r-size'), | ||
)} | ||
> | ||
{children} | ||
</NavigationMenu.List> | ||
</NavigationMenu.Root> | ||
); | ||
}, | ||
); | ||
TabsNavRoot.displayName = 'TabsNavRoot'; | ||
|
||
type TabsNavLinkElement = React.ElementRef<typeof NavigationMenu.Link>; | ||
type TabsNavLinkOwnProps = GetPropDefTypes<typeof tabsNavLinkPropDefs>; | ||
interface TabsNavLinkProps | ||
extends Omit< | ||
React.ComponentPropsWithoutRef<typeof NavigationMenu.Link>, | ||
'onSelect' | ||
>, | ||
TabsNavLinkOwnProps {} | ||
const TabsNavLink = React.forwardRef<TabsNavLinkElement, TabsNavLinkProps>( | ||
(props, forwardedRef) => { | ||
const { asChild, children, className, ...linkProps } = props; | ||
|
||
return ( | ||
<NavigationMenu.Item className="fui-TabsNavItem"> | ||
<NavigationMenu.Link | ||
{...linkProps} | ||
ref={forwardedRef} | ||
className={classNames( | ||
'fui-reset', | ||
'fui-BaseTabsTrigger', | ||
'fui-TabsNavLink', | ||
className, | ||
)} | ||
// eslint-disable-next-line @typescript-eslint/no-empty-function | ||
onSelect={() => {}} | ||
asChild={asChild} | ||
> | ||
{getSubtree({ asChild, children }, (children) => ( | ||
<> | ||
<span className="fui-BaseTabsTriggerInner fui-TabsNavLinkInner"> | ||
{children} | ||
</span> | ||
<span className="fui-BaseTabsTriggerInnerHidden fui-TabsNavLinkInnerHidden"> | ||
{children} | ||
</span> | ||
</> | ||
))} | ||
</NavigationMenu.Link> | ||
</NavigationMenu.Item> | ||
); | ||
}, | ||
); | ||
|
||
TabsNavLink.displayName = 'TabsNavLink'; | ||
|
||
const TabsNav = Object.assign( | ||
{}, | ||
{ | ||
Root: TabsNavRoot, | ||
Link: TabsNavLink, | ||
}, | ||
); | ||
|
||
export { TabsNav, TabsNavLink, TabsNavRoot }; | ||
export type { TabsNavLinkProps, TabsNavRootProps }; |
Oops, something went wrong.