docs: update sidebar and add all components

This commit is contained in:
Benjamin Canac
2021-11-19 16:39:15 +01:00
parent 3c58537602
commit 2a9acebcb5

View File

@@ -1,23 +1,33 @@
<template> <template>
<div class="h-full bg-tw-gray-50 min-h-screen"> <div class="bg-tw-gray-50">
<UContainer class="py-8"> <UContainer class="py-8 min-h-screen">
<div class="lg:grid lg:grid-cols-12 lg:gap-10 lg:relative"> <div class="lg:grid lg:grid-cols-12 lg:gap-10 lg:relative">
<aside class="pb-8 lg:pb-0 lg:sticky lg:top-0 px-4 sm:px-6 lg:px-0 lg:pt-8 lg:-mt-8 lg:self-start lg:col-span-3" style="position: sticky;"> <aside class="lg:flex lg:flex-col lg:relative pb-8 lg:pb-0 lg:sticky lg:top-0 px-4 sm:px-6 lg:px-0 lg:pt-8 lg:-mt-8 lg:self-start lg:col-span-3 lg:overflow-hidden lg:h-[calc(100vh-2rem)]" style="position: sticky;height: calc(100vh - 2rem);">
<NuxtLink to="/" class="block font-bold text-lg mb-6"> <NuxtLink to="/" class="block font-bold text-lg mb-6">
@nuxthq/ui @nuxthq/ui
</NuxtLink> </NuxtLink>
<nav class="space-y-2.5"> <nav class="overflow-y-auto h-auto">
<ULink <ul class="space-y-3">
v-for="component in components" <li v-for="section of sections" :key="section">
:key="component.name" <h5 class="mb-3 uppercase tracking-wide font-semibold text-xs text-tw-gray-900">
:to="`/components/${component.name}`" {{ section.label }}
class="text-sm font-medium block w-full" </h5>
active-class="text-primary-600" <ul class="space-y-1.5">
inactive-class="text-tw-gray-500 hover:text-tw-gray-900" <li v-for="component of section.components" :key="component">
> <ULink
{{ component.name }} :to="`/components/${component}`"
</ULink> class="transition-colors duration-200 relative block text-sm rounded-md"
active-class="text-primary-700"
inactive-class="text-tw-gray-500 hover:text-tw-gray-900"
exact
>
{{ component }}
</ULink>
</li>
</ul>
</li>
</ul>
</nav> </nav>
</aside> </aside>
@@ -39,15 +49,12 @@ useMeta({
} }
}) })
const components = [ const sections = [
{ name: 'Avatar' }, { label: 'Elements', components: ['Avatar', 'AvatarGroup', 'Badge', 'Button', 'Dropdown', 'Icon', 'Link', 'Toggle'] },
{ name: 'Button' }, { label: 'Feedback', components: ['Alert'] },
{ name: 'Badge' }, { label: 'Forms', components: ['Checkbox', 'Input', 'InputGroup', 'Radio', 'RadioGroup', 'Select', 'SelectCustom', 'Textarea'] },
{ name: 'Dropdown' }, { label: 'Layout', components: ['Card', 'Container'] },
{ name: 'Icon' }, { label: 'Navigation', components: ['Pills', 'Tabs', 'VerticalNavigation'] },
{ name: 'Toggle' }, { label: 'Overlays', components: ['Modal', 'Notification', 'Popover', 'Slideover', 'Tooltip'] }
{ name: 'Card' },
{ name: 'Modal' },
{ name: 'Select' }
] ]
</script> </script>