mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
342 lines
15 KiB
Vue
342 lines
15 KiB
Vue
<!-- eslint-disable vue/block-tag-newline -->
|
|
<script lang="ts">
|
|
import type { VariantProps } from 'tailwind-variants'
|
|
import type { NavigationMenuRootProps, NavigationMenuRootEmits, NavigationMenuContentProps, NavigationMenuContentEmits, CollapsibleRootProps } from 'reka-ui'
|
|
import type { AppConfig } from '@nuxt/schema'
|
|
import _appConfig from '#build/app.config'
|
|
import theme from '#build/ui/navigation-menu'
|
|
import { tv } from '../utils/tv'
|
|
import type { AvatarProps, BadgeProps, LinkProps } from '../types'
|
|
import type {
|
|
ArrayOrNested,
|
|
DynamicSlots,
|
|
MergeTypes,
|
|
NestedItem,
|
|
PartialString,
|
|
EmitsToProps
|
|
} from '../types/utils'
|
|
|
|
const appConfigNavigationMenu = _appConfig as AppConfig & { ui: { navigationMenu: Partial<typeof theme> } }
|
|
|
|
const navigationMenu = tv({ extend: tv(theme), ...(appConfigNavigationMenu.ui?.navigationMenu || {}) })
|
|
|
|
export interface NavigationMenuChildItem extends Omit<NavigationMenuItem, 'type'> {
|
|
/** Description is only used when `orientation` is `horizontal`. */
|
|
description?: string
|
|
[key: string]: any
|
|
}
|
|
|
|
export interface NavigationMenuItem extends Omit<LinkProps, 'type' | 'raw' | 'custom'>, Pick<CollapsibleRootProps, 'defaultOpen' | 'open'> {
|
|
label?: string
|
|
/**
|
|
* @IconifyIcon
|
|
*/
|
|
icon?: string
|
|
avatar?: AvatarProps
|
|
/**
|
|
* Display a badge on the item.
|
|
* `{ size: 'sm', color: 'neutral', variant: 'outline' }`{lang="ts-type"}
|
|
*/
|
|
badge?: string | number | BadgeProps
|
|
/**
|
|
* @IconifyIcon
|
|
*/
|
|
trailingIcon?: string
|
|
/**
|
|
* The type of the item.
|
|
* The `label` type only works on `vertical` orientation.
|
|
* @defaultValue 'link'
|
|
*/
|
|
type?: 'label' | 'link'
|
|
slot?: string
|
|
value?: string
|
|
children?: NavigationMenuChildItem[]
|
|
onSelect?(e: Event): void
|
|
[key: string]: any
|
|
}
|
|
|
|
type NavigationMenuVariants = VariantProps<typeof navigationMenu>
|
|
|
|
export interface NavigationMenuProps<T extends ArrayOrNested<NavigationMenuItem> = ArrayOrNested<NavigationMenuItem>> extends Pick<NavigationMenuRootProps, 'modelValue' | 'defaultValue' | 'delayDuration' | 'disableClickTrigger' | 'disableHoverTrigger' | 'skipDelayDuration' | 'disablePointerLeaveClose' | 'unmountOnHide'> {
|
|
/**
|
|
* The element or component this component should render as.
|
|
* @defaultValue 'div'
|
|
*/
|
|
as?: any
|
|
/**
|
|
* The icon displayed to open the menu.
|
|
* @defaultValue appConfig.ui.icons.chevronDown
|
|
* @IconifyIcon
|
|
*/
|
|
trailingIcon?: string
|
|
/**
|
|
* The icon displayed when the item is an external link.
|
|
* Set to `false` to hide the external icon.
|
|
* @defaultValue appConfig.ui.icons.external
|
|
* @IconifyIcon
|
|
*/
|
|
externalIcon?: boolean | string
|
|
items?: T
|
|
/**
|
|
* @defaultValue 'primary'
|
|
*/
|
|
color?: NavigationMenuVariants['color']
|
|
/**
|
|
* @defaultValue 'pill'
|
|
*/
|
|
variant?: NavigationMenuVariants['variant']
|
|
/**
|
|
* The orientation of the menu.
|
|
* @defaultValue 'horizontal'
|
|
*/
|
|
orientation?: NavigationMenuRootProps['orientation']
|
|
/**
|
|
* Collapse the navigation menu to only show icons.
|
|
* Only works when `orientation` is `vertical`.
|
|
* @defaultValue false
|
|
*/
|
|
collapsed?: boolean
|
|
/** Display a line next to the active item. */
|
|
highlight?: boolean
|
|
/**
|
|
* @defaultValue 'primary'
|
|
*/
|
|
highlightColor?: NavigationMenuVariants['highlightColor']
|
|
/** The content of the menu. */
|
|
content?: Omit<NavigationMenuContentProps, 'as' | 'asChild' | 'forceMount'> & Partial<EmitsToProps<NavigationMenuContentEmits>>
|
|
/**
|
|
* The orientation of the content.
|
|
* Only works when `orientation` is `horizontal`.
|
|
* @defaultValue 'horizontal'
|
|
*/
|
|
contentOrientation?: NavigationMenuVariants['contentOrientation']
|
|
/**
|
|
* Display an arrow alongside the menu.
|
|
* @defaultValue false
|
|
*/
|
|
arrow?: boolean
|
|
/**
|
|
* The key used to get the label from the item.
|
|
* @defaultValue 'label'
|
|
*/
|
|
labelKey?: keyof NestedItem<T>
|
|
class?: any
|
|
ui?: PartialString<typeof navigationMenu.slots>
|
|
}
|
|
|
|
export interface NavigationMenuEmits extends NavigationMenuRootEmits {}
|
|
|
|
type SlotProps<T extends NavigationMenuItem> = (props: { item: T, index: number, active?: boolean }) => any
|
|
|
|
export type NavigationMenuSlots<
|
|
A extends ArrayOrNested<NavigationMenuItem> = ArrayOrNested<NavigationMenuItem>,
|
|
T extends NestedItem<A> = NestedItem<A>
|
|
> = {
|
|
'item': SlotProps<T>
|
|
'item-leading': SlotProps<T>
|
|
'item-label': SlotProps<T>
|
|
'item-trailing': SlotProps<T>
|
|
'item-content': SlotProps<T>
|
|
} & DynamicSlots<MergeTypes<T>, 'leading' | 'label' | 'trailing' | 'content', { index: number, active?: boolean }>
|
|
|
|
</script>
|
|
|
|
<script setup lang="ts" generic="T extends ArrayOrNested<NavigationMenuItem>">
|
|
import { computed, toRef } from 'vue'
|
|
import { NavigationMenuRoot, NavigationMenuList, NavigationMenuItem, NavigationMenuTrigger, NavigationMenuContent, NavigationMenuLink, NavigationMenuIndicator, NavigationMenuViewport, useForwardPropsEmits } from 'reka-ui'
|
|
import { createReusableTemplate } from '@vueuse/core'
|
|
import { useAppConfig } from '#imports'
|
|
import { get, isArrayOfArray } from '../utils'
|
|
import { pickLinkProps } from '../utils/link'
|
|
import ULinkBase from './LinkBase.vue'
|
|
import ULink from './Link.vue'
|
|
import UAvatar from './Avatar.vue'
|
|
import UIcon from './Icon.vue'
|
|
import UBadge from './Badge.vue'
|
|
import UCollapsible from './Collapsible.vue'
|
|
|
|
const props = withDefaults(defineProps<NavigationMenuProps<T>>(), {
|
|
orientation: 'horizontal',
|
|
contentOrientation: 'horizontal',
|
|
externalIcon: true,
|
|
delayDuration: 0,
|
|
unmountOnHide: true,
|
|
labelKey: 'label'
|
|
})
|
|
const emits = defineEmits<NavigationMenuEmits>()
|
|
const slots = defineSlots<NavigationMenuSlots<T>>()
|
|
|
|
const rootProps = useForwardPropsEmits(computed(() => ({
|
|
as: props.as,
|
|
modelValue: props.modelValue,
|
|
defaultValue: props.defaultValue,
|
|
delayDuration: props.delayDuration,
|
|
skipDelayDuration: props.skipDelayDuration,
|
|
orientation: props.orientation,
|
|
disableClickTrigger: props.disableClickTrigger,
|
|
disableHoverTrigger: props.disableHoverTrigger,
|
|
disablePointerLeaveClose: props.disablePointerLeaveClose,
|
|
unmountOnHide: props.unmountOnHide
|
|
})), emits)
|
|
|
|
const contentProps = toRef(() => props.content)
|
|
|
|
const appConfig = useAppConfig()
|
|
const [DefineLinkTemplate, ReuseLinkTemplate] = createReusableTemplate<
|
|
{ item: NavigationMenuItem, index: number, active?: boolean },
|
|
NavigationMenuSlots<T>
|
|
>()
|
|
const [DefineItemTemplate, ReuseItemTemplate] = createReusableTemplate<
|
|
{ item: NavigationMenuItem, index: number, level?: number },
|
|
NavigationMenuSlots<T>
|
|
>({
|
|
props: {
|
|
item: Object,
|
|
index: Number,
|
|
level: Number
|
|
}
|
|
})
|
|
|
|
const ui = computed(() => navigationMenu({
|
|
orientation: props.orientation,
|
|
contentOrientation: props.contentOrientation,
|
|
collapsed: props.collapsed,
|
|
color: props.color,
|
|
variant: props.variant,
|
|
highlight: props.highlight,
|
|
highlightColor: props.highlightColor || props.color
|
|
}))
|
|
|
|
const lists = computed<NavigationMenuItem[][]>(() =>
|
|
props.items?.length
|
|
? isArrayOfArray(props.items)
|
|
? props.items
|
|
: [props.items]
|
|
: []
|
|
)
|
|
</script>
|
|
|
|
<template>
|
|
<DefineLinkTemplate v-slot="{ item, active, index }">
|
|
<slot :name="((item.slot || 'item') as keyof NavigationMenuSlots<T>)" :item="item" :index="index">
|
|
<slot :name="((item.slot ? `${item.slot}-leading` : 'item-leading') as keyof NavigationMenuSlots<T>)" :item="item" :active="active" :index="index">
|
|
<UAvatar v-if="item.avatar" :size="((props.ui?.linkLeadingAvatarSize || ui.linkLeadingAvatarSize()) as AvatarProps['size'])" v-bind="item.avatar" :class="ui.linkLeadingAvatar({ class: props.ui?.linkLeadingAvatar, active, disabled: !!item.disabled })" />
|
|
<UIcon v-else-if="item.icon" :name="item.icon" :class="ui.linkLeadingIcon({ class: props.ui?.linkLeadingIcon, active, disabled: !!item.disabled })" />
|
|
</slot>
|
|
|
|
<span
|
|
v-if="(!collapsed || orientation !== 'vertical') && (get(item, props.labelKey as string) || !!slots[(item.slot ? `${item.slot}-label` : 'item-label') as keyof NavigationMenuSlots<T>])"
|
|
:class="ui.linkLabel({ class: props.ui?.linkLabel })"
|
|
>
|
|
<slot :name="((item.slot ? `${item.slot}-label` : 'item-label') as keyof NavigationMenuSlots<T>)" :item="item" :active="active" :index="index">
|
|
{{ get(item, props.labelKey as string) }}
|
|
</slot>
|
|
|
|
<UIcon v-if="item.target === '_blank' && externalIcon !== false" :name="typeof externalIcon === 'string' ? externalIcon : appConfig.ui.icons.external" :class="ui.linkLabelExternalIcon({ class: props.ui?.linkLabelExternalIcon, active })" />
|
|
</span>
|
|
|
|
<span v-if="(!collapsed || orientation !== 'vertical') && (item.badge || (orientation === 'horizontal' && (item.children?.length || !!slots[(item.slot ? `${item.slot}-content` : 'item-content') as keyof NavigationMenuSlots<T>])) || (orientation === 'vertical' && item.children?.length) || item.trailingIcon || !!slots[(item.slot ? `${item.slot}-trailing` : 'item-trailing') as keyof NavigationMenuSlots<T>])" :class="ui.linkTrailing({ class: props.ui?.linkTrailing })">
|
|
<slot :name="((item.slot ? `${item.slot}-trailing` : 'item-trailing') as keyof NavigationMenuSlots<T>)" :item="item" :active="active" :index="index">
|
|
<UBadge
|
|
v-if="item.badge"
|
|
color="neutral"
|
|
variant="outline"
|
|
:size="((props.ui?.linkTrailingBadgeSize || ui.linkTrailingBadgeSize()) as BadgeProps['size'])"
|
|
v-bind="(typeof item.badge === 'string' || typeof item.badge === 'number') ? { label: item.badge } : item.badge"
|
|
:class="ui.linkTrailingBadge({ class: props.ui?.linkTrailingBadge })"
|
|
/>
|
|
|
|
<UIcon v-if="(orientation === 'horizontal' && (item.children?.length || !!slots[(item.slot ? `${item.slot}-content` : 'item-content') as keyof NavigationMenuSlots<T>])) || (orientation === 'vertical' && item.children?.length)" :name="item.trailingIcon || trailingIcon || appConfig.ui.icons.chevronDown" :class="ui.linkTrailingIcon({ class: props.ui?.linkTrailingIcon, active })" />
|
|
<UIcon v-else-if="item.trailingIcon" :name="item.trailingIcon" :class="ui.linkTrailingIcon({ class: props.ui?.linkTrailingIcon, active })" />
|
|
</slot>
|
|
</span>
|
|
</slot>
|
|
</DefineLinkTemplate>
|
|
|
|
<DefineItemTemplate v-slot="{ item, index, level = 0 }">
|
|
<component
|
|
:is="(orientation === 'vertical' && item.children?.length && !collapsed) ? UCollapsible : NavigationMenuItem"
|
|
as="li"
|
|
:value="item.value || String(index)"
|
|
:default-open="item.defaultOpen"
|
|
:unmount-on-hide="(orientation === 'vertical' && item.children?.length && !collapsed) ? unmountOnHide : undefined"
|
|
:open="item.open"
|
|
>
|
|
<div v-if="orientation === 'vertical' && item.type === 'label'" :class="ui.label({ class: props.ui?.label })">
|
|
<ReuseLinkTemplate :item="item" :index="index" />
|
|
</div>
|
|
<ULink v-else-if="item.type !== 'label'" v-slot="{ active, ...slotProps }" v-bind="(orientation === 'vertical' && item.children?.length && !collapsed) ? {} : pickLinkProps(item as Omit<NavigationMenuItem, 'type'>)" custom>
|
|
<component
|
|
:is="(orientation === 'horizontal' && (item.children?.length || !!slots[(item.slot ? `${item.slot}-content` : 'item-content') as keyof NavigationMenuSlots<T>])) ? NavigationMenuTrigger : NavigationMenuLink"
|
|
as-child
|
|
:active="active || item.active"
|
|
:disabled="item.disabled"
|
|
@select="item.onSelect"
|
|
>
|
|
<ULinkBase v-bind="slotProps" :class="ui.link({ class: [props.ui?.link, item.class], active: active || item.active, disabled: !!item.disabled, level: orientation === 'horizontal' || level > 0 })">
|
|
<ReuseLinkTemplate :item="item" :active="active || item.active" :index="index" />
|
|
</ULinkBase>
|
|
</component>
|
|
|
|
<NavigationMenuContent v-if="orientation === 'horizontal' && (item.children?.length || !!slots[(item.slot ? `${item.slot}-content` : 'item-content') as keyof NavigationMenuSlots<T>])" v-bind="contentProps" :class="ui.content({ class: props.ui?.content })">
|
|
<slot :name="((item.slot ? `${item.slot}-content` : 'item-content') as keyof NavigationMenuSlots<T>)" :item="item" :active="active" :index="index">
|
|
<ul :class="ui.childList({ class: props.ui?.childList })">
|
|
<li v-for="(childItem, childIndex) in item.children" :key="childIndex" :class="ui.childItem({ class: props.ui?.childItem })">
|
|
<ULink v-slot="{ active: childActive, ...childSlotProps }" v-bind="pickLinkProps(childItem)" custom>
|
|
<NavigationMenuLink as-child :active="childActive" @select="childItem.onSelect">
|
|
<ULinkBase v-bind="childSlotProps" :class="ui.childLink({ class: [props.ui?.childLink, childItem.class], active: childActive })">
|
|
<UIcon v-if="childItem.icon" :name="childItem.icon" :class="ui.childLinkIcon({ class: props.ui?.childLinkIcon, active: childActive })" />
|
|
|
|
<div :class="ui.childLinkWrapper({ class: props.ui?.childLinkWrapper })">
|
|
<p :class="ui.childLinkLabel({ class: props.ui?.childLinkLabel, active: childActive })">
|
|
{{ get(childItem, props.labelKey as string) }}
|
|
|
|
<UIcon v-if="childItem.target === '_blank' && externalIcon !== false" :name="typeof externalIcon === 'string' ? externalIcon : appConfig.ui.icons.external" :class="ui.childLinkLabelExternalIcon({ class: props.ui?.childLinkLabelExternalIcon, active: childActive })" />
|
|
</p>
|
|
<p v-if="childItem.description" :class="ui.childLinkDescription({ class: props.ui?.childLinkDescription, active: childActive })">
|
|
{{ childItem.description }}
|
|
</p>
|
|
</div>
|
|
</ULinkBase>
|
|
</NavigationMenuLink>
|
|
</ULink>
|
|
</li>
|
|
</ul>
|
|
</slot>
|
|
</NavigationMenuContent>
|
|
</ULink>
|
|
|
|
<template v-if="orientation === 'vertical' && item.children?.length && !collapsed" #content>
|
|
<ul :class="ui.childList({ class: props.ui?.childList })">
|
|
<ReuseItemTemplate
|
|
v-for="(childItem, childIndex) in item.children"
|
|
:key="childIndex"
|
|
:item="childItem"
|
|
:index="childIndex"
|
|
:level="level + 1"
|
|
:class="ui.childItem({ class: props.ui?.childItem })"
|
|
/>
|
|
</ul>
|
|
</template>
|
|
</component>
|
|
</DefineItemTemplate>
|
|
|
|
<NavigationMenuRoot v-bind="rootProps" :data-collapsed="collapsed" :class="ui.root({ class: [props.class, props.ui?.root] })">
|
|
<template v-for="(list, listIndex) in lists" :key="`list-${listIndex}`">
|
|
<NavigationMenuList :class="ui.list({ class: props.ui?.list })">
|
|
<ReuseItemTemplate v-for="(item, index) in list" :key="`list-${listIndex}-${index}`" :item="item" :index="index" :class="ui.item({ class: props.ui?.item })" />
|
|
</NavigationMenuList>
|
|
|
|
<div v-if="orientation === 'vertical' && listIndex < lists.length - 1" :class="ui.separator({ class: props.ui?.separator })" />
|
|
</template>
|
|
|
|
<div v-if="orientation === 'horizontal'" :class="ui.viewportWrapper({ class: props.ui?.viewportWrapper })">
|
|
<NavigationMenuIndicator v-if="arrow" :class="ui.indicator({ class: props.ui?.indicator })">
|
|
<div :class="ui.arrow({ class: props.ui?.arrow })" />
|
|
</NavigationMenuIndicator>
|
|
|
|
<NavigationMenuViewport :class="ui.viewport({ class: props.ui?.viewport })" />
|
|
</div>
|
|
</NavigationMenuRoot>
|
|
</template>
|