CMVR-IOT-UI/src/components/HeaderSearch/index.vue

287 lines
7.2 KiB
Vue
Raw Normal View History

2025-08-21 14:11:58 +08:00
<template>
2026-07-28 16:26:07 +08:00
<div class="header-search">
2025-08-21 14:11:58 +08:00
<svg-icon class-name="search-icon" icon-class="search" @click.stop="click" />
2026-07-28 16:26:07 +08:00
<el-dialog
v-model="show"
width="600"
@close="close"
@opened="onDialogOpened"
:show-close="false"
append-to-body
2025-08-21 14:11:58 +08:00
>
2026-07-28 16:26:07 +08:00
<el-input
v-model="search"
ref="headerSearchSelectRef"
size="large"
@input="querySearch"
prefix-icon="Search"
placeholder="菜单搜索支持标题、URL模糊查询"
clearable
@keyup.enter="selectActiveResult"
@keydown.up.prevent="navigateResult('up')"
@keydown.down.prevent="navigateResult('down')"
>
</el-input>
<div class="result-count" v-if="search && options.length > 0">
找到 <strong>{{ options.length }}</strong> 个结果
</div>
<div class="result-wrap">
<el-scrollbar>
<template v-if="options.length > 0">
<div
class="search-item"
tabindex="1"
v-for="(item, index) in options"
:key="item.path"
:class="{ 'is-active': index === activeIndex }"
:style="activeStyle(index)"
@mouseenter="activeIndex = index"
@mouseleave="activeIndex = -1"
>
<div class="left">
<svg-icon class="menu-icon" :icon-class="item.icon" />
</div>
<div class="search-info" @click="change(item)">
<div class="menu-title" v-html="highlightText(item.title.join(' / '))"></div>
<div class="menu-path" v-html="highlightText(item.path)"></div>
</div>
<svg-icon icon-class="enter" v-show="index === activeIndex" />
</div>
</template>
<div class="empty-state" v-else-if="search && options.length === 0">
<el-icon class="empty-icon"><Search /></el-icon>
<p class="empty-text">未找到 "<strong>{{ search }}</strong>" 相关菜单</p>
<p class="empty-tip">试试其他关键词或路径</p>
</div>
</el-scrollbar>
</div>
<div class="search-footer">
<span class="shortcut-item">
<kbd></kbd><kbd></kbd> 切换
</span>
<span class="shortcut-item">
<kbd></kbd> 选择
</span>
<span class="shortcut-item">
<kbd>Esc</kbd> 关闭
</span>
</div>
</el-dialog>
2025-08-21 14:11:58 +08:00
</div>
</template>
<script setup>
import Fuse from 'fuse.js'
import { getNormalPath } from '@/utils/ruoyi'
import { isHttp } from '@/utils/validate'
2026-07-28 16:26:07 +08:00
import useSettingsStore from '@/store/modules/settings'
2025-08-21 14:11:58 +08:00
import usePermissionStore from '@/store/modules/permission'
2026-07-28 16:26:07 +08:00
const search = ref('')
const options = ref([])
const searchPool = ref([])
const activeIndex = ref(-1)
const show = ref(false)
const fuse = ref(undefined)
const headerSearchSelectRef = ref(null)
const router = useRouter()
const theme = computed(() => useSettingsStore().theme)
const routes = computed(() => usePermissionStore().defaultRoutes)
2025-08-21 14:11:58 +08:00
function click() {
show.value = !show.value
if (show.value) {
2026-07-28 16:26:07 +08:00
options.value = searchPool.value
2025-08-21 14:11:58 +08:00
}
2026-07-28 16:26:07 +08:00
}
function onDialogOpened() {
nextTick(() => {
headerSearchSelectRef.value && headerSearchSelectRef.value.focus()
})
}
2025-08-21 14:11:58 +08:00
function close() {
headerSearchSelectRef.value && headerSearchSelectRef.value.blur()
2026-07-28 16:26:07 +08:00
search.value = ''
options.value = searchPool.value
2025-08-21 14:11:58 +08:00
show.value = false
2026-07-28 16:26:07 +08:00
activeIndex.value = -1
2025-08-21 14:11:58 +08:00
}
2026-07-28 16:26:07 +08:00
2025-08-21 14:11:58 +08:00
function change(val) {
2026-07-28 16:26:07 +08:00
const p = val.path
const query = val.query
if (isHttp(p)) {
2025-08-21 14:11:58 +08:00
// http(s):// 路径新窗口打开
2026-07-28 16:26:07 +08:00
const pindex = p.indexOf("http")
window.open(p.substr(pindex, p.length), "_blank")
2025-08-21 14:11:58 +08:00
} else {
if (query) {
2026-07-28 16:26:07 +08:00
router.push({ path: p, query: JSON.parse(query) })
2025-08-21 14:11:58 +08:00
} else {
2026-07-28 16:26:07 +08:00
router.push(p)
2025-08-21 14:11:58 +08:00
}
}
search.value = ''
2026-07-28 16:26:07 +08:00
options.value = searchPool.value
2025-08-21 14:11:58 +08:00
nextTick(() => {
show.value = false
})
}
2026-07-28 16:26:07 +08:00
2025-08-21 14:11:58 +08:00
function initFuse(list) {
fuse.value = new Fuse(list, {
shouldSort: true,
2026-07-28 16:26:07 +08:00
threshold: 0.2,
2025-08-21 14:11:58 +08:00
distance: 100,
minMatchCharLength: 1,
keys: [{
name: 'title',
weight: 0.7
}, {
name: 'path',
weight: 0.3
}]
})
}
2026-07-28 16:26:07 +08:00
2025-08-21 14:11:58 +08:00
function generateRoutes(routes, basePath = '', prefixTitle = []) {
let res = []
for (const r of routes) {
if (r.hidden) { continue }
2026-07-28 16:26:07 +08:00
const p = r.path.length > 0 && r.path[0] === '/' ? r.path : '/' + r.path
2025-08-21 14:11:58 +08:00
const data = {
path: !isHttp(r.path) ? getNormalPath(basePath + p) : r.path,
2026-07-28 16:26:07 +08:00
title: [...prefixTitle],
icon: ''
2025-08-21 14:11:58 +08:00
}
if (r.meta && r.meta.title) {
data.title = [...data.title, r.meta.title]
2026-07-28 16:26:07 +08:00
data.icon = r.meta.icon
if (r.redirect !== "noRedirect") {
2025-08-21 14:11:58 +08:00
res.push(data)
}
}
if (r.query) {
data.query = r.query
}
if (r.children) {
const tempRoutes = generateRoutes(r.children, data.path, data.title)
if (tempRoutes.length >= 1) {
res = [...res, ...tempRoutes]
}
}
}
return res
}
2026-07-28 16:26:07 +08:00
2025-08-21 14:11:58 +08:00
function querySearch(query) {
2026-07-28 16:26:07 +08:00
activeIndex.value = -1
2025-08-21 14:11:58 +08:00
if (query !== '') {
2026-07-28 16:26:07 +08:00
const q = query.toLowerCase()
const pathMatches = searchPool.value.filter(item =>
item.path.toLowerCase().includes(q)
)
const fuseMatches = fuse.value.search(query).map(item => item.item)
const merged = [...pathMatches]
fuseMatches.forEach(item => {
if (!merged.find(m => m.path === item.path)) {
merged.push(item)
}
})
options.value = merged
2025-08-21 14:11:58 +08:00
} else {
2026-07-28 16:26:07 +08:00
options.value = searchPool.value
2025-08-21 14:11:58 +08:00
}
}
2026-07-28 16:26:07 +08:00
function activeStyle(index) {
if (index !== activeIndex.value) return {}
return {
"background-color": theme.value,
"color": "#fff"
}
}
2025-08-21 14:11:58 +08:00
2026-07-28 16:26:07 +08:00
function navigateResult(direction) {
if (direction === "up") {
activeIndex.value = activeIndex.value <= 0 ? options.value.length - 1 : activeIndex.value - 1
} else if (direction === "down") {
activeIndex.value = activeIndex.value >= options.value.length - 1 ? 0 : activeIndex.value + 1
}
}
2025-08-21 14:11:58 +08:00
2026-07-28 16:26:07 +08:00
function selectActiveResult() {
if (options.value.length > 0 && activeIndex.value >= 0) {
change(options.value[activeIndex.value])
2025-08-21 14:11:58 +08:00
}
2026-07-28 16:26:07 +08:00
}
function highlightText(text) {
if (!text) return ''
if (!search.value) return text
const keyword = escapeRegExp(search.value)
const reg = new RegExp(`(${keyword})`, 'gi')
return text.replace(reg, '<span class="highlight">$1</span>')
}
function escapeRegExp(str) {
return str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')
}
onMounted(() => {
searchPool.value = generateRoutes(routes.value)
2025-08-21 14:11:58 +08:00
})
watch(searchPool, (list) => {
initFuse(list)
})
</script>
<style lang='scss' scoped>
.header-search {
font-size: 0 !important;
.search-icon {
cursor: pointer;
font-size: 18px;
vertical-align: middle;
}
.header-search-select {
font-size: 18px;
transition: width 0.2s;
width: 0;
overflow: hidden;
background: transparent;
border-radius: 0;
display: inline-block;
vertical-align: middle;
:deep(.el-input__inner) {
border-radius: 0;
border: 0;
padding-left: 0;
padding-right: 0;
box-shadow: none !important;
border-bottom: 1px solid #d9d9d9;
vertical-align: middle;
}
}
&.show {
.header-search-select {
width: 210px;
margin-left: 10px;
}
}
}
</style>