feat:合并dev-3.3-starred

This commit is contained in:
18317449825
2022-05-26 19:03:41 +08:00
3 changed files with 209 additions and 12 deletions

View File

@@ -2,10 +2,44 @@
<el-popover :placement="placement" :popper-class="chartBox === true ? 'nz-pop nz-pop-select-panel right-box-select-top nz-pop-select-panel__dropdown' : 'nz-pop nz-pop-select-panel right-box-select-top right-public-box-dropdown-top nz-pop-select-panel__dropdown'" ref="selectPanelPopBox" transition="slide" v-model="popBox.show" :width="chartBox === true ? 626 : 310" :disabled="disabled"> <el-popover :placement="placement" :popper-class="chartBox === true ? 'nz-pop nz-pop-select-panel right-box-select-top nz-pop-select-panel__dropdown' : 'nz-pop nz-pop-select-panel right-box-select-top right-public-box-dropdown-top nz-pop-select-panel__dropdown'" ref="selectPanelPopBox" transition="slide" v-model="popBox.show" :width="chartBox === true ? 626 : 310" :disabled="disabled">
<div> <div>
<div class="pop-item-wider"> <div class="pop-item-wider">
<slot name="header"></slot> <slot name="header"></slot>
<div :class="{'movable': !panelLock}" class="select-panel-tree"> <div :class="{'movable': !panelLock}" class="select-panel-tree">
<el-tree
v-show="starredData[0].children.length"
:data="starredData"
:expand-on-click-node="false"
:filter-node-method="filterNode"
:props="{label: 'name', children: 'children'}"
@node-click="selectPanel"
default-expand-all
node-key="id"
ref="starredTree"
style="margin-bottom:5px"
class="starred-tree"
>
<div class="tree--node" slot-scope="{ node, data }">
<span :title="data.chartNum?node.label + ' (' + data.chartNum +' charts':''">{{ node.label }}</span>
<el-row class="block-col-2" style="margin-left:10px">
<el-col>
<el-dropdown v-if="!panelLock" placement="bottom-end" trigger="click" style="margin-right:10px">
<span class="el-dropdown-link tree--operation" @click.stop><i class="nz-icon nz-icon-more1"></i></span>
<el-dropdown-menu class="right-box-select-top" slot="dropdown" v-has="['main_edit', 'main_delete']">
<el-dropdown-item>
<div @click="editPanel(data)" v-has="'main_edit'"><i class="nz-icon nz-icon-edit"></i>{{$t('overall.edit')}}</div>
</el-dropdown-item>
<el-dropdown-item>
<div @click="deletePanel(data)" v-has="'main_delete'"><i class="nz-icon nz-icon-delete"></i>{{$t('overall.delete')}}</div>
</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
<template v-if="node.label!=='Starred'">
<i v-if="data.starred" class="el-rate__icon el-icon-star-on" @click.stop="delStarred(data)"></i>
<i v-else class="el-rate__icon el-icon-star-off" @click.stop="addStarred(data)"></i>
</template>
</el-col>
</el-row>
</div>
</el-tree>
<el-tree <el-tree
:data="panelData" :data="panelData"
:draggable="!panelLock" :draggable="!panelLock"
@@ -22,9 +56,9 @@
ref="panelTree"> ref="panelTree">
<div class="tree--node" slot-scope="{ node, data }"> <div class="tree--node" slot-scope="{ node, data }">
<span :title="node.label + ' (' + data.chartNum +' charts' ">{{ node.label }}</span> <span :title="node.label + ' (' + data.chartNum +' charts' ">{{ node.label }}</span>
<el-row class="block-col-2" v-if="!panelLock" style="width: 35px;"> <el-row class="block-col-2" style="margin-left:10px">
<el-col> <el-col>
<el-dropdown placement="bottom-end" trigger="click"> <el-dropdown v-if="!panelLock" placement="bottom-end" trigger="click" style="margin-right:10px">
<span class="el-dropdown-link tree--operation" @click.stop><i class="nz-icon nz-icon-more1"></i></span> <span class="el-dropdown-link tree--operation" @click.stop><i class="nz-icon nz-icon-more1"></i></span>
<el-dropdown-menu class="right-box-select-top" slot="dropdown" v-has="['main_edit', 'main_delete']"> <el-dropdown-menu class="right-box-select-top" slot="dropdown" v-has="['main_edit', 'main_delete']">
<el-dropdown-item> <el-dropdown-item>
@@ -35,6 +69,8 @@
</el-dropdown-item> </el-dropdown-item>
</el-dropdown-menu> </el-dropdown-menu>
</el-dropdown> </el-dropdown>
<i v-if="data.starred" class="el-rate__icon el-icon-star-on" @click.stop="delStarred(data)"></i>
<i v-else class="el-rate__icon el-icon-star-off" @click.stop="addStarred(data)"></i>
</el-col> </el-col>
</el-row> </el-row>
</div> </div>
@@ -52,6 +88,7 @@
</template> </template>
<script> <script>
import bus from '@/libs/bus'
export default { export default {
name: 'selectPanel', name: 'selectPanel',
props: { props: {
@@ -72,6 +109,7 @@ export default {
immediate: true, immediate: true,
handler (n) { handler (n) {
this.$refs.panelTree && this.$refs.panelTree.filter(n) this.$refs.panelTree && this.$refs.panelTree.filter(n)
this.$refs.starredTree && this.$refs.starredTree.filter(n)
} }
}, },
showPanel: { showPanel: {
@@ -95,10 +133,91 @@ export default {
data () { data () {
return { return {
popBox: { show: false }, popBox: { show: false },
panel: { id: 0, name: '' } panel: { id: 0, name: '' },
starredData: [
{
name: 'Starred',
children: []
}
],
tempArr: []
} }
}, },
methods: { methods: {
// 获取收藏的列表
async getStarred () {
const params = {
type: 'panel'
}
const response = await this.$get('/sys/user/starred', params)
if (response.code === 200) {
this.tempArr = []
this.recursionStarred(this.panelData, response.data)
this.starredData[0].children = this.formatStarred(this.tempArr)
this.$emit('refreshStarred', this.panelData)
}
},
// 比对收藏的列表和全部列表 改变状态
recursionStarred (allList, starredList) {
allList.forEach((item) => {
item.starred = false
starredList.forEach((subItem) => {
// 判断全部列表每一项的id和收藏列表每一项的id是否相等
if (item.id === subItem.tid) {
if (this.tempArr.every(val => val.id !== item.id)) {
item.starred = true
this.tempArr.push({
...item,
children: []
})
}
}
})
if (item.children && item.children.length) {
this.recursionStarred(item.children, starredList)
}
})
},
// 格式化收藏列表 (树形)
formatStarred (list) {
const arr = JSON.parse(JSON.stringify(list))
arr.reverse()
for (let i = 0; i < arr.length; i++) {
if (arr[i].pid) {
// 找到父级所在下标
const parentIndex = arr.findIndex(subItem => subItem.id === arr[i].pid)
if (parentIndex > -1) {
arr[parentIndex].children.unshift(arr[i])
arr.splice(i, 1)
i--
}
}
}
return arr.reverse()
},
// 新增收藏
addStarred: bus.debounceFn(function (data) {
const params = {
type: 'panel',
tid: data.id
}
this.$post('/sys/user/starred', params).then(response => {
if (response.code === 200) {
this.getStarred()
}
})
},
300, true),
// 删除收藏
delStarred: bus.debounceFn(function (data) {
this.$delete('/sys/user/starred?type=panel&tid=' + data.id).then(response => {
if (response.code === 200) {
this.getStarred()
}
})
},
300, true),
/* /*
* node: 被拖的节点 * node: 被拖的节点
* relative: 发生关系的节点 * relative: 发生关系的节点
@@ -119,8 +238,8 @@ export default {
updateWeight () { updateWeight () {
const toUpdate = [] const toUpdate = []
let count = 0 let count = 0
handler(this.panelData)
handler(this.panelData)
function handler (panelData) { function handler (panelData) {
panelData.forEach(panel => { panelData.forEach(panel => {
panel.weight = count++ panel.weight = count++
@@ -130,7 +249,7 @@ export default {
} }
}) })
} }
this.getStarred()
this.$put('visual/panel/tree', toUpdate) this.$put('visual/panel/tree', toUpdate)
}, },
deletePanel (data) { deletePanel (data) {
@@ -144,6 +263,9 @@ export default {
}, },
// 确认选择某个节点,与父组件交互 // 确认选择某个节点,与父组件交互
selectPanel (data, checked, child) { selectPanel (data, checked, child) {
if (data.name === 'Starred') {
return false
}
this.$emit('selectPanel', data) this.$emit('selectPanel', data)
this.$refs.panelTree.setCurrentKey(data) this.$refs.panelTree.setCurrentKey(data)
this.esc() this.esc()
@@ -151,3 +273,16 @@ export default {
} }
} }
</script> </script>
<style scoped>
.starred-tree>>>.el-tree__empty-block{
display: none;
}
.el-rate__icon{
cursor: pointer;
margin-right: 0px;
}
.el-icon-star-on{
color:#FF9219;
transform: scale(1.2);
}
</style>

View File

@@ -13,7 +13,7 @@
</div> </div>
<template v-else> <template v-else>
<div class="top-tool-left" style="cursor: pointer;"> <div class="top-tool-left" style="cursor: pointer;">
<select-panel ref="selectPanel" :filter-panel="filterPanel" :panel-data="panelData" :panel-lock="panelLock" :placement="'bottom-start'" <select-panel ref="selectPanel" @refreshStarred="refreshStarred" :filter-panel="filterPanel" :panel-data="panelData" :panel-lock="panelLock" :placement="'bottom-start'"
:show-panel="showPanel" style="display: inline-block;padding: 0" @deletePanel="del" @editPanel="edit" @selectPanel="panelChange"> :show-panel="showPanel" style="display: inline-block;padding: 0" @deletePanel="del" @editPanel="edit" @selectPanel="panelChange">
<template v-slot:header> <template v-slot:header>
<div class="panel-select-header"> <div class="panel-select-header">
@@ -24,7 +24,9 @@
<template v-slot:trigger> <template v-slot:trigger>
<i style="color: #BEBEBE" class="el-icon-menu"></i> <i style="color: #BEBEBE" class="el-icon-menu"></i>
<span :title="showPanel.name + ' (' + showPanel.chartNum +' charts' " class="show-panel-name">{{showPanel.name}}</span> <span :title="showPanel.name + ' (' + showPanel.chartNum +' charts' " class="show-panel-name">{{showPanel.name}}</span>
<i style="font-size: 12px;color: #BEBEBE;" class="nz-icon nz-icon-arrow-down"></i> <i @click.stop="delStarred(showPanel)" v-if="showPanel.starred" class="el-rate__icon el-icon-star-on"></i>
<i @click.stop="addStarred(showPanel)" v-else class="el-rate__icon el-icon-star-off"></i>
<i style="font-size: 12px;color: #BEBEBE;" class="nz-icon nz-icon-arrow-down"></i>
</template> </template>
<template v-slot:tail> <template v-slot:tail>
<div class="panel-select-tail"> <div class="panel-select-tail">
@@ -295,6 +297,26 @@ export default {
} }
}, },
methods: { methods: {
refreshStarred (value) {
// 重新赋值,否则树形菜单不更新
this.panelData = JSON.parse(JSON.stringify(value))
this.$nextTick(() => {
this.$refs.selectPanel.$refs.starredTree.filter(this.filterPanel)
this.$refs.selectPanel.$refs.panelTree.filter(this.filterPanel)
this.$refs.selectPanel.$refs.panelTree.setCurrentKey(this.showPanel)
})
// // 判断当前页面收藏状态
const starredArr = this.$refs.selectPanel.tempArr
this.showPanel.starred = starredArr.some(item => item.id === this.showPanel.id)
},
// 新增收藏
addStarred (data) {
this.$refs.selectPanel.addStarred(data)
},
// 删除收藏
delStarred (data) {
this.$refs.selectPanel.delStarred(data)
},
// 刷新 // 刷新
refreshPanel () { refreshPanel () {
this.getData(this.filter) this.getData(this.filter)
@@ -355,12 +377,12 @@ export default {
return return
} }
this.rightBox.panel.show = true this.rightBox.panel.show = true
this.$refs.panelBox.show(true) // this.$refs.panelBox.show(true)
this.panel = { this.panel = {
id: '', id: '',
name: '' name: ''
} }
this.$refs.panelBox.setTitle(this.$t('dashboard.panel.createPanelTitle')) // this.$refs.panelBox.setTitle(this.$t('dashboard.panel.createPanelTitle'))
}, },
panelReload (clearShowPanel) { panelReload (clearShowPanel) {
this.getTableData(clearShowPanel) this.getTableData(clearShowPanel)
@@ -637,8 +659,11 @@ export default {
const vm = this const vm = this
this.$get('visual/panel?type=dashboard&pageSize=-1').then(response => { this.$get('visual/panel?type=dashboard&pageSize=-1').then(response => {
if (response.code === 200) { if (response.code === 200) {
this.panelData = JSON.parse(JSON.stringify(response.data.list))
let isInitData = false let isInitData = false
this.panelData = JSON.parse(JSON.stringify(response.data.list))
this.$nextTick(() => {
this.$refs.selectPanel.getStarred()
})
if (response.data.list.length > 0) { if (response.data.list.length > 0) {
if (this.$store.state.showPanel.id > 0 && this.$store.state.showPanel.name) { if (this.$store.state.showPanel.id > 0 && this.$store.state.showPanel.name) {
this.showPanel = JSON.parse(JSON.stringify(this.$store.state.showPanel)) this.showPanel = JSON.parse(JSON.stringify(this.$store.state.showPanel))
@@ -984,3 +1009,14 @@ export default {
} }
} }
</script> </script>
<style scoped>
.el-rate__icon{
cursor: pointer;
margin-right: 0px;
transform: translateY(1px);
}
.el-icon-star-on{
color:#FF9219;
transform: translateY(1px) scale(1.2);
}
</style>

View File

@@ -248,6 +248,32 @@ export default new Vue({
}, delay) }, delay)
} }
}, },
/**
* @desc 防抖函数
* @param {需要防抖的函数} func
* @param {延迟时间} wait
* @param {是否立即执行} immediate
*/
debounceFn (func, wait, immediate) {
let timeout
return function (...args) {
const context = this
if (timeout) clearTimeout(timeout)
if (immediate) {
const callNow = !timeout
timeout = setTimeout(function () {
timeout = null
}, wait)
if (callNow) func.apply(context, args)
} else {
timeout = setTimeout(function () {
func.apply(context, args)
}, wait)
}
}
},
UTCTimeToConfigTimezone (utcTime) { UTCTimeToConfigTimezone (utcTime) {
let offset = localStorage.getItem('nz-sys-timezone') let offset = localStorage.getItem('nz-sys-timezone')
offset = moment.tz(offset).format('Z') offset = moment.tz(offset).format('Z')