dataease-dm/frontend/src/views/panel/list/PanelViewShow.vue

231 lines
6.5 KiB
Vue
Raw Normal View History

<template>
2021-04-09 18:19:45 +08:00
<el-row style="height: 100%;width: 100%;">
2021-04-08 16:54:37 +08:00
<el-col v-if="panelInfo.name.length>0" class="panel-design">
<el-row class="panel-design-head">
<!--TODO 仪表盘头部区域-->
<span>{{ panelInfo.name || '测试仪表板' }}</span>
2021-04-19 11:51:22 +08:00
<span style="float: right;margin-right: 10px">
<el-tooltip content="保存为模板">
<el-button class="el-icon-folder-checked" size="mini" circle @click="saveToTemplate" />
</el-tooltip>
</span>
2021-04-13 18:43:17 +08:00
<span style="float: right;margin-right: 10px">
<el-tooltip content="导出为模板">
2021-04-19 11:51:22 +08:00
<el-button class="el-icon-download" size="mini" circle @click="downloadToTemplate" />
2021-04-13 18:43:17 +08:00
</el-tooltip>
</span>
<span style="float: right;margin-right: 10px">
2021-04-08 16:54:37 +08:00
<el-tooltip content="预览">
<el-button class="el-icon-view" size="mini" circle @click="clickPreview" />
</el-tooltip>
</span>
2021-04-20 14:19:10 +08:00
<span v-if="!hasStar && panelInfo" style="float: right;margin-right: 10px">
<el-tooltip content="收藏">
<el-button class="el-icon-star-off" size="mini" circle @click="star" />
</el-tooltip>
</span>
<span v-if="hasStar && panelInfo" style="float: right;margin-right: 10px">
<el-tooltip content="取消">
<el-button class="el-icon-star-on" size="mini" circle @click="unstar" />
</el-tooltip>
</span>
2021-04-08 16:54:37 +08:00
</el-row>
<!--TODO 仪表盘预览区域-->
<el-row class="panel-design-preview">
2021-04-13 18:43:17 +08:00
<div ref="imageWrapper" style="width: 100%;height: 100%">
<Preview v-if="showMain" />
</div>
2021-04-08 16:54:37 +08:00
</el-row>
</el-col>
<el-col v-if="panelInfo.name.length===0" style="height: 100%;">
<el-row style="height: 100%;" class="custom-position">
请从左侧选择仪表盘
</el-row>
</el-col>
2021-04-19 11:51:22 +08:00
<el-dialog
:title="templateSaveTitle"
:visible.sync="templateSaveShow"
custom-class="de-dialog"
>
2021-04-19 18:20:15 +08:00
<save-to-template :template-info="templateInfo" @closeSaveDialog="closeSaveDialog" />
2021-04-19 11:51:22 +08:00
</el-dialog>
</el-row>
</template>
<script>
2021-03-30 15:38:32 +08:00
import Preview from '@/components/canvas/components/Editor/Preview'
2021-04-19 11:51:22 +08:00
import SaveToTemplate from '@/views/panel/list/SaveToTemplate'
2021-04-06 15:07:13 +08:00
import { mapState } from 'vuex'
2021-04-13 18:43:17 +08:00
import html2canvas from 'html2canvas'
import FileSaver from 'file-saver'
2021-04-20 14:19:10 +08:00
import { enshrineList, saveEnshrine, deleteEnshrine } from '@/api/panel/enshrine'
2021-03-19 17:06:52 +08:00
export default {
name: 'PanelViewShow',
2021-04-19 11:51:22 +08:00
components: { Preview, SaveToTemplate },
2021-03-19 17:06:52 +08:00
data() {
return {
2021-04-19 11:51:22 +08:00
showMain: true,
templateInfo: '',
templateSaveTitle: '保存为模板',
2021-04-20 14:19:10 +08:00
templateSaveShow: false,
hasStar: false
2021-03-19 17:06:52 +08:00
}
},
computed: {
panelInfo() {
return this.$store.state.panel.panelInfo
2021-04-06 15:07:13 +08:00
},
...mapState([
'componentData',
'canvasStyleData'
])
2021-04-01 11:38:30 +08:00
},
2021-04-09 18:19:45 +08:00
watch: {
panelInfo(newVal, oldVla) {
// 刷新 进行重新渲染
2021-04-09 13:53:04 +08:00
this.showMain = false
2021-04-20 14:19:10 +08:00
this.$nextTick(() => {
this.showMain = true
this.initHasStar()
})
2021-04-09 18:19:45 +08:00
}
},
mounted() {
2021-03-19 17:06:52 +08:00
},
methods: {
2021-04-06 15:07:13 +08:00
clickPreview() {
const url = '#/preview/' + this.$store.state.panel.panelInfo.id
2021-04-06 15:07:13 +08:00
window.open(url, '_blank')
2021-04-13 18:43:17 +08:00
},
saveToTemplate() {
2021-04-19 11:51:22 +08:00
this.templateSaveShow = true
2021-04-13 18:43:17 +08:00
html2canvas(this.$refs.imageWrapper).then(canvas => {
2021-04-19 18:20:15 +08:00
const snapshot = canvas.toDataURL('image/jpeg', 0.2) // 0.2是图片质量
if (snapshot !== '') {
2021-04-19 11:51:22 +08:00
this.templateInfo = {
2021-04-19 18:20:15 +08:00
name: this.$store.state.panel.panelInfo.name,
snapshot: snapshot,
templateStyle: JSON.stringify(this.canvasStyleData),
templateData: JSON.stringify(this.componentData),
templateType: 'self',
nodeType: 'folder',
2021-04-19 18:20:15 +08:00
level: 1,
pid: null,
2021-04-13 18:43:17 +08:00
dynamicData: ''
}
2021-04-19 11:51:22 +08:00
}
})
},
downloadToTemplate() {
html2canvas(this.$refs.imageWrapper).then(canvas => {
const snapshot = canvas.toDataURL('image/jpeg', 0.2) // 0.2是图片质量
if (snapshot !== '') {
2021-04-19 11:51:22 +08:00
this.templateInfo = {
2021-04-19 18:20:15 +08:00
name: this.$store.state.panel.panelInfo.name,
templateType: 'self',
snapshot: snapshot,
2021-04-19 11:51:22 +08:00
panelStyle: JSON.stringify(this.canvasStyleData),
panelData: JSON.stringify(this.componentData),
dynamicData: ''
}
const blob = new Blob([JSON.stringify(this.templateInfo)], { type: '' })
2021-04-13 18:43:17 +08:00
FileSaver.saveAs(blob, this.$store.state.panel.panelInfo.name + '-TEMPLATE.DE')
}
})
2021-04-19 11:51:22 +08:00
},
refreshTemplateInfo() {
this.templateInfo = ''
html2canvas(this.$refs.imageWrapper).then(canvas => {
const snapshot = canvas.toDataURL('image/jpeg', 0.2) // 0.2是图片质量
if (snapshot !== '') {
2021-04-19 11:51:22 +08:00
this.templateInfo = {
snapshot: snapshot,
2021-04-19 11:51:22 +08:00
panelStyle: JSON.stringify(this.canvasStyleData),
panelData: JSON.stringify(this.componentData),
dynamicData: ''
}
}
})
2021-04-19 18:20:15 +08:00
},
closeSaveDialog() {
this.templateSaveShow = false
2021-04-20 14:19:10 +08:00
},
star() {
this.panelInfo && saveEnshrine(this.panelInfo.id).then(res => {
this.hasStar = true
})
},
unstar() {
this.panelInfo && deleteEnshrine(this.panelInfo.id).then(res => {
this.hasStar = false
})
},
initHasStar() {
const param = {}
enshrineList(param).then(res => {
this.hasStar = res.data && res.data.some(item => item.panelGroupId === this.panelInfo.id)
})
2021-04-06 15:07:13 +08:00
}
2021-03-19 17:06:52 +08:00
}
2021-03-19 17:06:52 +08:00
}
</script>
2021-04-08 16:54:37 +08:00
<style>
.view-list {
height: 100%;
width: 20%;
min-width: 180px;
max-width: 220px;
border: 1px solid #E6E6E6;
border-left: 0 solid;
overflow-y: auto;
}
.view-list-thumbnails-outline {
height: 100%;
overflow-y: auto;
}
.view-list-thumbnails {
width: 100%;
padding: 0px 15px 15px 0px;
}
.panel-design {
2021-04-08 16:54:37 +08:00
min-height: 400px;
height: 100%;
min-width: 500px;
2021-04-08 16:54:37 +08:00
overflow-y: auto;
border-top: 1px solid #E6E6E6;
}
.panel-design-head {
height: 40px;
2021-04-08 16:54:37 +08:00
background-color: white;
padding: 0 6px;
line-height: 40px;
}
2021-04-08 16:54:37 +08:00
.panel-design-preview {
width: 100%;
2021-04-08 16:54:37 +08:00
height: calc(100% - 40px);
overflow-x: hidden;
overflow-y: auto;
padding: 5px;
border-top: 1px solid #E6E6E6;
}
2021-04-08 16:54:37 +08:00
.custom-position {
flex: 1;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 14px;
flex-flow: row nowrap;
color: #9ea6b2;
}
</style>