dataease/frontend/src/views/panel/GrantAuth/shareTree.vue

224 lines
6.1 KiB
Vue
Raw Normal View History

2021-03-18 18:30:10 +08:00
<template>
2021-11-09 18:23:45 +08:00
<el-col style="padding: 0 5px 0 5px;">
<el-row>
2021-11-10 18:04:20 +08:00
<span class="header-title">{{ $t('panel.share_in') }}</span>
2021-11-09 18:23:45 +08:00
<div class="block" style="margin-top:8px;">
2021-11-10 18:04:20 +08:00
<el-tree :data="datas" :props="defaultProps" :highlight-current="true" node-key="name" :default-expanded-keys="expandNodes" @node-click="handleNodeClick">
<span slot-scope="{ data }" class="custom-tree-node father">
<span style="display: flex; flex: 1 1 0%; width: 0px;" :class="!!data.msgNode ? 'msg-node-class': ''">
<span v-if="!!data.id">
<svg-icon icon-class="panel" class="ds-icon-scene" />
</span>
<span style="margin-left: 6px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;">{{ data.name }}</span>
</span>
2021-11-29 13:52:35 +08:00
2021-11-09 18:23:45 +08:00
</span>
</el-tree>
</div>
</el-row>
2021-03-18 18:30:10 +08:00
2021-11-09 18:23:45 +08:00
<el-row>
2021-11-10 18:04:20 +08:00
<span class="header-title">{{ $t('panel.share_out') }}</span>
2021-11-09 18:23:45 +08:00
<div class="block" style="margin-top:8px;">
2021-11-29 13:52:35 +08:00
<el-tree :data="outDatas" :props="defaultProps" :highlight-current="true" node-key="name" :default-expand-all="true">
2021-11-10 18:04:20 +08:00
<span slot-scope="{ data }" class="custom-tree-node father">
2021-11-29 13:52:35 +08:00
<span style="display: flex; flex: 1 1 0%; width: 0px;" @click="viewMyShare(data)">
2021-11-09 18:23:45 +08:00
<span v-if="!!data.id">
2021-11-10 18:04:20 +08:00
<svg-icon icon-class="panel" class="ds-icon-scene" />
</span>
<span style="margin-left: 6px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;">{{ data.name }}</span>
</span>
<span class="child">
<span class="el-dropdown-link">
2021-11-09 18:23:45 +08:00
<el-button
2021-11-10 18:04:20 +08:00
icon="el-icon-delete"
2021-11-09 18:23:45 +08:00
type="text"
2021-11-10 18:04:20 +08:00
size="small"
@click="removeCurrent(data)"
2021-11-09 18:23:45 +08:00
/>
</span>
</span>
</span>
2021-11-10 18:04:20 +08:00
2021-11-09 18:23:45 +08:00
</el-tree>
</div>
</el-row>
</el-col>
2021-03-18 18:30:10 +08:00
</template>
<script>
2021-11-10 18:04:20 +08:00
import { loadTree, loadShareOutTree, removeShares } from '@/api/panel/share'
2021-04-20 14:19:10 +08:00
import { uuid } from 'vue-uuid'
import { get } from '@/api/panel/panel'
import bus from '@/utils/bus'
2021-03-18 18:30:10 +08:00
export default {
name: 'ShareTree',
props: {
msgPanelIds: {
type: Array,
default: null
}
},
2021-03-18 18:30:10 +08:00
data() {
return {
datas: [],
2021-03-18 18:30:10 +08:00
defaultProps: {
children: 'children',
label: 'name'
},
2021-11-09 18:23:45 +08:00
expandNodes: [],
outDatas: []
2021-03-18 18:30:10 +08:00
}
},
2021-11-29 13:52:35 +08:00
computed: {
panelInfo() {
return this.$store.state.panel.panelInfo
}
},
2021-03-18 18:30:10 +08:00
created() {
2021-11-29 13:52:35 +08:00
bus.$on('refresh-my-share-out', () => {
this.initOutData().then(res => {
this.outDatas = res.data
this.setMainNull()
})
})
this.initData().then(res => {
this.datas = res.data
if (this.msgPanelIds && this.msgPanelIds.length > 0) {
this.expandMsgNode(this.msgPanelIds)
}
})
2021-11-09 18:23:45 +08:00
this.initOutData().then(res => {
this.outDatas = res.data
})
2021-03-18 18:30:10 +08:00
},
2021-03-18 18:30:10 +08:00
methods: {
initData() {
const param = {}
return loadTree(param)
2021-03-18 18:30:10 +08:00
},
2021-11-09 18:23:45 +08:00
initOutData() {
return loadShareOutTree()
},
2021-03-18 18:30:10 +08:00
handleNodeClick(data) {
2021-04-20 14:19:10 +08:00
get('panel/group/findOne/' + data.id).then(response => {
this.$store.commit('setComponentData', this.resetID(JSON.parse(response.data.panelData)))
this.$store.commit('setCanvasStyle', JSON.parse(response.data.panelStyle))
this.$store.dispatch('panel/setPanelInfo', data)
2021-11-10 18:04:20 +08:00
bus.$emit('set-panel-show-type', 1)
})
},
viewMyShare(data) {
get('panel/group/findOne/' + data.id).then(response => {
this.$store.commit('setComponentData', this.resetID(JSON.parse(response.data.panelData)))
this.$store.commit('setCanvasStyle', JSON.parse(response.data.panelStyle))
this.$store.dispatch('panel/setPanelInfo', data)
bus.$emit('set-panel-show-type', 2)
2021-04-20 14:19:10 +08:00
})
},
resetID(data) {
2021-05-20 16:45:27 +08:00
if (data) {
2021-05-05 22:14:23 +08:00
data.forEach(item => {
2021-05-20 16:45:27 +08:00
item.type !== 'custom' && (item.id = uuid.v1())
2021-05-05 22:14:23 +08:00
})
}
2021-04-20 14:19:10 +08:00
return data
},
expandMsgNode(panelIds) {
2021-07-06 15:24:34 +08:00
// console.log(panelIds)
this.$nextTick(() => {
this.getMsgNodes(panelIds)
})
},
getMsgNodes(panelIds) {
this.datas.forEach(item => {
if (item.children && item.children.length > 0) {
item.children.forEach(node => {
if (panelIds.includes(node.id)) {
node.msgNode = true
this.expandNodes.push(item.name)
}
})
}
})
2021-11-10 18:04:20 +08:00
},
removeCurrent(node) {
const param = {
panelId: node.id
}
this.$confirm(this.$t('panel.remove_share_confirm'), '', {
confirmButtonText: this.$t('commons.confirm'),
cancelButtonText: this.$t('commons.cancel'),
type: 'warning'
}).then(() => {
removeShares(param).then(res => {
2021-11-29 13:52:35 +08:00
this.panelInfo && this.panelInfo.id && node.id === this.panelInfo.id && this.setMainNull()
2021-11-10 18:04:20 +08:00
this.initOutData().then(res => {
this.outDatas = res.data
})
this.$success(this.$t('commons.delete_success'))
})
}).catch(() => {
this.$message({
type: 'info',
message: this.$t('commons.delete_cancelled')
})
})
2021-11-29 13:52:35 +08:00
},
setMainNull() {
this.$store.dispatch('panel/setPanelInfo', { id: null, name: '', preStyle: null })
2021-03-18 18:30:10 +08:00
}
2021-03-18 18:30:10 +08:00
}
}
</script>
<style lang="scss" scoped>
2021-11-09 18:23:45 +08:00
.header-title {
font-size: 14px;
flex: 1;
color: var(--TextPrimary, #606266);
font-weight: bold;
display: block;
height: 100%;
/*line-height: 36px;*/
}
.msg-node-class {
color: red;
>>> i{
color: red;
}
}
2021-11-10 18:04:20 +08:00
.custom-tree-node {
flex: 1;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 14px;
padding-right:8px;
}
.custom-tree-node-list {
flex: 1;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 14px;
padding:0 8px;
}
.father .child {
/*display: none;*/
visibility: hidden;
}
.father:hover .child {
/*display: inline;*/
visibility: visible;
}
</style>