forked from didirus/AstralRinth
* Fix DEV-466, Fixes #4692 as well as a bunch of other poor contrast and inconsistency issues in light mode. Adds shadows to buttons and makes scrollbar gutter stable. * lintttt & only do scrollbar gutter on website * try to fix following hydration issue * try another clientonly approach * fix home page link animation * lint * remove dropdown style from checkbox & improve shadow consistency * liiiint
156 lines
4.5 KiB
Vue
156 lines
4.5 KiB
Vue
<template>
|
|
<nav :aria-label="ariaLabel" class="w-full">
|
|
<ul
|
|
class="card-shadow m-0 flex list-none flex-col items-start gap-1.5 rounded-2xl bg-bg-raised p-4"
|
|
>
|
|
<slot v-if="hasSlotContent" />
|
|
|
|
<template v-else>
|
|
<li v-for="(item, idx) in filteredItems" :key="getKey(item, idx)" class="contents">
|
|
<hr v-if="isSeparator(item)" class="my-1 w-full border-t border-solid" />
|
|
|
|
<div
|
|
v-else-if="isHeading(item)"
|
|
class="px-4 pb-1 pt-2 text-xs font-bold uppercase tracking-wide text-secondary"
|
|
>
|
|
{{ item.label }}
|
|
</div>
|
|
|
|
<NuxtLink
|
|
v-else-if="item.link ?? item.to"
|
|
:to="(item.link ?? item.to) as string"
|
|
class="nav-item inline-flex w-full cursor-pointer items-center gap-2 text-nowrap rounded-xl border-none bg-transparent px-4 py-2.5 text-left text-base font-semibold leading-tight text-button-text transition-all hover:bg-button-bg hover:text-contrast active:scale-[0.97]"
|
|
:class="{ 'is-active': isActive(item as NavStackLinkItem) }"
|
|
>
|
|
<component
|
|
:is="item.icon"
|
|
v-if="item.icon"
|
|
aria-hidden="true"
|
|
class="h-5 w-5 shrink-0"
|
|
/>
|
|
<span class="text-contrast">{{ item.label }}</span>
|
|
<span
|
|
v-if="item.badge != null"
|
|
class="rounded-full bg-brand-highlight px-2 text-sm font-bold text-brand"
|
|
>
|
|
{{ String(item.badge) }}
|
|
</span>
|
|
<span v-if="item.chevron" class="ml-auto"><ChevronRightIcon /></span>
|
|
</NuxtLink>
|
|
|
|
<button
|
|
v-else-if="item.action"
|
|
class="nav-item inline-flex w-full cursor-pointer items-center gap-2 text-nowrap rounded-xl border-none bg-transparent px-4 py-2.5 text-left text-base font-semibold leading-tight text-button-text transition-all hover:bg-button-bg hover:text-contrast active:scale-[0.97]"
|
|
:class="{ 'danger-button': item.danger }"
|
|
@click="item.action"
|
|
>
|
|
<component
|
|
:is="item.icon"
|
|
v-if="item.icon"
|
|
aria-hidden="true"
|
|
class="h-5 w-5 shrink-0"
|
|
/>
|
|
<span class="text-contrast">{{ item.label }}</span>
|
|
<span
|
|
v-if="item.badge != null"
|
|
class="rounded-full bg-brand-highlight px-2 text-sm font-bold text-brand"
|
|
>
|
|
{{ String(item.badge) }}
|
|
</span>
|
|
</button>
|
|
|
|
<span v-else>You frog. 🐸</span>
|
|
</li>
|
|
</template>
|
|
</ul>
|
|
</nav>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ChevronRightIcon } from '@modrinth/assets'
|
|
import { type Component, computed, useSlots } from 'vue'
|
|
|
|
type NavStackBaseItem = {
|
|
label: string
|
|
icon?: Component | string
|
|
badge?: string | number | null
|
|
chevron?: boolean
|
|
danger?: boolean
|
|
}
|
|
|
|
type NavStackLinkItem = NavStackBaseItem & {
|
|
type?: 'item'
|
|
link?: string | null
|
|
to?: string | null
|
|
action?: (() => void) | null
|
|
matchNested?: boolean
|
|
}
|
|
|
|
type NavStackSeparator = { type: 'separator' }
|
|
type NavStackHeading = { type: 'heading'; label: string }
|
|
|
|
export type NavStackEntry = (NavStackLinkItem | NavStackSeparator | NavStackHeading) & {
|
|
shown?: boolean
|
|
}
|
|
|
|
const props = defineProps<{
|
|
items?: NavStackEntry[]
|
|
ariaLabel?: string
|
|
}>()
|
|
|
|
const ariaLabel = computed(() => props.ariaLabel ?? 'Section navigation')
|
|
|
|
const route = useRoute()
|
|
|
|
const slots = useSlots()
|
|
const hasSlotContent = computed(() => {
|
|
const content = slots.default?.()
|
|
return !!(content && content.length)
|
|
})
|
|
|
|
function isSeparator(item: NavStackEntry): item is NavStackSeparator {
|
|
return (item as any).type === 'separator'
|
|
}
|
|
|
|
function isHeading(item: NavStackEntry): item is NavStackHeading {
|
|
return (item as any).type === 'heading'
|
|
}
|
|
|
|
function getKey(item: NavStackEntry, idx: number) {
|
|
if (isSeparator(item)) return `sep-${idx}`
|
|
if (isHeading(item)) return `head-${item.label}-${idx}`
|
|
const link = (item as NavStackLinkItem).link ?? (item as NavStackLinkItem).to
|
|
return link ? `link-${link}` : `action-${(item as NavStackLinkItem).label}-${idx}`
|
|
}
|
|
|
|
function isActive(item: NavStackLinkItem): boolean {
|
|
const link = item.link ?? item.to
|
|
if (!link) return false
|
|
|
|
const currentPath = route.path
|
|
|
|
if (item.matchNested) {
|
|
return currentPath.startsWith(link)
|
|
}
|
|
|
|
return currentPath === link
|
|
}
|
|
|
|
const filteredItems = computed(() => props.items?.filter((x) => x.shown === undefined || x.shown))
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
li {
|
|
text-align: unset;
|
|
}
|
|
.router-link-exact-active.nav-item,
|
|
.nav-item.is-active {
|
|
background: var(--color-button-bg-selected);
|
|
color: var(--color-button-text-selected);
|
|
}
|
|
.router-link-exact-active.nav-item .text-contrast,
|
|
.nav-item.is-active .text-contrast {
|
|
color: var(--color-button-text-selected);
|
|
}
|
|
</style>
|