mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-08-10 12:01:57 +08:00
156 lines
3.9 KiB
Vue
156 lines
3.9 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 + 'max-height: 40vh;'}" />
|
|
</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'
|
|
|
|
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 => {
|
|
xAxisValues = xAxisValues.concat(serie.data_set.map(set => set.name))
|
|
})
|
|
}
|
|
seriesToShow = metrics.series.map(serie => {
|
|
return {
|
|
name: serie.name,
|
|
type: 'bar',
|
|
data: serie.data_set.map(set => set.value),
|
|
animationDelay: function(idx) {
|
|
return idx * 10
|
|
}
|
|
}
|
|
})
|
|
legendToShow = metrics.series.map(serie => serie.name)
|
|
}
|
|
this.chart.setOption({
|
|
tooltip: {
|
|
trigger: 'axis',
|
|
axisPointer: {
|
|
type: 'shadow'
|
|
}
|
|
},
|
|
grid: {
|
|
left: '3%',
|
|
right: '4%',
|
|
bottom: '3%',
|
|
containLabel: true
|
|
},
|
|
toolbox: {
|
|
// y: 'bottom',
|
|
feature: {
|
|
magicType: {
|
|
type: ['stack', 'tiled']
|
|
},
|
|
dataView: {},
|
|
saveAsImage: {
|
|
pixelRatio: 2
|
|
}
|
|
}
|
|
},
|
|
xAxis: [{
|
|
data: xAxisValues,
|
|
type: 'category',
|
|
splitLine: {
|
|
show: false
|
|
}
|
|
}],
|
|
yAxis: {
|
|
},
|
|
legend: {
|
|
data: legendToShow
|
|
},
|
|
series: seriesToShow,
|
|
animationEasing: 'elasticOut',
|
|
animationDelayUpdate: function(idx) {
|
|
return idx * 5
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|