dataease-dm/frontend/src/views/panel/edit/index.vue

350 lines
9.7 KiB
Vue
Raw Normal View History

2021-03-22 19:05:35 +08:00
<template>
<el-container>
<el-header class="de-header">
<el-row class="panel-design-head">
2021-03-29 14:57:04 +08:00
<span style="float: left;line-height: 35px; color: gray">
名称{{ panelInfo.name || '测试仪表板' }}
2021-03-22 19:05:35 +08:00
</span>
2021-03-29 14:57:04 +08:00
<!--横向工具栏-->
2021-03-26 12:26:48 +08:00
<Toolbar />
2021-03-22 19:05:35 +08:00
</el-row>
</el-header>
<de-container>
<de-aside-container class="ms-aside-container">
<div style="width: 60px; left: 0px; top: 0px; bottom: 0px; position: absolute">
<div style="width: 60px;height: 100%;overflow: hidden auto;position: relative;margin: 0px auto;">
<!-- 视图图表 -->
<div class="button-div-class" style=" width: 24px;height: 24px;text-align: center;line-height: 1;position: relative;margin: 32px auto 0px;font-size:150%;">
<el-button circle class="el-icon-circle-plus-outline" size="mini" @click="showPanel(0)" />
</div>
<!-- 视图文字 -->
<div style="position: relative; margin: 18px auto 30px">
<div style="max-width: 100%;text-align: center;white-space: nowrap;text-overflow: ellipsis;position: relative;flex-shrink: 0;">
视图
</div>
</div>
<!-- 视图分割线 -->
<div style="height: 1px; position: relative; margin: 0px auto;background-color:#E6E6E6;">
<div style="width: 60px;height: 1px;line-height: 1px;text-align: center;white-space: pre;text-overflow: ellipsis;position: relative;flex-shrink: 0;" />
</div>
<!-- 过滤组件 -->
<div tabindex="-1" style="position: relative; margin: 20px auto">
<div style="height: 60px; position: relative">
<div class="button-div-class" style=" text-align: center;line-height: 1;position: absolute;inset: 0px 0px 45px; ">
<el-button circle class="el-icon-s-tools" size="mini" @click="showPanel(1)" />
</div>
<div style=" position: absolute;left: 0px;right: 0px;bottom: 10px; height: 16px;">
<div style=" max-width: 100%;text-align: center;white-space: nowrap;text-overflow: ellipsis;position: relative;flex-shrink: 0;">
组件
</div>
</div>
</div>
</div>
</div>
</div>
<div ref="leftPanel" :class="{show:show}" class="leftPanel-container">
2021-03-25 19:16:32 +08:00
<div />
<div v-show="show" class="leftPanel">
2021-03-22 19:05:35 +08:00
<div class="leftPanel-items">
2021-03-25 19:16:32 +08:00
<view-select v-show=" showIndex===0" />
<filter-group v-show="show && showIndex===1" />
2021-03-22 19:05:35 +08:00
</div>
</div>
</div>
</de-aside-container>
2021-03-29 14:57:04 +08:00
<!--画布区域-->
2021-03-22 19:05:35 +08:00
<de-main-container class="ms-main-container">
2021-03-25 19:16:32 +08:00
<div
class="content"
@drop="handleDrop"
@dragover="handleDragOver"
@mousedown="handleMouseDown"
@mouseup="deselectCurComponent"
>
<Editor />
</div>
2021-03-22 19:05:35 +08:00
</de-main-container>
</de-container>
2021-04-01 17:40:12 +08:00
2021-03-22 19:05:35 +08:00
</el-container>
</template>
<script>
import DeMainContainer from '@/components/dataease/DeMainContainer'
import DeContainer from '@/components/dataease/DeContainer'
import DeAsideContainer from '@/components/dataease/DeAsideContainer'
import { addClass, removeClass } from '@/utils'
import FilterGroup from '../filter'
2021-03-23 13:58:49 +08:00
import ViewSelect from '../ViewSelect'
2021-03-23 17:16:51 +08:00
import bus from '@/utils/bus'
2021-03-30 15:38:32 +08:00
import Editor from '@/components/canvas/components/Editor/index'
import { deepCopy } from '@/components/canvas/utils/utils'
import componentList from '@/components/canvas/custom-component/component-list' // 左侧列表数据
import { listenGlobalKeyDown } from '@/components/canvas/utils/shortcutKey'
2021-03-25 19:16:32 +08:00
import { mapState } from 'vuex'
import { uuid } from 'vue-uuid'
2021-03-30 15:38:32 +08:00
import Toolbar from '@/components/canvas/components/Toolbar'
2021-03-29 14:57:04 +08:00
import { get } from '@/api/panel/panel'
2021-03-26 12:26:48 +08:00
// 引入样式
2021-03-30 15:38:32 +08:00
import '@/components/canvas/assets/iconfont/iconfont.css'
import '@/components/canvas/styles/animate.css'
2021-03-26 12:26:48 +08:00
import 'element-ui/lib/theme-chalk/index.css'
2021-03-30 15:38:32 +08:00
import '@/components/canvas/styles/reset.css'
2021-03-30 19:01:46 +08:00
import { ApplicationContext } from '@/utils/ApplicationContext'
2021-03-22 19:05:35 +08:00
export default {
2021-04-01 17:40:12 +08:00
name: 'PanelEdit',
2021-03-22 19:05:35 +08:00
components: {
DeMainContainer,
DeContainer,
DeAsideContainer,
FilterGroup,
2021-03-23 13:58:49 +08:00
ViewSelect,
2021-03-26 12:26:48 +08:00
Editor,
Toolbar
2021-03-22 19:05:35 +08:00
},
data() {
return {
show: false,
2021-04-01 17:40:12 +08:00
editView: false,
2021-03-23 13:58:49 +08:00
clickNotClose: false,
2021-03-25 19:16:32 +08:00
showIndex: -1,
activeName: 'attr',
reSelectAnimateIndex: undefined
2021-03-22 19:05:35 +08:00
}
},
2021-03-29 14:57:04 +08:00
computed: {
panelInfo() {
return this.$store.state.panel.panelInfo
},
...mapState([
'componentData',
'curComponent',
'isClickComponent',
'canvasStyleData'
])
},
2021-03-22 19:05:35 +08:00
watch: {
show(value) {
if (value && !this.clickNotClose) {
this.addEventClick()
}
if (value) {
addClass(document.body, 'showRightPanel')
} else {
removeClass(document.body, 'showRightPanel')
}
2021-03-29 14:57:04 +08:00
},
panelInfo(newVal, oldVal) {
this.init(newVal.id)
2021-03-22 19:05:35 +08:00
}
},
2021-03-25 19:16:32 +08:00
created() {
2021-03-29 14:57:04 +08:00
this.init(this.$store.state.panel.panelInfo.id)
// this.restore()
2021-03-25 19:16:32 +08:00
// 全局监听按键事件
listenGlobalKeyDown()
},
2021-03-22 19:05:35 +08:00
mounted() {
this.insertToBody()
2021-03-25 19:16:32 +08:00
bus.$on('component-on-drag', () => {
this.show = false
})
2021-03-22 19:05:35 +08:00
},
beforeDestroy() {
const elx = this.$refs.rightPanel
2021-03-23 18:17:31 +08:00
elx && elx.remove()
2021-03-22 19:05:35 +08:00
},
methods: {
2021-03-29 14:57:04 +08:00
init(panelId) {
// 清理原有画布本地数据
localStorage.setItem('canvasData', null)
localStorage.setItem('canvasStyle', null)
if (panelId) {
get('panel/group/findOne/' + panelId).then(response => {
localStorage.setItem('canvasData', response.data.panelData)
localStorage.setItem('canvasStyle', response.data.panelStyle)
this.restore()
})
}
},
2021-03-22 19:05:35 +08:00
save() {
},
toDir() {
this.$router.replace('/panel/index')
},
showPanel(type) {
this.show = !this.show
2021-03-23 13:58:49 +08:00
this.showIndex = type
2021-03-22 19:05:35 +08:00
},
addEventClick() {
window.addEventListener('click', this.closeSidebar)
},
closeSidebar(evt) {
const parent = evt.target.closest('.button-div-class')
const self = evt.target.closest('.leftPanel')
if (!parent && !self) {
this.show = false
window.removeEventListener('click', this.closeSidebar)
2021-03-23 13:58:49 +08:00
this.showIndex = -1
2021-03-22 19:05:35 +08:00
}
},
insertToBody() {
this.$nextTick(() => {
const elx = this.$refs.leftPanel
const body = document.querySelector('body')
body.insertBefore(elx, body.firstChild)
})
2021-03-23 17:16:51 +08:00
},
2021-03-25 19:16:32 +08:00
// 画布
restore() {
// 用保存的数据恢复画布
if (localStorage.getItem('canvasData')) {
this.$store.commit('setComponentData', this.resetID(JSON.parse(localStorage.getItem('canvasData'))))
}
if (localStorage.getItem('canvasStyle')) {
this.$store.commit('setCanvasStyle', JSON.parse(localStorage.getItem('canvasStyle')))
}
},
resetID(data) {
data.forEach(item => {
item.id = uuid.v1()
})
return data
},
handleDrop(e) {
2021-03-26 11:37:32 +08:00
e.preventDefault()
e.stopPropagation()
2021-03-25 19:16:32 +08:00
let component
2021-03-26 11:37:32 +08:00
const newComponentId = uuid.v1()
2021-03-25 19:16:32 +08:00
const componentInfo = JSON.parse(e.dataTransfer.getData('componentInfo'))
2021-03-26 11:37:32 +08:00
// 用户视图设置 复制一个模板
2021-03-25 19:16:32 +08:00
if (componentInfo.type === 'view') {
componentList.forEach(componentTemp => {
if (componentTemp.type === 'view') {
component = deepCopy(componentTemp)
const propValue = {
2021-03-26 11:37:32 +08:00
id: newComponentId,
2021-03-25 19:16:32 +08:00
viewId: componentInfo.id
}
component.propValue = propValue
}
})
2021-03-31 16:35:10 +08:00
} else {
component = deepCopy(ApplicationContext.getService(componentInfo.id))
2021-03-25 19:16:32 +08:00
}
2021-03-26 11:37:32 +08:00
component.style.top = e.offsetY
component.style.left = e.offsetX
component.id = newComponentId
2021-03-25 19:16:32 +08:00
this.$store.commit('addComponent', { component })
this.$store.commit('recordSnapshot')
},
handleDragOver(e) {
console.log('handleDragOver123')
e.preventDefault()
e.dataTransfer.dropEffect = 'copy'
},
handleMouseDown() {
console.log('handleMouseDown123')
this.$store.commit('setClickComponentStatus', false)
},
deselectCurComponent(e) {
console.log('deselectCurComponent123')
if (!this.isClickComponent) {
this.$store.commit('setCurComponent', { component: null, index: null })
}
// 0 左击 1 滚轮 2 右击
2021-03-26 11:37:32 +08:00
if (e.button !== 2) {
2021-03-25 19:16:32 +08:00
this.$store.commit('hideContextMenu')
}
2021-03-22 19:05:35 +08:00
}
}
}
</script>
<style scoped>
.ms-aside-container {
height: calc(100vh - 91px);
padding: 15px;
min-width: 60px;
max-width: 60px;
border: none;
}
.ms-main-container {
height: calc(100vh - 91px);
}
.de-header {
height: 35px !important;
border-bottom: 1px solid #E6E6E6;
}
.showLeftPanel {
overflow: hidden;
position: relative;
width: calc(100% - 15px);
}
</style>
<style lang="scss" scoped>
.leftPanel-background {
position: fixed;
top: 0;
left: 0;
opacity: 0;
transition: opacity .3s cubic-bezier(.7, .3, .1, 1);
background: rgba(0, 0, 0, .2);
z-index: -1;
}
.leftPanel {
width: 100%;
2021-03-30 19:01:46 +08:00
max-width: 240px;
2021-03-22 19:05:35 +08:00
height: calc(100vh - 91px);
position: fixed;
top: 91px;
left: 60px;
box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .05);
transition: all .25s cubic-bezier(.7, .3, .1, 1);
transform: translate(100%);
background: #fff;
z-index: 40000;
}
.show {
transition: all .3s cubic-bezier(.7, .3, .1, 1);
.leftPanel-background {
z-index: 20000;
opacity: 1;
width: 100%;
height: 100%;
}
.leftPanel {
transform: translate(0);
}
}
</style>