1054 lines
38 KiB
Vue
1054 lines
38 KiB
Vue
<template>
|
||
<!-- 标题 -->
|
||
<div
|
||
v-if="isTitle"
|
||
class="cn-chart cn-chart__title"
|
||
:style="computePosition">{{chartInfo.i18n ? $t(chartInfo.i18n) : chartInfo.name}}</div>
|
||
<!-- Tabs -->
|
||
<el-tabs
|
||
class="cn-chart cn-chart__tabs"
|
||
v-else-if="isTabs"
|
||
v-model="activeTab"
|
||
@tab-click="changeTab"
|
||
:style="computePosition"
|
||
:ref="`chart-${chart.id}`"
|
||
>
|
||
<el-tab-pane
|
||
v-for="tab in chartInfo.children"
|
||
:label="tab.i18n ? $t(tab.i18n) : tab.name" :name="`${tab.id}`"
|
||
:key="tab.id"
|
||
:ref="`chart-${chart.id}`"
|
||
>
|
||
<template v-for="chart in tab.children">
|
||
<chart v-if="activeTab == tab.id" :key="chart.id" :chart="chart" :time-filter="timeFilter" :ref="`chart-${chart.id}`" :entity="entity"></chart>
|
||
</template>
|
||
</el-tab-pane>
|
||
</el-tabs>
|
||
<!-- 地图 -->
|
||
<chart-map
|
||
v-else-if="isMap"
|
||
:style="computePosition"
|
||
:loading="loading"
|
||
>
|
||
<template #chartErrorInfo>
|
||
<chart-error
|
||
:isError="isError"
|
||
:errorInfo="errorInfo"
|
||
>
|
||
</chart-error>
|
||
</template>
|
||
<template #title>{{chartInfo.i18n ? $t(chartInfo.i18n) : chartInfo.name}}</template>
|
||
<template #operations>
|
||
<!-- <i class="cn-icon cn-icon-more-light"></i>-->
|
||
<!-- <i class="cn-icon cn-icon-refresh" @click="loadMap"></i>-->
|
||
</template>
|
||
<template #default>
|
||
<div class="chart-drawing" :id="`chart${chartInfo.id}`"></div>
|
||
</template>
|
||
</chart-map>
|
||
<!-- echarts类的图,如饼图、柱状图、折线图等 -->
|
||
<echarts-frame
|
||
v-else-if="isEcharts"
|
||
:layout="layout"
|
||
:style="computePosition"
|
||
:chartInfo="chartInfo"
|
||
:loading="loading"
|
||
:no-data="noData"
|
||
>
|
||
<template #chartErrorInfo>
|
||
<chart-error
|
||
:isError="isError"
|
||
:errorInfo="errorInfo"
|
||
>
|
||
</chart-error>
|
||
</template>
|
||
<template #title v-if="layout.indexOf(layoutConstant.HEADER) > -1">
|
||
{{chartInfo.i18n ? $t(chartInfo.i18n) : chartInfo.name}}
|
||
</template>
|
||
<template #operations v-if="layout.indexOf(layoutConstant.HEADER) > -1">
|
||
<div class="header__operation header__operation--echarts" v-if="chart.type === 31">
|
||
<el-select
|
||
size="mini"
|
||
v-model="orderPieTable"
|
||
class="option__select select-column"
|
||
placeholder=""
|
||
popper-class="option-popper"
|
||
@change="orderPieTableChange"
|
||
>
|
||
<el-option v-for="item in chartPieTableTopOptions" :key="item.value" :value="item.value"> {{item.name}}</el-option>
|
||
</el-select>
|
||
</div>
|
||
<!-- <i class="cn-icon cn-icon-more-light margin-l-10"></i>-->
|
||
</template>
|
||
<template #default>
|
||
<div class="chart-drawing" :id="`chart${chartInfo.id}`"></div>
|
||
</template>
|
||
<template #footer v-if="layout.indexOf(layoutConstant.FOOTER) > -1">
|
||
<!-- 带Table的饼图,展示Table -->
|
||
<template v-if="isEchartsWithTable">
|
||
<pie-table :tableData="pieTableData" ref="pieTable" :chartInfo="chartInfo" :time-filter="timeFilter" :order="orderPieTable"/>
|
||
</template>
|
||
<template v-else-if="isEchartsWithStatistics">
|
||
<statistics-legend :data="statisticsData" :chart-info="chartInfo" @toggleLegend="toggleStatisticsLegend"></statistics-legend>
|
||
</template>
|
||
</template>
|
||
</echarts-frame>
|
||
<!-- 单值图 -->
|
||
<single-value
|
||
v-else-if="isSingleValue"
|
||
:type="chartInfo.type"
|
||
:style="computePosition"
|
||
:icon="singleValue.icon"
|
||
:loading="loading"
|
||
>
|
||
<template #chartErrorInfo>
|
||
<chart-error
|
||
:isError="isError"
|
||
:errorInfo="errorInfo"
|
||
>
|
||
</chart-error>
|
||
</template>
|
||
<template #title><span :title="chartInfo.i18n ? $t(chartInfo.i18n) : chartInfo.name">{{chartInfo.i18n ? $t(chartInfo.i18n) : chartInfo.name}}</span></template>
|
||
<template #data>
|
||
<span>{{handleSingleValue[0] || handleSingleValue[0] === 0 ? handleSingleValue[0] : '-'}}</span>
|
||
<span class="single-value__unit">{{handleSingleValue[1]}}</span>
|
||
</template>
|
||
<template #chart>
|
||
<div class="chart-drawing" :id="`chart${chartInfo.id}`"></div>
|
||
</template>
|
||
</single-value>
|
||
<!-- 表格 -->
|
||
<chart-table
|
||
v-else-if="isTable"
|
||
:table-columns="table.tableColumns"
|
||
:table-data="table.currentPageData"
|
||
:style="computePosition"
|
||
:loading="loading"
|
||
:no-data="noData"
|
||
>
|
||
<template #chartErrorInfo>
|
||
<chart-error
|
||
:isError="isError"
|
||
:errorInfo="errorInfo"
|
||
>
|
||
</chart-error>
|
||
</template>
|
||
<template #title>{{chartInfo.i18n ? $t(chartInfo.i18n) : chartInfo.name}}</template>
|
||
<template #operations>
|
||
<!-- <div class="header__operation header__operation--table">
|
||
<span class="option__button"><i class="cn-icon cn-icon-download"></i></span>
|
||
</div>-->
|
||
<div class="header__operation header__operation--table">
|
||
<el-select
|
||
size="mini"
|
||
v-model="table.limit"
|
||
class="option__select select-topn"
|
||
placeholder=""
|
||
popper-class="option-popper"
|
||
@change="tableLimitChange"
|
||
>
|
||
<el-option v-for="item in chartTableTopOptions" :key="item" :value="item">TOP {{item}}</el-option>
|
||
<template #prefix>TOP </template>
|
||
</el-select>
|
||
</div>
|
||
<div class="header__operation header__operation--table">
|
||
<el-select
|
||
size="mini"
|
||
v-model="table.orderBy"
|
||
class="option__select select-column"
|
||
:placeholder="$t('overall.field')"
|
||
popper-class="option-popper"
|
||
@change="tableLimitChange"
|
||
>
|
||
<template v-for="(item, index) in table.tableColumns" :key="item.prop">
|
||
<el-option v-if="index > 0" :value="item.prop">{{item.prop}}</el-option>
|
||
</template>
|
||
</el-select>
|
||
</div>
|
||
<!-- <div class="header__operation header__operation--table">
|
||
<span class="option__button"><i class="cn-icon cn-icon-style"></i></span>
|
||
<div class="icon-group-divide"></div>
|
||
<span class="option__button"><i class="cn-icon cn-icon-dropdown"></i></span>
|
||
</div>
|
||
<div class="header__operation header__operation--table">
|
||
<span class="option__button"><i class="cn-icon cn-icon-full-screen"></i></span>
|
||
</div>-->
|
||
</template>
|
||
<template #footer>
|
||
<chart-table-pagination
|
||
ref="tablePagination"
|
||
:total="table.tableData.length"
|
||
@pageJump="pageJump"
|
||
></chart-table-pagination>
|
||
</template>
|
||
</chart-table>
|
||
</template>
|
||
|
||
<script>
|
||
import * as echarts from 'echarts'
|
||
import * as am4Core from '@amcharts/amcharts4/core'
|
||
import * as am4Maps from '@amcharts/amcharts4/maps'
|
||
import { shallowRef } from 'vue'
|
||
import { tableTitleMapping, legendMapping } from '@/components/charts/chart-table-title'
|
||
import {
|
||
isEcharts,
|
||
isSingleValue,
|
||
isTable,
|
||
isTitle,
|
||
isMap,
|
||
getOption,
|
||
getTypeCategory,
|
||
getLayout,
|
||
layoutConstant,
|
||
isEchartsWithTable,
|
||
isEchartsWithStatistics,
|
||
isMapLine,
|
||
isMapBlock,
|
||
isSingleValueWithEcharts,
|
||
isRelationShip,
|
||
isTabs,
|
||
getChartColor
|
||
} from '@/components/charts/chart-options'
|
||
import ChartError from '@/components/charts/ChartError'
|
||
import EchartsFrame from '@/components/charts/EchartsFrame'
|
||
import SingleValue from '@/components/charts/ChartSingleValue'
|
||
import ChartTable from '@/components/charts/ChartTable'
|
||
import ChartMap from '@/components/charts/ChartMap'
|
||
import PieTable from '@/components/charts/PieTable'
|
||
import StatisticsLegend from '@/components/charts/StatisticsLegend'
|
||
import ChartTablePagination from '@/components/charts/ChartTablePagination'
|
||
import unitConvert, { getUnitType } from '@/utils/unit-convert'
|
||
import { chartTableDefaultPageSize, chartTableTopOptions, storageKey, chartPieTableTopOptions, unitTypes } from '@/utils/constants'
|
||
import { get, post } from '@/utils/http'
|
||
import { replaceUrlPlaceholder, getCapitalGeo, getGeoData, lineToSpace } from '@/utils/tools'
|
||
import { HeatLegend } from '@/components/amcharts/heatLegend'
|
||
|
||
export default {
|
||
name: 'Chart',
|
||
props: {
|
||
chart: Object, // 图表对象,包括id、name、type等数据
|
||
timeFilter: Object,
|
||
entity: {
|
||
type: Object,
|
||
default: () => {}
|
||
}
|
||
},
|
||
components: {
|
||
EchartsFrame,
|
||
SingleValue,
|
||
ChartTablePagination,
|
||
ChartTable,
|
||
PieTable,
|
||
StatisticsLegend,
|
||
ChartMap,
|
||
ChartError
|
||
},
|
||
data () {
|
||
return {
|
||
table: {
|
||
pageSize: chartTableDefaultPageSize,
|
||
limit: chartTableTopOptions[0], // top-n
|
||
orderBy: 'sessions',
|
||
tableColumns: [], // table字段
|
||
tableData: [], // table的所有数据
|
||
currentPageData: [] // table当前页的数据
|
||
},
|
||
pieTableData: [],
|
||
singleValue: {
|
||
value: '-',
|
||
icon: ''
|
||
},
|
||
activeTab: '',
|
||
statisticsData: [],
|
||
orderPieTable: chartPieTableTopOptions[0].value,
|
||
selectPieChartName: '',
|
||
allSelectPieChartName: [],
|
||
chartOption: null,
|
||
loading: true,
|
||
noData: false, // 查询结果为空
|
||
throttle: null, // 节流器
|
||
isError: false, // 接口响应是否报错
|
||
errorInfo: '', // 接口具体错误信息
|
||
polygonSeries: null
|
||
}
|
||
},
|
||
methods: {
|
||
initChart () {
|
||
this.loading = true
|
||
try {
|
||
const chartParams = this.chartInfo.params
|
||
if (this.isMap) {
|
||
const { chart, polygonSeries } = this.initMap(`chart${this.chartInfo.id}`)
|
||
this.myChart = chart
|
||
this.polygonSeries = polygonSeries
|
||
if (chartParams) {
|
||
this.loadMap(this.polygonSeries)
|
||
}
|
||
// TODO 优化:缓存地图,重新查询时只更改数据,不再次初始化
|
||
} else if (this.isEcharts) {
|
||
const dom = document.getElementById(`chart${this.chartInfo.id}`)
|
||
!this.myChart && (this.myChart = echarts.init(dom))
|
||
this.chartOption = this.$_.cloneDeep(getOption(this.chart.type))
|
||
if (chartParams) {
|
||
if (this.isEchartsWithTable) {
|
||
this.initEchartsWithPieTable(chartParams)
|
||
} else if (this.isEchartsWithStatistics) {
|
||
this.initEchartsWithStatistics(chartParams)
|
||
} else if (this.isRelationShip) {
|
||
this.initRelationShip(chartParams)
|
||
} else {
|
||
this.initECharts(chartParams)
|
||
}
|
||
}
|
||
} else if (this.isTable) {
|
||
if (chartParams) {
|
||
this.initChartTable(chartParams)
|
||
}
|
||
} else if (this.isSingleValue) {
|
||
if (chartParams) {
|
||
this.singleValue.icon = chartParams.icon
|
||
const queryParams = { startTime: parseInt(this.timeFilter.startTime / 1000), endTime: parseInt(this.timeFilter.endTime / 1000), ...this.entity }
|
||
get(replaceUrlPlaceholder(chartParams.url, queryParams)).then(response => {
|
||
if (response.code === 200) {
|
||
this.singleValue.value = response.data.result
|
||
} else {
|
||
this.isError = true
|
||
this.noData = true
|
||
this.errorInfo = response.msg || response.message || 'Unknown'
|
||
}
|
||
if (this.isSingleValueWithEcharts) { // 带曲线的单值图
|
||
const dom = document.getElementById(`chart${this.chartInfo.id}`)
|
||
!this.myChart && (this.myChart = echarts.init(dom))
|
||
this.chartOption = this.$_.cloneDeep(getOption(this.chart.type))
|
||
const seriesTemplate = this.chartOption.series[0]
|
||
|
||
get(replaceUrlPlaceholder(chartParams.urlLine, queryParams)).then(response => {
|
||
if (response.code === 200) {
|
||
this.chartOption.series = response.data.result.map((r, i) => {
|
||
return {
|
||
...seriesTemplate,
|
||
name: r.legend,
|
||
data: r.values.map(v => [Number(v[0]) * 1000, Number(v[1]), chartParams.unitType]),
|
||
lineStyle: {
|
||
color: getChartColor[i]
|
||
}
|
||
}
|
||
})
|
||
} else {
|
||
this.isError = true
|
||
this.noData = true
|
||
this.errorInfo = response.msg || response.message || 'Unknown'
|
||
}
|
||
this.myChart.setOption(this.chartOption)
|
||
})
|
||
} else {
|
||
this.loading = false
|
||
}
|
||
}).catch(() => {
|
||
this.singleValue.value = ''
|
||
}).finally(() => {
|
||
setTimeout(() => {
|
||
this.loading = false
|
||
this.$nextTick(() => {
|
||
this.echartsResize()
|
||
})
|
||
}, 250)
|
||
})
|
||
}
|
||
} else if (this.isTabs) {
|
||
if (!this.$_.isEmpty(this.chartInfo.children)) {
|
||
this.activeTab = `${this.chartInfo.children[0].id}`
|
||
}
|
||
}
|
||
} catch (e) {
|
||
console.error(e)
|
||
}
|
||
},
|
||
reloadChart () {
|
||
this.initChart()
|
||
this.$nextTick(() => {
|
||
if (!this.$_.isEmpty(this.chart.children)) {
|
||
this.chart.children.forEach(chart => {
|
||
this.$refs[`chart-${chart.id}`].reloadChart()
|
||
})
|
||
}
|
||
})
|
||
},
|
||
getTitle (r) {
|
||
let title = ''
|
||
if (r.establishLatency || r.httpResponseLatency || r.sslConLatency) {
|
||
title += `: ${unitConvert(r.establishLatency || r.httpResponseLatency || r.sslConLatency, unitTypes.time).join(' ')}`
|
||
}
|
||
if (r.sequenceGapLossPercent || r.pktRetransPercent) {
|
||
const d = unitConvert(r.sequenceGapLossPercent || r.pktRetransPercent, unitTypes.number)
|
||
title += d[0] === '0.00' ? ': 0' : `: ${d.join(' ')} %`
|
||
}
|
||
if (r.sessions) {
|
||
title += `\nSessions: ${unitConvert(r.sessions, unitTypes.number).join(' ')}`
|
||
}
|
||
if (r.packets) {
|
||
title += `\nPackets: ${unitConvert(r.packets, unitTypes.number).join(' ')}`
|
||
}
|
||
if (r.bytes) {
|
||
title += `\nBytes: ${unitConvert(r.bytes, unitTypes.byte).join(' ')}`
|
||
}
|
||
title = title || ': 0'
|
||
return title
|
||
},
|
||
getTitle2 (item, valueColumn) {
|
||
let title = ''
|
||
switch (valueColumn) {
|
||
case 'sessions': {
|
||
title = `\nSessions: ${unitConvert(item.value, unitTypes.number).join(' ')}`
|
||
break
|
||
}
|
||
case 'packets': {
|
||
title = `\nPackets: ${unitConvert(item.value, unitTypes.number).join(' ')}`
|
||
break
|
||
}
|
||
case 'bytes': {
|
||
title = `\nBytes: ${unitConvert(item.value, unitTypes.byte).join(' ')}`
|
||
break
|
||
}
|
||
case 'establishLatency':
|
||
case 'httpResponseLatency':
|
||
case 'sslConLatency': {
|
||
const result = unitConvert(item.value, unitTypes.time)
|
||
title = `: ${result[0] === 0 ? 0 : result.join(' ')}`
|
||
break
|
||
}
|
||
case 'sequenceGapLossPercent':
|
||
case 'pktRetransPercent': {
|
||
title = `: ${unitConvert(item.value, unitTypes.number).join(' ')}`
|
||
break
|
||
}
|
||
default: break
|
||
}
|
||
return title
|
||
},
|
||
changeTab (tab) {
|
||
this.activeTab = tab.paneName
|
||
},
|
||
initMap (id) {
|
||
const chart = am4Core.create(id, am4Maps.MapChart)
|
||
chart.geodata = getGeoData(storageKey.iso36112WorldLow)
|
||
chart.projection = new am4Maps.projections.Miller()
|
||
const polygonSeries = chart.series.push(new am4Maps.MapPolygonSeries())
|
||
polygonSeries.useGeodata = true
|
||
polygonSeries.exclude = ['AQ'] // 排除南极洲
|
||
return {
|
||
chart,
|
||
polygonSeries
|
||
}
|
||
},
|
||
loadMap (polygonSeries) {
|
||
const chartParams = this.chartInfo.params
|
||
const queryParams = { startTime: parseInt(this.timeFilter.startTime / 1000), endTime: parseInt(this.timeFilter.endTime / 1000), country: '', region: '', ...this.entity } // 统计数据的查询参数
|
||
get(replaceUrlPlaceholder(chartParams.url, queryParams)).then(response => {
|
||
if (response.code === 200 && !this.$_.isEmpty(response.data.result)) {
|
||
const data = response.data.result
|
||
data.forEach(r => {
|
||
const serverCountryCapital = r.serverId && getCapitalGeo(r.serverId)
|
||
const clientCountryCapital = r.clientId && getCapitalGeo(r.clientId)
|
||
serverCountryCapital && (r.serverLongitude = serverCountryCapital.capitalLongitude)
|
||
serverCountryCapital && (r.serverLatitude = serverCountryCapital.capitalLatitude)
|
||
clientCountryCapital && (r.clientLongitude = clientCountryCapital.capitalLongitude)
|
||
clientCountryCapital && (r.clientLatitude = clientCountryCapital.capitalLatitude)
|
||
})
|
||
if (this.isMapLine) {
|
||
const lineSeries = this.myChart.series.push(new am4Maps.MapLineSeries())
|
||
const lineTemplate = lineSeries.mapLines.template
|
||
lineTemplate.stroke = am4Core.color('#A258EC')
|
||
lineTemplate.line.nonScalingStroke = true
|
||
lineTemplate.line.strokeDasharray = '4 3'
|
||
lineTemplate.nonScalingStroke = true
|
||
lineTemplate.arrow.nonScaling = true
|
||
lineTemplate.arrow.width = 4
|
||
lineTemplate.arrow.height = 6
|
||
lineSeries.data = [
|
||
{
|
||
multiGeoLine: data.map(d => {
|
||
return [
|
||
{
|
||
latitude: parseFloat(d.serverLatitude),
|
||
longitude: parseFloat(d.serverLongitude)
|
||
},
|
||
{
|
||
latitude: parseFloat(d.clientLatitude),
|
||
longitude: parseFloat(d.clientLongitude)
|
||
}
|
||
]
|
||
})
|
||
}
|
||
]
|
||
const imageSeries = this.myChart.series.push(new am4Maps.MapImageSeries())
|
||
imageSeries.dataFields.value = 'sessions'
|
||
const imageSeriesTemplate = imageSeries.mapImages.template
|
||
const circle = imageSeriesTemplate.createChild(am4Core.Circle)
|
||
|
||
circle.fillOpacity = 0.7
|
||
circle.nonScaling = true
|
||
circle.tooltipText = '{title}'
|
||
const radiusHeat = imageSeries.heatRules.push({
|
||
target: circle,
|
||
property: 'radius',
|
||
min: 8,
|
||
max: 30
|
||
})
|
||
const colorHeat = imageSeries.heatRules.push({
|
||
target: circle,
|
||
property: 'fill',
|
||
min: am4Core.color('#D2A8FF'),
|
||
max: am4Core.color('#A258EC')
|
||
})
|
||
imageSeriesTemplate.propertyFields.latitude = 'latitude'
|
||
imageSeriesTemplate.propertyFields.longitude = 'longitude'
|
||
|
||
const pointData = []
|
||
data.forEach(d => {
|
||
pointData.push({
|
||
...d,
|
||
latitude: parseFloat(d.serverLatitude),
|
||
longitude: parseFloat(d.serverLongitude),
|
||
title: this.getTitle(d)
|
||
})
|
||
pointData.push({
|
||
...d,
|
||
latitude: parseFloat(d.clientLatitude),
|
||
longitude: parseFloat(d.clientLongitude),
|
||
title: this.getTitle(d)
|
||
})
|
||
})
|
||
imageSeries.data = pointData
|
||
} else if (this.isMapBlock) {
|
||
const sumData = []
|
||
data.forEach(r => {
|
||
const hit = sumData.find(s => s.id === r.serverId)
|
||
if (hit) {
|
||
hit.value += Number(r.establishLatency || r.httpResponseLatency || r.sslConLatency || r.sequenceGapLossPercent || r.pktRetransPercent || r.sessions) || 0
|
||
} else {
|
||
sumData.push({
|
||
id: r.serverId,
|
||
value: Number(r.establishLatency || r.httpResponseLatency || r.sslConLatency || r.sequenceGapLossPercent || r.pktRetransPercent || r.sessions) || 0
|
||
})
|
||
}
|
||
})
|
||
const seriesData = sumData.map(r => {
|
||
return {
|
||
...r,
|
||
title: this.getTitle2(r, chartParams.valueColumn)
|
||
}
|
||
})
|
||
polygonSeries.data = [...seriesData]
|
||
const sorted = seriesData.sort((a, b) => b.value - a.value)
|
||
const allZero = this.$_.isEmpty(sorted) || Number(sorted[0].value) === 0 // 数据全为0的情况,legend只显示1个颜色
|
||
|
||
polygonSeries.heatRules.push({
|
||
property: 'fill',
|
||
target: polygonSeries.mapPolygons.template,
|
||
min: am4Core.color('#EABA2B'),
|
||
max: allZero ? am4Core.color('#EABA2B') : am4Core.color('#D95D41')
|
||
})
|
||
|
||
const heatLegend = this.myChart.createChild(HeatLegend)
|
||
heatLegend.markerContainer.height = 6
|
||
heatLegend.series = polygonSeries
|
||
heatLegend.align = 'left'
|
||
heatLegend.markerCount = allZero ? 1 : 3
|
||
heatLegend.minValue = 0
|
||
heatLegend.fontSize = 12
|
||
heatLegend.maxValue = allZero ? 1 : Number(sorted[0].value)
|
||
heatLegend.width = allZero ? am4Core.percent(10) : am4Core.percent(25)
|
||
heatLegend.marginLeft = 15
|
||
heatLegend.valign = 'bottom'
|
||
|
||
const minRange = heatLegend.valueAxis.axisRanges.create()
|
||
minRange.value = heatLegend.minValue
|
||
minRange.label.text = minRange.value === 0 ? 0 : unitConvert(heatLegend.minValue, chartParams.unitType).join(' ')
|
||
const maxRange = heatLegend.valueAxis.axisRanges.create()
|
||
maxRange.value = heatLegend.maxValue
|
||
maxRange.label.text = maxRange.value === 0 ? 0 : unitConvert(heatLegend.maxValue, chartParams.unitType).join(' ')
|
||
|
||
heatLegend.valueAxis.renderer.labels.template.adapter.add('text', function (labelText) {
|
||
return ''
|
||
})
|
||
|
||
const polygonTemplate = polygonSeries.mapPolygons.template
|
||
polygonTemplate.tooltipText = '{name}{title}'
|
||
polygonTemplate.nonScalingStroke = true
|
||
polygonTemplate.strokeWidth = 0.5
|
||
}
|
||
} else if (response.code != 200) {
|
||
this.isError = true
|
||
this.noData = true
|
||
this.errorInfo = response.msg || response.message || 'Unknown'
|
||
}
|
||
}).finally(() => {
|
||
setTimeout(() => { this.loading = false }, 250)
|
||
})
|
||
},
|
||
pageJump (val) {
|
||
this.table.currentPageData = this.getTargetPageData(val, this.table.pageSize, this.table.tableData)
|
||
},
|
||
getTargetPageData (pageNum, pageSize, tableData) {
|
||
return this.$_.slice(tableData, (pageNum - 1) * pageSize, pageNum * pageSize)
|
||
},
|
||
getTableTitle (data) {
|
||
if (data.length > 0) {
|
||
const dataColumns = Object.keys(data[0]) // 返回数据的字段
|
||
const columns = dataColumns.map(c => tableTitleMapping[c]) // 展示字段
|
||
const keys = ['clientIp', 'serverIp', 'appName', 'domain']
|
||
return columns.sort((a, b) => {
|
||
if (keys.indexOf(a.prop) > -1) {
|
||
return -1
|
||
} else if (keys.indexOf(b.prop) > -1) {
|
||
return 1
|
||
} else {
|
||
return 0
|
||
}
|
||
})
|
||
} else {
|
||
return []
|
||
}
|
||
},
|
||
toggleStatisticsLegend (index) {
|
||
this.statisticsData[index].active = !this.statisticsData[index].active
|
||
this.statisticsData.forEach((d, i) => {
|
||
if (d.active) {
|
||
this.myChart.dispatchAction({
|
||
type: 'legendSelect',
|
||
name: d.legend
|
||
})
|
||
} else {
|
||
this.myChart.dispatchAction({
|
||
type: 'legendUnSelect',
|
||
name: d.legend
|
||
})
|
||
}
|
||
})
|
||
},
|
||
orderPieTableChange () {
|
||
if (this.chart.type === 31) {
|
||
const chartParams = this.chartInfo.params || null // 图表参数
|
||
this.initEchartsWithPieTable(chartParams)
|
||
}
|
||
},
|
||
timeLineIsAllZero (data) {
|
||
if (data.resultType === 'matrix') {
|
||
let allZero = true
|
||
try {
|
||
data.result.forEach(d => {
|
||
d.values.forEach(r => {
|
||
if (r[1] && r[1] !== '0') {
|
||
allZero = false
|
||
throw new Error('break')
|
||
}
|
||
})
|
||
})
|
||
} catch (e) {}
|
||
return allZero
|
||
}
|
||
},
|
||
initECharts (chartParams) {
|
||
if (chartParams.showLegend === false) {
|
||
this.chartOption.legend.show = false
|
||
}
|
||
const queryParams = { startTime: parseInt(this.timeFilter.startTime / 1000), endTime: parseInt(this.timeFilter.endTime / 1000), ...this.entity }
|
||
get(replaceUrlPlaceholder(chartParams.url, queryParams)).then(response => {
|
||
if (response.code === 200) {
|
||
if (this.$_.isEmpty(response.data.result)) {
|
||
this.noData = true
|
||
return
|
||
} else {
|
||
this.noData = false
|
||
}
|
||
const seriesTemplate = this.chartOption.series[0]
|
||
const allZero = this.timeLineIsAllZero(response.data)
|
||
if (allZero) {
|
||
this.chartOption.yAxis = {
|
||
...this.chartOption.yAxis,
|
||
min: 0,
|
||
max: 5,
|
||
interval: 1
|
||
}
|
||
}
|
||
this.chartOption.series = response.data.result.map(r => {
|
||
return {
|
||
...seriesTemplate,
|
||
name: legendMapping[r.legend] ? legendMapping[r.legend] : lineToSpace(r.legend),
|
||
data: r.values.map(v => [Number(v[0]) * 1000, Number(v[1]), chartParams.unitType])
|
||
}
|
||
})
|
||
const rows = (response.data.result.length - 1) / 4 + 1 // 根据legend个数动态预留legend空间
|
||
const gridTop = 10 + 27 * rows
|
||
this.chartOption.grid.top = gridTop
|
||
if (chartParams.unitType === unitTypes.byte) {
|
||
this.chartOption.yAxis.axisLabel.formatter = function (value, index, a, b) {
|
||
return unitConvert(value, unitTypes.byte).join(' ')
|
||
}
|
||
this.chartOption.grid.left = 75
|
||
}
|
||
} else {
|
||
this.isError = true
|
||
this.noData = true
|
||
this.errorInfo = response.msg || response.message || 'Unknown'
|
||
}
|
||
this.myChart.setOption(this.chartOption)
|
||
}).finally(() => {
|
||
setTimeout(() => {
|
||
this.loading = false
|
||
this.$nextTick(() => {
|
||
this.echartsResize()
|
||
})
|
||
}, 250)
|
||
})
|
||
},
|
||
initRelationShip (chartParams) {
|
||
const queryParams = { ...this.entity, limit: 5 }
|
||
post(replaceUrlPlaceholder(chartParams.url, queryParams)).then(response => {
|
||
if (response.code === 200) {
|
||
if (!response.data.result) {
|
||
this.noData = true
|
||
return
|
||
} else {
|
||
this.noData = false
|
||
}
|
||
|
||
const data = []
|
||
const links = []
|
||
handleData(data, links, response.data.result)
|
||
this.chartOption.series[0].data = data
|
||
this.chartOption.series[0].links = links
|
||
}
|
||
this.myChart.setOption(this.chartOption)
|
||
}).finally(() => {
|
||
setTimeout(() => {
|
||
this.loading = false
|
||
setTimeout(() => {
|
||
this.myChart.resize()
|
||
})
|
||
}, 250)
|
||
})
|
||
|
||
const vm = this
|
||
function handleData (data, links, item) {
|
||
if (!data.some(d => d.name === item.name)) {
|
||
data.push({ name: item.name, ...handleStyle(item) })
|
||
}
|
||
if (!vm.$_.isEmpty(item.from) && !vm.$_.isEmpty(item.to)) {
|
||
links.push({ target: item.to, source: item.from })
|
||
}
|
||
if (!vm.$_.isEmpty(item.leaf)) {
|
||
item.leaf.forEach(i => {
|
||
handleData(data, links, i)
|
||
})
|
||
}
|
||
}
|
||
|
||
function handleStyle (item) {
|
||
const style = {}
|
||
switch (item.type) {
|
||
case 'app_id': {
|
||
style.itemStyle = { color: '#73DEB3' }
|
||
style.symbol = 'circle'
|
||
break
|
||
}
|
||
case 'domain': {
|
||
style.itemStyle = { color: '#73A0FA' }
|
||
style.symbol = 'circle'
|
||
break
|
||
}
|
||
case 'client_ip': {
|
||
style.itemStyle = { color: '#E8F6FF', borderColor: '#C9C9C9' }
|
||
style.symbol = 'roundRect'
|
||
style.symbolSize = [80, 25]
|
||
break
|
||
}
|
||
case 'server_ip': {
|
||
style.itemStyle = { color: '#E2FCEF', borderColor: '#C9C9C9' }
|
||
style.symbol = 'roundRect'
|
||
style.symbolSize = [80, 25]
|
||
break
|
||
}
|
||
}
|
||
return style
|
||
}
|
||
},
|
||
initEchartsWithStatistics (chartParams) {
|
||
const queryParams = { startTime: parseInt(this.timeFilter.startTime / 1000), endTime: parseInt(this.timeFilter.endTime / 1000), ...this.entity }
|
||
get(replaceUrlPlaceholder(chartParams.url, queryParams)).then(response => {
|
||
if (response.code === 200) {
|
||
if (this.$_.isEmpty(response.data.result)) {
|
||
this.noData = true
|
||
return
|
||
} else {
|
||
this.noData = false
|
||
}
|
||
const allZero = this.timeLineIsAllZero(response.data)
|
||
if (allZero) {
|
||
this.chartOption.yAxis = {
|
||
...this.chartOption.yAxis,
|
||
min: 0,
|
||
max: 5,
|
||
interval: 1
|
||
}
|
||
}
|
||
this.statisticsData = response.data.result.map(d => {
|
||
return {
|
||
...d,
|
||
active: true
|
||
}
|
||
})
|
||
const seriesTemplate = this.chartOption.series[0]
|
||
this.chartOption.series = response.data.result.map((r, i) => {
|
||
return {
|
||
...seriesTemplate,
|
||
name: r.legend,
|
||
data: r.values.map(v => [Number(v[0]) * 1000, Number(v[1]), chartParams.unitType]),
|
||
lineStyle: {
|
||
color: getChartColor[i]
|
||
}
|
||
}
|
||
})
|
||
} else {
|
||
this.isError = true
|
||
this.noData = true
|
||
this.errorInfo = response.msg || response.message || 'Unknown'
|
||
}
|
||
this.myChart.setOption(this.chartOption)
|
||
}).finally(() => {
|
||
setTimeout(() => {
|
||
this.loading = false
|
||
this.$nextTick(() => {
|
||
this.echartsResize()
|
||
})
|
||
}, 250)
|
||
})
|
||
},
|
||
initEchartsWithPieTable (chartParams) {
|
||
const self = this
|
||
chartParams.valueColumn = this.orderPieTable
|
||
const unitType = getUnitType(chartParams.valueColumn)
|
||
const queryParams = { startTime: parseInt(this.timeFilter.startTime / 1000), endTime: parseInt(this.timeFilter.endTime / 1000), limit: 10, order: this.orderPieTable, ...this.entity } // 统计数据的查询参数
|
||
const tableQueryParams = { startTime: parseInt(this.timeFilter.startTime / 1000), endTime: parseInt(this.timeFilter.endTime / 1000), limit: 10, order: this.orderPieTable, ...this.entity } // 统计数据的查询参数
|
||
tableQueryParams[chartParams.nameColumn] = [] // 处理两个图表不一样的地方
|
||
get(replaceUrlPlaceholder(chartParams.url, queryParams)).then(response => {
|
||
if (response.code === 200) {
|
||
if (this.$_.isEmpty(response.data.result)) {
|
||
this.noData = true
|
||
return
|
||
} else {
|
||
this.noData = false
|
||
}
|
||
const allZero = this.timeLineIsAllZero(response.data)
|
||
if (allZero) {
|
||
this.chartOption.yAxis = {
|
||
...this.chartOption.yAxis,
|
||
min: 0,
|
||
max: 5,
|
||
interval: 1
|
||
}
|
||
}
|
||
const data = response.data.result.map(d => {
|
||
tableQueryParams[chartParams.nameColumn].push(d[chartParams.nameColumn])
|
||
return {
|
||
data: d,
|
||
name: d[chartParams.nameColumn],
|
||
value: parseInt(d[chartParams.valueColumn]),
|
||
unitType: unitType
|
||
}
|
||
})
|
||
this.allSelectPieChartName = tableQueryParams[chartParams.nameColumn]
|
||
this.chartOption.series[0].data = data
|
||
if (this.chartOption.series[0].data && this.chartOption.series[0].data.length > 10) { // pieWithTable 图例超过10个改为滚动显示
|
||
this.chartOption.legend.type = 'scroll'
|
||
}
|
||
this.myChart.setOption(this.chartOption)
|
||
if (!this.$_.isEmpty(data)) {
|
||
get(replaceUrlPlaceholder(chartParams.urlTable, tableQueryParams)).then(response2 => {
|
||
if (response2.code === 200) {
|
||
this.pieTableData = response2.data.result
|
||
} else {
|
||
this.isError = true
|
||
this.noData = true
|
||
this.errorInfo = response.msg || response.message || 'Unknown'
|
||
}
|
||
})
|
||
}
|
||
} else {
|
||
this.isError = true
|
||
this.noData = true
|
||
this.errorInfo = response.msg || response.message || 'Unknown'
|
||
}
|
||
}).finally(() => {
|
||
setTimeout(() => {
|
||
this.loading = false
|
||
this.$nextTick(() => {
|
||
this.echartsResize()
|
||
})
|
||
}, 250)
|
||
})
|
||
// legend点击事件
|
||
this.myChart.off('legendselectchanged')
|
||
this.myChart.on('legendselectchanged', function (params) {
|
||
self.myChart.setOption({
|
||
legend: { selected: { [params.name]: true } }
|
||
})
|
||
const index = self.chartOption.series[0].data.findIndex(d => d.name === params.name)
|
||
if (self.selectPieChartName !== params.name) {
|
||
self.myChart.dispatchAction({
|
||
type: 'select',
|
||
seriesIndex: 0,
|
||
dataIndex: index
|
||
})
|
||
self.selectPieChartName = params.name
|
||
self.loadPieTableData(params.name)
|
||
} else {
|
||
self.myChart.dispatchAction({
|
||
type: 'unselect',
|
||
seriesIndex: 0,
|
||
dataIndex: index
|
||
})
|
||
self.selectPieChartName = ''
|
||
self.loadPieTableData(this.allSelectPieChartName)
|
||
}
|
||
})
|
||
// 饼图色块点击事件
|
||
this.myChart.off('click')
|
||
this.myChart.on('click', function (echartParams) {
|
||
// 若是已选,则点击后取消选择,并查询全部数据
|
||
if (echartParams.name === self.selectPieChartName) {
|
||
self.selectPieChartName = ''
|
||
self.loadPieTableData(this.allSelectPieChartName)
|
||
} else { // 否则查询当前name数据
|
||
self.selectPieChartName = echartParams.name
|
||
self.loadPieTableData(echartParams.name)
|
||
}
|
||
})
|
||
},
|
||
loadPieTableData (name = '') {
|
||
const childrenParams = { startTime: parseInt(this.timeFilter.startTime / 1000), endTime: parseInt(this.timeFilter.endTime / 1000), limit: 10, order: this.orderPieTable, ...this.entity }
|
||
childrenParams[this.chartInfo.params.nameColumn] = name
|
||
get(replaceUrlPlaceholder(this.chartInfo.params.urlTable, childrenParams)).then(response => {
|
||
if (response.code === 200) {
|
||
this.pieTableData = response.data.result
|
||
}
|
||
})
|
||
},
|
||
tableLimitChange () {
|
||
const chartParams = this.chartInfo.params || null // 图表参数
|
||
this.initChartTable(chartParams)
|
||
},
|
||
initChartTable (chartParams) {
|
||
const queryParams = { startTime: parseInt(this.timeFilter.startTime / 1000), endTime: parseInt(this.timeFilter.endTime / 1000), limit: this.table.limit, order: this.table.orderBy, ...this.entity }
|
||
get(replaceUrlPlaceholder(chartParams.url, queryParams)).then(response => {
|
||
if (response.code === 200) {
|
||
if (this.$_.isEmpty(response.data.result)) {
|
||
this.noData = true
|
||
return
|
||
} else {
|
||
this.noData = false
|
||
}
|
||
this.table.tableData = response.data.result
|
||
this.table.tableColumns = this.getTableTitle(response.data.result)
|
||
this.table.currentPageData = this.getTargetPageData(1, this.table.pageSize, this.table.tableData)
|
||
} else {
|
||
this.isError = true
|
||
this.noData = true
|
||
this.errorInfo = response.msg || response.message || this.$t('tip.unknownError')
|
||
}
|
||
}).finally(() => {
|
||
this.$nextTick(() => {
|
||
this.$refs.tablePagination.resetPageNo()
|
||
})
|
||
setTimeout(() => { this.loading = false }, 250)
|
||
})
|
||
},
|
||
echartsResize () {
|
||
this.myChart && this.myChart.resize()
|
||
}
|
||
},
|
||
computed: {
|
||
computePosition () {
|
||
const gridColumn = `${this.chartInfo.x} / ${this.chartInfo.x + this.chartInfo.w}`
|
||
const gridRow = `${this.chartInfo.y} / ${this.chartInfo.y + this.chartInfo.h}`
|
||
return {
|
||
gridColumn,
|
||
gridRow
|
||
}
|
||
},
|
||
handleSingleValue () {
|
||
const value = this.singleValue.value
|
||
const unitType = this.chartInfo.params.unitType
|
||
const result = unitConvert(value, unitType)
|
||
switch (unitType) {
|
||
case unitTypes.percent: {
|
||
result[0] = result[0] < 0.01 ? '< 0.01' : result[0]
|
||
break
|
||
}
|
||
case unitTypes.time: {
|
||
result[0] = result[0] < 1 ? '< 1' : result[0]
|
||
break
|
||
}
|
||
default: break
|
||
}
|
||
return result
|
||
}
|
||
},
|
||
mounted () {
|
||
this.initChart()
|
||
this.throttle = this.$_.throttle(this.echartsResize, 500)
|
||
window.addEventListener('resize', this.throttle)
|
||
},
|
||
watch: {
|
||
chart: {
|
||
immediate: true,
|
||
deep: true,
|
||
handler (n, o) {
|
||
if (o) {
|
||
this.initChart()
|
||
}
|
||
}
|
||
},
|
||
timeFilter: {
|
||
immediate: true,
|
||
deep: true,
|
||
handler (n, o) {
|
||
if (n && o) {
|
||
this.$nextTick(() => {
|
||
this.initChart()
|
||
})
|
||
}
|
||
}
|
||
}
|
||
},
|
||
setup (props) {
|
||
const chartInfo = JSON.parse(JSON.stringify(props.chart))
|
||
chartInfo.category = getTypeCategory(props.chart.type)
|
||
return {
|
||
chartInfo,
|
||
layoutConstant,
|
||
chartTableTopOptions,
|
||
chartPieTableTopOptions,
|
||
isEcharts: isEcharts(props.chart.type),
|
||
isEchartsWithTable: isEchartsWithTable(props.chart.type),
|
||
isEchartsWithStatistics: isEchartsWithStatistics(props.chart.type),
|
||
isSingleValue: isSingleValue(props.chart.type),
|
||
isSingleValueWithEcharts: isSingleValueWithEcharts(props.chart.type),
|
||
isRelationShip: isRelationShip(props.chart.type),
|
||
isTable: isTable(props.chart.type),
|
||
isMap: isMap(props.chart.type),
|
||
isTitle: isTitle(props.chart.type),
|
||
isMapLine: isMapLine(props.chart.type),
|
||
isMapBlock: isMapBlock(props.chart.type),
|
||
isTabs: isTabs(props.chart.type),
|
||
layout: getLayout(props.chart.type),
|
||
myChart: shallowRef(null)
|
||
}
|
||
},
|
||
unmounted () {
|
||
window.removeEventListener('resize', this.throttle)
|
||
}
|
||
}
|
||
</script>
|