mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-16 04:58:12 +01:00
93 lines
3.9 KiB
Vue
93 lines
3.9 KiB
Vue
<script lang="ts">
|
|
import { tv } from 'tailwind-variants'
|
|
import type { NavigationMenuRootProps, NavigationMenuRootEmits } from 'radix-vue'
|
|
import type { AppConfig } from '@nuxt/schema'
|
|
import _appConfig from '#build/app.config'
|
|
import theme from '#build/ui/navigationMenu'
|
|
import type { AvatarProps, BadgeProps, IconProps, LinkProps } from '#ui/types'
|
|
|
|
const appConfig = _appConfig as AppConfig & { ui: { navigationMenu: Partial<typeof theme> } }
|
|
|
|
const navigationMenu = tv({ extend: tv(theme), ...(appConfig.ui?.navigationMenu || {}) })
|
|
|
|
export interface NavigationMenuLink extends LinkProps {
|
|
label: string
|
|
icon?: IconProps['name']
|
|
avatar?: AvatarProps
|
|
badge?: string | number | BadgeProps
|
|
select? (e: MouseEvent): void
|
|
}
|
|
|
|
export interface NavigationMenuProps<T> extends Omit<NavigationMenuRootProps, 'asChild' | 'dir'> {
|
|
links?: T[] | T[][]
|
|
class?: any
|
|
ui?: Partial<typeof navigationMenu.slots>
|
|
}
|
|
|
|
export interface NavigationMenuEmits extends NavigationMenuRootEmits {}
|
|
|
|
type SlotProps<T> = (props: { link: T, active: boolean }) => any
|
|
|
|
export interface NavigationMenuSlots<T> {
|
|
leading: SlotProps<T>
|
|
default: SlotProps<T>
|
|
trailing: SlotProps<T>
|
|
}
|
|
</script>
|
|
|
|
<script setup lang="ts" generic="T extends NavigationMenuLink">
|
|
import { computed } from 'vue'
|
|
import { NavigationMenuRoot, NavigationMenuList, NavigationMenuItem, NavigationMenuLink, useForwardPropsEmits } from 'radix-vue'
|
|
import { reactivePick } from '@vueuse/core'
|
|
import { UIcon, UAvatar, UBadge, ULink, ULinkBase } from '#components'
|
|
import { omit } from '#ui/utils'
|
|
|
|
const props = withDefaults(defineProps<NavigationMenuProps<T>>(), { orientation: 'horizontal' })
|
|
const emits = defineEmits<NavigationMenuEmits>()
|
|
defineSlots<NavigationMenuSlots<T>>()
|
|
|
|
const rootProps = useForwardPropsEmits(reactivePick(props, 'as', 'modelValue', 'defaultValue', 'delayDuration', 'skipDelayDuration', 'orientation'), emits)
|
|
|
|
const ui = computed(() => tv({ extend: navigationMenu, slots: props.ui })({ orientation: props.orientation }))
|
|
|
|
const lists = computed(() => props.links?.length ? (Array.isArray(props.links[0]) ? props.links : [props.links]) as T[][] : [])
|
|
</script>
|
|
|
|
<template>
|
|
<NavigationMenuRoot v-bind="rootProps" :class="ui.root({ class: props.class })">
|
|
<NavigationMenuList v-for="(list, index) in lists" :key="`list-${index}`" :class="ui.list()">
|
|
<NavigationMenuItem v-for="(link, linkIndex) in list" :key="`list-${index}-${linkIndex}`" :class="ui.item()">
|
|
<ULink v-slot="{ active, ...slotProps }" v-bind="omit(link, ['label', 'icon', 'avatar', 'badge', 'select'])" custom>
|
|
<NavigationMenuLink as-child :active="active" @select="link.select">
|
|
<ULinkBase v-bind="slotProps" :class="ui.link({ active })">
|
|
<slot name="leading" :link="link" :active="active">
|
|
<UAvatar v-if="link.avatar" size="2xs" v-bind="link.avatar" :class="ui.linkLeadingAvatar({ active })" />
|
|
<UIcon v-else-if="link.icon" :name="link.icon" :class="ui.linkLeadingIcon({ active })" />
|
|
</slot>
|
|
|
|
<span v-if="link.label || $slots.default" :class="ui.linkLabel()">
|
|
<slot :link="link" :active="active">
|
|
{{ link.label }}
|
|
</slot>
|
|
</span>
|
|
|
|
<span v-if="$slots.trailing || link.badge" :class="ui.linkTrailing()">
|
|
<slot name="trailing" :link="link" :active="active">
|
|
<UBadge
|
|
v-if="link.badge"
|
|
color="gray"
|
|
variant="solid"
|
|
size="xs"
|
|
v-bind="(typeof link.badge === 'string' || typeof link.badge === 'number') ? { label: link.badge } : link.badge"
|
|
:class="ui.linkTrailingBadge()"
|
|
/>
|
|
</slot>
|
|
</span>
|
|
</ULinkBase>
|
|
</NavigationMenuLink>
|
|
</ULink>
|
|
</NavigationMenuItem>
|
|
</NavigationMenuList>
|
|
</NavigationMenuRoot>
|
|
</template>
|