1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-10 12:01:57 +08:00
2021-06-23 16:02:37 -04:00

161 lines
4.2 KiB
Vue

<!--
ADempiere-Vue (Frontend) for ADempiere ERP & CRM Smart Business Solution
Copyright (C) 2017-Present E.R.P. Consultores y Asociados, C.A.
Contributor(s): Yamel Senih ysenih@erpya.com www.erpya.com
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https:www.gnu.org/licenses/>.
-->
<template>
<div :class="className" :style="{height:height,width:width}" />
</template>
<script>
import * as echarts from 'echarts'
require('echarts/theme/macarons') // echarts theme
import resize from './mixins/resize'
import { getMetrics } from '@/api/ADempiere/dashboard/chart'
const animationDuration = 3000
export default {
mixins: [resize],
props: {
className: {
type: String,
default: 'chart'
},
width: {
type: String,
default: '100%'
},
height: {
type: String,
default: '300px'
},
metadata: {
type: Object,
required: true
}
},
data() {
return {
chart: null
}
},
mounted() {
this.unsubscribe = this.subscribeChanges()
this.$nextTick(() => {
this.initChart()
})
},
beforeDestroy() {
this.unsubscribe()
if (!this.chart) {
return
}
this.chart.dispose()
this.chart = null
},
methods: {
subscribeChanges() {
return this.$store.subscribe((mutation, state) => {
if (mutation.type === 'notifyDashboardRefresh') {
this.initChart()
}
})
},
initChart() {
this.chart = echarts.init(this.$el, 'macarons')
getMetrics({
id: this.metadata.id
})
.then(metrics => {
this.loadChartMetrics(metrics)
})
.catch(error => {
console.warn(`Error getting Metrics: ${error.message}. Code: ${error.code}.`)
})
},
loadChartMetrics(metrics) {
let xAxisValues = []
let seriesToShow = []
let legendToShow = []
if (!this.isEmptyValue(metrics.series)) {
if (metrics.series.length > 0) {
metrics.series.forEach(serie => {
const maxValue = Math.max(serie.data_set.map(set => set.value))
xAxisValues = xAxisValues.concat(serie.data_set.map(set => {
return {
name: set.name,
max: maxValue
}
}))
})
}
seriesToShow = metrics.series.map(serie => {
return {
name: serie.name,
value: serie.data_set.map(set => set.value)
}
})
legendToShow = metrics.series.map(serie => serie.name)
}
this.chart.setOption({
tooltip: {
trigger: 'axis',
axisPointer: { // 坐标轴指示器,坐标轴触发有效
type: 'shadow' // 默认为直线,可选为:'line' | 'shadow'
}
},
radar: {
radius: '66%',
center: ['50%', '42%'],
splitNumber: 8,
splitArea: {
areaStyle: {
color: 'rgba(127,95,132,.3)',
opacity: 1,
shadowBlur: 45,
shadowColor: 'rgba(0,0,0,.5)',
shadowOffsetX: 0,
shadowOffsetY: 15
}
},
indicator: xAxisValues
},
legend: {
left: 'center',
bottom: '10',
data: legendToShow
},
series: [{
type: 'radar',
symbolSize: 0,
areaStyle: {
normal: {
shadowBlur: 13,
shadowColor: 'rgba(0,0,0,.2)',
shadowOffsetX: 0,
shadowOffsetY: 10,
opacity: 1
}
},
data: seriesToShow,
animationDuration: animationDuration
}]
})
}
}
}
</script>