Skip to content

Sidebar 0.1.49

A vertical navigation bar used to switch between different content areas.

Basic Usage

Bind the current selected item's index through v-model.

html
<wd-sidebar v-model="active">
  <wd-sidebar-item :value="0" label="Label Name" />
  <wd-sidebar-item :value="1" label="Label Name" />
  <wd-sidebar-item :value="2" label="Label Name" />
</wd-sidebar>
typescript
const active = ref(0)

Badge Tips

After setting the is-dot property, a small red dot will be displayed in the upper right corner. Setting the badge property will display the corresponding badge in the upper right corner.

html
<wd-sidebar v-model="active">
  <wd-sidebar-item :value="0" label="Label Name" is-dot />
  <wd-sidebar-item :value="1" label="Label Name" badge="5" />
  <wd-sidebar-item :value="2" label="Label Name" />
</wd-sidebar>

Disabled Options

Disable options through the disabled property.

html
<wd-sidebar v-model="active">
  <wd-sidebar-item :value="0" label="Label Name" />
  <wd-sidebar-item :value="1" label="Label Name" disabled />
  <wd-sidebar-item :value="2" label="Label Name" />
</wd-sidebar>

Listen to Switch Events

Set the change method to listen to events when switching navigation items.

html
<wd-sidebar v-model="active" @change="handleChange">
  <wd-sidebar-item :value="0" label="Label Name 1" />
  <wd-sidebar-item :value="1" label="Label Name 2" />
  <wd-sidebar-item :value="2" label="Label Name 3" />
</wd-sidebar>
typescript
import { useToast } from '@/uni_modules/wot-design-uni'

const toast = useToast()
const active = ref<number>(1)

function handleChange({ value, label }) {
  toast.show(`Current Label Name ${label}`)
}

Asynchronous Switching

Through the before-change property, you can execute specific logic before switching tabs. It receives { value, resolve } parameters, continues execution through resolve, and resolve accepts 1 boolean parameter.

html
<wd-sidebar v-model="active" :before-change="beforeChange">
  <wd-sidebar-item :value="0" label="Label Name" />
  <wd-sidebar-item :value="1" label="Label Name" disabled />
  <wd-sidebar-item :value="2" label="Label Name" />
</wd-sidebar>
typescript
import { useToast } from '@/uni_modules/wot-design-uni'
import type { SidebarBeforeChange } from '@/uni_modules/wot-design-uni/components/wd-sidebar/types'
import { ref } from 'vue'
const { loading: showLoading, close: closeLoading } = useToast()

const toast = useToast()
const active = ref<number>(1)

const beforeChange: SidebarBeforeChange = ({ value, resolve }) => {
  showLoading('Switching')
  setTimeout(() => {
    closeLoading()
    resolve(true)
  }, 2000)
}

Anchor Usage Example

The anchor usage of the sidebar component can help users quickly navigate to specific sections on long pages.

View Anchor Usage Example
html
<view class="wraper">
  <wd-sidebar v-model="active" @change="handleChange">
    <wd-sidebar-item v-for="(item, index) in categories" :key="index" :value="index" :label="item.label" />
  </wd-sidebar>
  <scroll-view class="content" scroll-y scroll-with-animation :scroll-top="scrollTop" :throttle="false" @scroll="onScroll">
    <view v-for="(item, index) in categories" :key="index" class="category">
      <wd-cell-group :title="item.title" border>
        <wd-cell v-for="(cell, index) in item.items" :key="index" :title="cell.title" :label="cell.label">
          <wd-icon name="github-filled" size="24px"></wd-icon>
        </wd-cell>
      </wd-cell-group>
    </view>
  </scroll-view>
</view>
typescript
<script lang="ts" setup>
import { onMounted, ref } from 'vue'
import { getRect, isArray } from '@/uni_modules/wot-design-uni/components/common/util'

const active = ref<number>(1)
const scrollTop = ref<number>(0)
const itemScrollTop = ref<number[]>([])

const subCategories = new Array(24).fill({ title: 'Title Text', label: 'This is description This is description' }, 0, 24)
const categories = ref([
  {
    label: 'Category 1',
    title: 'Title 1',
    items: subCategories
  },
  {
    label: 'Category 2',
    title: 'Title 2',
    items: subCategories
  },
  {
    label: 'Category 3',
    title: 'Title 3',
    items: subCategories.slice(0, 18)
  },
  {
    label: 'Category 4',
    title: 'Title 4',
    items: subCategories.slice(0, 21)
  },
  {
    label: 'Category 5',
    title: 'Title 5',
    items: subCategories
  },
  {
    label: 'Category 6',
    title: 'Title 6',
    items: subCategories.slice(0, 18)
  },
  {
    label: 'Category 7',
    title: 'Title 7',
    items: subCategories
  }
])

onMounted(() => {
  getRect('.category', true).then((rects) => {
    if (isArray(rects)) {
      itemScrollTop.value = rects.map((item) => item.top || 0)
      scrollTop.value = rects[active.value].top || 0
    }
  })
})

function handleChange({ value }) {
  active.value = value
  scrollTop.value = itemScrollTop.value[value]
}
function onScroll(e) {
  const { scrollTop } = e.detail
  const threshold = 50 // Distance between the next title and the top
  if (scrollTop < threshold) {
    active.value = 0
    return
  }
  const index = itemScrollTop.value.findIndex((top) => top > scrollTop && top - scrollTop <= threshold)
  if (index > -1) {
    active.value = index
  }
}
</script>
css
.wraper {
  display: flex;
  height: 100vh;
  overflow: hidden;
}
.content {
  flex: 1;
  height: 100%;
}
.category {
  background: #fff;
}

Attributes

ParameterDescriptionTypeAccepted ValuesDefaultVersion
modelValue/v-modelIndex of current navigation itemstring / number-00.1.49
before-changeHook before switching navigation items. Can execute specific logic before switching tabs. Receives { value, resolve } parameters, continue execution through resolvefunction--1.4.0

Events

Event NameDescriptionParametersVersion
changeTriggered when option switches(value: number | string, label: string)0.1.49

Slots

NameDescriptionParametersVersion
defaultCustom display-0.1.49

External Classes

Class NameDescriptionVersion
customStyleCustom style0.1.49
customClassCustom style class0.1.49

SidebarItem Attributes

ParameterDescriptionTypeAccepted ValuesDefaultVersion
labelCurrent option titlestring--0.1.49
valueCurrent option value, unique identifiernumber / string--0.1.49
iconIconstring--0.1.49
badgeBadge valuenumber / string / null--0.1.49
isDotWhether to display dot badgeboolean-false0.1.49
maxMaximum badge valuenumber-990.1.49
disabledWhether disabledboolean-false0.1.49
badge-propsCustom badge properties, passed object will be transparent to Badge component propsBadgeProps--0.1.50

SidebarItem Slots

NameDescriptionParametersVersion
iconCustom icon-0.1.49

SidebarItem External Classes

Class NameDescriptionVersion
customStyleCustom style0.1.49
customClassCustom style class0.1.49

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.