2022-01-12 17:59:58 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="global-search-bac" v-if="globalShow" @click.self="close">
|
|
|
|
|
<div class="global-search-box" :class="firstShow? '' : 'search-after'" @click.self="close">
|
|
|
|
|
<div class="global-search-input" :class="firstShow? '' : 'search-after'">
|
|
|
|
|
<i class="nz-icon nz-icon-search" v-loading="loading"></i>
|
2022-01-13 18:35:05 +08:00
|
|
|
<el-input v-model="searchStr" @input="searchAll" ref="searchStr" :placeholder="$t('globalSearch.placeholder')" clearable></el-input>
|
2022-01-12 17:59:58 +08:00
|
|
|
<div @click="close" class="global-search-cancel">
|
|
|
|
|
Cancel
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div v-loading="loading" class="global-search-content" v-if="!firstShow">
|
2022-01-13 18:35:05 +08:00
|
|
|
<div class="global-search-content-content" v-if="tableData.length">
|
|
|
|
|
<div class="global-search-content-left">
|
|
|
|
|
<ul
|
|
|
|
|
class="list"
|
|
|
|
|
ref="list"
|
|
|
|
|
v-infinite-scroll="load"
|
|
|
|
|
infinite-scroll-disabled="disabled">
|
|
|
|
|
<!-- 添加 tabindex 实现focus的效果 -1 - -4 已被使用 所以从-5 开始 -->
|
|
|
|
|
<li
|
|
|
|
|
v-for="(item,index) in tableData"
|
|
|
|
|
class="list-item"
|
|
|
|
|
:class="index === selectIndex ? 'lise-item-active' : ''"
|
|
|
|
|
:key="index"
|
|
|
|
|
:ref="'item'+ index"
|
|
|
|
|
@mouseenter="changeSelectIndex(index)"
|
|
|
|
|
:tabindex="(selectIndex+5) * -1"
|
|
|
|
|
>
|
|
|
|
|
<div class="list-item-content">
|
|
|
|
|
<i class="nz-icon" :class="selectIcon(item)" />
|
|
|
|
|
<HighlightText :keyword="searchStr" :overWriteStyle="{color: '#FA901C'}" style="vertical-align: middle" :title="item.name">{{item.name}}</HighlightText>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="list-item-sub" v-if="item.sub">
|
|
|
|
|
{{ item.sub }}
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="list-item" v-if="nextLoading" v-loading="nextLoading"></li>
|
|
|
|
|
<!-- <li class="list-item" v-if="noMore&&!nextLoading">没有更多了</li>-->
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="global-search-content-right">
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div v-else class="global-search-content" style="justify-content: center">
|
|
|
|
|
<div class="table-no-data">
|
|
|
|
|
<svg class="icon" aria-hidden="true">
|
|
|
|
|
<use xlink:href="#nz-icon-no-data-list"></use>
|
|
|
|
|
</svg>
|
|
|
|
|
<div class="table-no-data__title">No results found</div>
|
|
|
|
|
</div>
|
2022-01-12 17:59:58 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="global-search-footer">
|
2022-01-13 18:35:05 +08:00
|
|
|
<div class="global-search-footer-left">
|
|
|
|
|
<div class="keyboard">
|
|
|
|
|
<i class="nz-icon nz-icon-huiche" />
|
|
|
|
|
</div>
|
|
|
|
|
{{$t('globalSearch.toSelect')}}
|
|
|
|
|
<div class="keyboard" style="margin-left: 20px">
|
|
|
|
|
<i class="nz-icon nz-icon-xiangshang" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="keyboard">
|
|
|
|
|
<i class="nz-icon nz-icon-xiangxia" />
|
|
|
|
|
</div>
|
|
|
|
|
{{$t('globalSearch.toNavigate')}}
|
|
|
|
|
<div class="keyboard" style="margin-left: 20px">
|
|
|
|
|
<i class="nz-icon nz-icon-esc" style="font-size: 12px;"/>
|
|
|
|
|
</div>
|
|
|
|
|
{{$t('globalSearch.toEsc')}}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="global-search-footer-right">
|
|
|
|
|
<div class="scope-box" v-for="item in scope" :class="item.isSelect ? 'is-select' : ''" :key="item.type">
|
|
|
|
|
<i class="nz-icon" :class="selectIcon(item)" />
|
|
|
|
|
{{stat[item.type] || 0}}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-01-12 17:59:58 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2022-01-13 18:35:05 +08:00
|
|
|
import HighlightText from 'vue-highlight-text'
|
|
|
|
|
|
2022-01-12 17:59:58 +08:00
|
|
|
export default {
|
|
|
|
|
name: 'globalSearch',
|
2022-01-13 18:35:05 +08:00
|
|
|
components: {
|
|
|
|
|
HighlightText
|
|
|
|
|
},
|
2022-01-12 17:59:58 +08:00
|
|
|
computed: {
|
|
|
|
|
globalShow () {
|
|
|
|
|
return this.$store.getters.getGlobalShow
|
2022-01-13 18:35:05 +08:00
|
|
|
},
|
|
|
|
|
noMore () {
|
|
|
|
|
console.log((this.pageObj.pageNo * this.pageObj.pageSize) >= this.pageObj.total)
|
|
|
|
|
return (this.pageObj.pageNo * this.pageObj.pageSize) >= this.pageObj.total
|
|
|
|
|
},
|
|
|
|
|
disabled () {
|
|
|
|
|
return this.loading || this.noMore
|
2022-01-12 17:59:58 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
firstShow: true,
|
|
|
|
|
searchStr: '',
|
|
|
|
|
loading: false,
|
2022-01-13 18:35:05 +08:00
|
|
|
nextLoading: false,
|
|
|
|
|
selectIndex: '',
|
|
|
|
|
tableData: [],
|
|
|
|
|
pageObj: {
|
|
|
|
|
pageNo: 1,
|
|
|
|
|
pageSize: 50,
|
|
|
|
|
total: 50
|
|
|
|
|
},
|
|
|
|
|
obj: {},
|
|
|
|
|
// scope: ['asset', 'datacenter', 'project', 'module', 'endpoint', 'alertrule'],
|
|
|
|
|
scope: [
|
|
|
|
|
{
|
|
|
|
|
type: 'asseet',
|
|
|
|
|
isSelect: true
|
|
|
|
|
}, {
|
|
|
|
|
type: 'datacenter',
|
|
|
|
|
isSelect: true
|
|
|
|
|
}, {
|
|
|
|
|
type: 'project',
|
|
|
|
|
isSelect: true
|
|
|
|
|
}, {
|
|
|
|
|
type: 'module',
|
|
|
|
|
isSelect: true
|
|
|
|
|
}, {
|
|
|
|
|
type: 'endpoint',
|
|
|
|
|
isSelect: true
|
|
|
|
|
}, {
|
|
|
|
|
type: 'alertrule',
|
|
|
|
|
isSelect: true
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
timer: null,
|
|
|
|
|
searchTimer: null,
|
|
|
|
|
isKeyDown: false,
|
|
|
|
|
stat: {
|
|
|
|
|
|
|
|
|
|
}
|
2022-01-12 17:59:58 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
watch: {
|
|
|
|
|
globalShow: {
|
|
|
|
|
immediate: true,
|
|
|
|
|
deep: true,
|
|
|
|
|
handler (n) {
|
|
|
|
|
if (n) {
|
|
|
|
|
this.bindEvent()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
close () {
|
|
|
|
|
this.searchStr = ''
|
|
|
|
|
this.firstShow = true
|
2022-01-13 18:35:05 +08:00
|
|
|
this.selectIndex = 0
|
|
|
|
|
this.pageObj.pageNo = 1
|
|
|
|
|
this.tableData = []
|
2022-01-12 17:59:58 +08:00
|
|
|
this.$store.commit('setGlobalShow', false)
|
|
|
|
|
this.unbindEvent()
|
|
|
|
|
},
|
2022-01-13 18:35:05 +08:00
|
|
|
selectIcon (item) {
|
|
|
|
|
// console.log(item)
|
|
|
|
|
switch (item.type) {
|
|
|
|
|
case 'asset' : return 'nz-icon-overview-project'
|
|
|
|
|
case 'datacenter' : return 'nz-icon-model'
|
|
|
|
|
case 'project' : return 'nz-icon-project'
|
|
|
|
|
case 'module' : return 'nz-icon-overview-module'
|
|
|
|
|
case 'endpoint' : return 'nz-icon-overview-endpoint'
|
|
|
|
|
case 'alertrule' : return 'nz-icon-Alertrule'
|
|
|
|
|
}
|
|
|
|
|
return 'nz-icon-module5'
|
|
|
|
|
},
|
2022-01-12 17:59:58 +08:00
|
|
|
bindEvent () {
|
|
|
|
|
window.addEventListener('keydown', this.keyDown)
|
|
|
|
|
},
|
|
|
|
|
unbindEvent () {
|
|
|
|
|
this.selectIndex = ''
|
|
|
|
|
window.removeEventListener('keydown', this.keyDown)
|
|
|
|
|
},
|
2022-01-13 18:35:05 +08:00
|
|
|
scroll () {
|
|
|
|
|
// const ulBox = this.$refs.list
|
|
|
|
|
const liBox = this.$refs['item' + this.selectIndex][0]
|
|
|
|
|
// const liHeight = liBox.clientHeight
|
|
|
|
|
// const height = ulBox.clientHeight - liHeight
|
|
|
|
|
// const offsetTop = liBox.offsetTop
|
|
|
|
|
liBox.focus()
|
|
|
|
|
// if ((this.selectIndex + 1) * liHeight > height) {
|
|
|
|
|
// ulBox.scrollTop = (this.selectIndex + 1) * liHeight - height
|
|
|
|
|
// } else {
|
|
|
|
|
// ulBox.scrollTop = 0
|
|
|
|
|
// }
|
|
|
|
|
// console.log(height, liHeight, offsetTop, ulBox.scrollTop)
|
|
|
|
|
},
|
|
|
|
|
changeSelectIndex (index) {
|
|
|
|
|
console.log('changeSelectIndex', this.isKeyDown)
|
|
|
|
|
if (this.isKeyDown) {
|
|
|
|
|
this.getItemInfo()
|
2022-01-12 17:59:58 +08:00
|
|
|
return
|
|
|
|
|
}
|
2022-01-13 18:35:05 +08:00
|
|
|
this.selectIndex = index
|
|
|
|
|
this.getItemInfo()
|
|
|
|
|
},
|
|
|
|
|
keyDown (e) {
|
|
|
|
|
console.log('keyDown')
|
|
|
|
|
// console.log(e, e.target, e.keyCode)
|
|
|
|
|
if (e.keyCode === 13) {
|
2022-01-12 17:59:58 +08:00
|
|
|
this.jumpTo()
|
|
|
|
|
}
|
2022-01-13 18:35:05 +08:00
|
|
|
this.isKeyDown = true
|
|
|
|
|
if (e.keyCode === 40) {
|
|
|
|
|
if (this.selectIndex === this.tableData.length - 1) {
|
|
|
|
|
this.isKeyDown = false
|
|
|
|
|
return
|
|
|
|
|
}
|
2022-01-12 17:59:58 +08:00
|
|
|
this.selectIndex++
|
2022-01-13 18:35:05 +08:00
|
|
|
this.scroll()
|
|
|
|
|
this.changeSelectIndex(this.selectIndex)
|
2022-01-12 17:59:58 +08:00
|
|
|
}
|
2022-01-13 18:35:05 +08:00
|
|
|
if (e.keyCode === 38) {
|
|
|
|
|
if (this.selectIndex === 0) {
|
|
|
|
|
this.isKeyDown = false
|
|
|
|
|
return
|
|
|
|
|
}
|
2022-01-12 17:59:58 +08:00
|
|
|
this.selectIndex--
|
2022-01-13 18:35:05 +08:00
|
|
|
this.scroll()
|
|
|
|
|
this.changeSelectIndex(this.selectIndex)
|
|
|
|
|
}
|
|
|
|
|
if (e.keyCode === 27) {
|
|
|
|
|
this.close()
|
|
|
|
|
}
|
|
|
|
|
if (this.timer) {
|
|
|
|
|
clearInterval(this.timer)
|
|
|
|
|
this.timer = null
|
2022-01-12 17:59:58 +08:00
|
|
|
}
|
2022-01-13 18:35:05 +08:00
|
|
|
this.timer = setTimeout(() => {
|
|
|
|
|
this.isKeyDown = false
|
|
|
|
|
}, 200)
|
|
|
|
|
},
|
|
|
|
|
jumpTo () {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
getItemInfo () {
|
|
|
|
|
this.obj = {}
|
2022-01-12 17:59:58 +08:00
|
|
|
},
|
|
|
|
|
searchAll () {
|
2022-01-13 18:35:05 +08:00
|
|
|
if (this.searchTimer) {
|
|
|
|
|
clearInterval(this.searchTimer)
|
|
|
|
|
this.searchTimer = null
|
|
|
|
|
}
|
2022-01-12 17:59:58 +08:00
|
|
|
this.loading = true
|
2022-01-13 18:35:05 +08:00
|
|
|
this.searchTimer = setTimeout(() => {
|
|
|
|
|
this.selectIndex = 0
|
|
|
|
|
this.pageObj.pageNo = 1
|
|
|
|
|
this.tableData = []
|
|
|
|
|
this.getData()
|
|
|
|
|
}, 500)
|
|
|
|
|
},
|
|
|
|
|
load () {
|
|
|
|
|
this.pageObj.pageNo++
|
|
|
|
|
this.nextLoading = true
|
|
|
|
|
this.getData()
|
|
|
|
|
},
|
|
|
|
|
getData () {
|
|
|
|
|
const param = {
|
|
|
|
|
pageNo: this.pageObj.pageNo,
|
|
|
|
|
pageSize: this.pageObj.pageSize,
|
|
|
|
|
scope: this.scope.filter(item => item.isSelect).map(item => item.type).join(','),
|
|
|
|
|
q: this.searchStr
|
|
|
|
|
}
|
|
|
|
|
if (!this.searchStr) {
|
|
|
|
|
this.firstShow = true
|
|
|
|
|
this.loading = false
|
|
|
|
|
this.nextLoading = false
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
this.$get('/stat/search', param).then(res => {
|
|
|
|
|
this.firstShow = false
|
|
|
|
|
this.nextLoading = false
|
|
|
|
|
if (res.code === 200) {
|
|
|
|
|
this.tableData = this.tableData.concat(res.data.list)
|
|
|
|
|
this.pageObj.total = res.data.total
|
|
|
|
|
this.stat = res.stat
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.msg)
|
|
|
|
|
}
|
|
|
|
|
this.loading = false
|
|
|
|
|
})
|
2022-01-12 17:59:58 +08:00
|
|
|
}
|
2022-01-13 18:35:05 +08:00
|
|
|
},
|
|
|
|
|
destroyed () {
|
|
|
|
|
window.removeEventListener('keydown', this.keyDown)
|
2022-01-12 17:59:58 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
|
|
</style>
|