This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cyber-narrator-cn-ui/src/views/charts/Chart.vue

418 lines
16 KiB
Vue
Raw Normal View History

<template>
2021-07-01 21:39:10 +08:00
<!-- 标题 -->
2021-06-25 19:11:00 +08:00
<div
v-if="isTitle"
class="cn-chart cn-chart__title"
:style="computePosition">{{chartInfo.i18n ? $t(chartInfo.i18n) : chartInfo.name}}</div>
2021-07-01 21:39:10 +08:00
<!-- Tabs -->
<chart-tabs
v-else-if="isTabs"
class="cn-chart cn-chart__tabs"
2021-07-02 15:17:40 +08:00
:tabs="chartInfo"
2021-07-05 15:11:32 +08:00
style="grid-area: 1 / 1 / 2 / 7;"
2021-07-01 21:39:10 +08:00
></chart-tabs>
2021-06-24 17:59:51 +08:00
<!-- 地图 -->
<chart-map
2021-06-25 19:11:00 +08:00
v-else-if="isMap"
2021-06-24 17:59:51 +08:00
:style="computePosition"
>
<template #title>{{chartInfo.i18n ? $t(chartInfo.i18n) : chartInfo.name}}</template>
<template #operations>
<i class="cn-icon cn-icon-more-light"></i>
</template>
<template #default>
<div class="chart-drawing" :id="`chart${chartInfo.id}`"></div>
</template>
</chart-map>
<!-- echarts类的图如饼图柱状图折线图等 -->
<echarts-frame
2021-06-24 17:59:51 +08:00
v-else-if="isEcharts"
:layout="layout"
:style="computePosition"
2021-06-23 15:57:34 +08:00
:chartInfo="chartInfo"
>
<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">
<i class="cn-icon cn-icon-more-light"></i>
</template>
<template #default>
<div class="chart-drawing" :id="`chart${chartInfo.id}`"></div>
</template>
2021-06-23 15:57:34 +08:00
<template #footer v-if="layout.indexOf(layoutConstant.FOOTER) > -1" :class="{}">
<!-- 带Table的饼图展示Table -->
<template v-if="isEchartsWithTable">
2021-07-01 21:39:10 +08:00
<PieTable :tableData="pieTableData" ref="pieTable"/>
</template>
</template>
</echarts-frame>
<!-- 单值图 -->
<single-value
v-else-if="isSingleValue"
:type="chartInfo.type"
:style="computePosition"
>
2021-07-05 15:11:32 +08:00
<template #title><span title="TCP Connection Establish Time">{{chartInfo.i18n ? $t(chartInfo.i18n) : chartInfo.name}}</span></template>
2021-07-01 21:39:10 +08:00
<template #data>{{singleValue}}</template>
</single-value>
<!-- 表格 -->
<chart-table
v-else-if="isTable"
2021-06-21 20:33:39 +08:00
:table-columns="table.tableColumns"
:table-data="table.currentPageData"
:style="computePosition"
>
<template #title>{{chartInfo.i18n ? $t(chartInfo.i18n) : chartInfo.name}}</template>
<template #operations>
<!-- <div class="header__operation header__operation&#45;&#45;table">
<span class="option__button"><i class="cn-icon cn-icon-download"></i></span>
</div>-->
2021-06-21 20:33:39 +08:00
<div class="header__operation header__operation--table">
<el-select
size="mini"
v-model="table.limit"
class="option__select select-topn"
2021-06-21 20:33:39 +08:00
placeholder=""
popper-class="option-popper"
2021-06-21 20:33:39 +08:00
>
<el-option v-for="item in chartTableTopOptions" :key="item" :value="item">TOP&nbsp;{{item}}</el-option>
<template #prefix>TOP&nbsp;</template>
</el-select>
</div>
<div class="header__operation header__operation--table">
<el-select
size="mini"
v-model="table.orderBy"
class="option__select select-column"
2021-06-21 20:33:39 +08:00
placeholder=""
popper-class="option-popper"
2021-06-21 20:33:39 +08:00
>
<el-option v-for="item in table.tableColumns" :key="item" :value="item">{{item}}</el-option>
</el-select>
</div>
<!-- <div class="header__operation header__operation&#45;&#45;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>
2021-06-21 20:33:39 +08:00
<template #footer>
<chart-table-pagination
:total="table.tableData.length"
@pageJump="pageJump"
></chart-table-pagination>
</template>
</chart-table>
</template>
<script>
import * as echarts from 'echarts'
2021-06-24 17:59:51 +08:00
import * as am4Core from '@amcharts/amcharts4/core'
import * as am4Maps from '@amcharts/amcharts4/maps'
import am4GeoDataWorldLow from '@amcharts/amcharts4-geodata/worldChinaLow'
import {
isEcharts,
isSingleValue,
isTable,
2021-06-25 19:11:00 +08:00
isTitle,
2021-06-24 17:59:51 +08:00
isMap,
getOption,
getTypeCategory,
getLayout,
layoutConstant,
isEchartsWithTable,
2021-07-01 21:39:10 +08:00
isMapLine,
isTabs
2021-06-24 17:59:51 +08:00
} from '@/components/charts/chart-options'
import EchartsFrame from '@/components/charts/EchartsFrame'
import SingleValue from '@/components/charts/ChartSingleValue'
2021-06-24 17:59:51 +08:00
import ChartTable from '@/components/charts/ChartTable'
import ChartMap from '@/components/charts/ChartMap'
2021-06-23 15:57:34 +08:00
import PieTable from '@/components/charts/PieTable'
2021-07-01 21:39:10 +08:00
import ChartTabs from '@/components/charts/ChartTabs'
2021-06-21 20:33:39 +08:00
import ChartTablePagination from '@/components/charts/ChartTablePagination'
import { chartTableDefaultPageSize, chartTableTopOptions } from '@/utils/constants'
import { get } from '@/utils/http'
2021-07-01 15:39:48 +08:00
import { replaceUrlPlaceholder, getCapitalGeo } from '@/utils/tools'
export default {
name: 'Chart',
props: {
2021-06-23 15:57:34 +08:00
chart: Object, // 图表对象包括id、name、type等数据
startTime: {
type: Number
},
endTime: {
type: Number
}
},
components: {
EchartsFrame,
SingleValue,
2021-06-21 20:33:39 +08:00
ChartTablePagination,
2021-06-24 17:59:51 +08:00
ChartTable,
PieTable,
2021-07-01 21:39:10 +08:00
ChartMap,
ChartTabs
},
data () {
return {
2021-06-21 20:33:39 +08:00
table: {
pageSize: chartTableDefaultPageSize,
limit: chartTableTopOptions[0], // top-n
orderBy: '',
tableColumns: [], // table字段
tableData: [], // table的所有数据
currentPageData: [] // table当前页的数据
2021-06-23 15:57:34 +08:00
},
2021-06-25 19:11:00 +08:00
pieTableData: [],
2021-07-01 21:39:10 +08:00
singleValue: '-',
2021-06-25 19:11:00 +08:00
myChart: null
}
},
methods: {
initChart () {
2021-06-24 17:59:51 +08:00
const chartParams = this.chartInfo.params ? JSON.parse(this.chartInfo.params) : null // 图表参数
if (this.isMap) {
2021-06-25 19:11:00 +08:00
this.myChart = this.initMap(`chart${this.chartInfo.id}`)
2021-07-01 15:39:48 +08:00
const queryParams = { startTime: 1593070343, endTime: this.endTime, country: '', region: '' } // 统计数据的查询参数
2021-06-24 17:59:51 +08:00
if (chartParams) {
2021-07-01 15:39:48 +08:00
get(replaceUrlPlaceholder(chartParams.url, queryParams)).then(response => {
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)
})
2021-06-25 19:11:00 +08:00
if (this.isMapLine) {
const lineSeries = this.myChart.series.push(new am4Maps.MapLineSeries())
2021-07-01 23:45:04 +08:00
const gradient = new am4Core.LinearGradient()
gradient.stops.push({ color: am4Core.color() })
gradient.stops.push({ color: am4Core.color() })
gradient.stops.push({ color: am4Core.color() })
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
2021-06-25 19:11:00 +08:00
lineSeries.data = [
{
2021-07-01 15:39:48 +08:00
multiGeoLine: data.map(d => {
return [
{
latitude: parseFloat(d.serverLatitude),
longitude: parseFloat(d.serverLongitude)
},
{
latitude: parseFloat(d.clientLatitude),
longitude: parseFloat(d.clientLongitude)
}
]
2021-06-25 19:11:00 +08:00
})
}
]
const imageSeries = this.myChart.series.push(new am4Maps.MapImageSeries())
2021-07-01 23:45:04 +08:00
imageSeries.dataFields.value = 'sessions'
2021-06-25 19:11:00 +08:00
const imageSeriesTemplate = imageSeries.mapImages.template
const circle = imageSeriesTemplate.createChild(am4Core.Circle)
2021-07-01 23:45:04 +08:00
circle.fillOpacity = 0.7
2021-06-25 19:11:00 +08:00
circle.nonScaling = true
circle.tooltipText = '{title}'
2021-07-01 23:45:04 +08:00
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')
})
2021-06-25 19:11:00 +08:00
imageSeriesTemplate.propertyFields.latitude = 'latitude'
imageSeriesTemplate.propertyFields.longitude = 'longitude'
const pointData = []
2021-07-01 15:39:48 +08:00
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)
})
2021-06-24 17:59:51 +08:00
})
2021-06-25 19:11:00 +08:00
imageSeries.data = pointData
2021-06-24 17:59:51 +08:00
}
2021-06-25 19:11:00 +08:00
})
2021-07-01 15:39:48 +08:00
}
2021-06-24 17:59:51 +08:00
} else if (this.isEcharts) {
2021-06-25 10:10:35 +08:00
const dom = document.getElementById(`chart${this.chartInfo.id}`)
2021-06-25 19:11:00 +08:00
this.myChart = echarts.init(dom)
if (chartParams) {
if (this.isEchartsWithTable) {
2021-06-29 19:45:44 +08:00
const queryParams = { startTime: 1593070343, endTime: this.endTime, limit: 10 } // 统计数据的查询参数
const tableQueryParams = { startTime: 1593070343, endTime: this.endTime, limit: 10 } // 统计数据的查询参数
2021-06-25 19:11:00 +08:00
get(replaceUrlPlaceholder(chartParams.url, queryParams)).then(response => {
2021-06-29 19:45:44 +08:00
const data = response.data.result
2021-06-25 19:11:00 +08:00
this.chartOption.legend.formatter = (name) => { // 根据图表宽 显示legend的字数
let str = name
const length = Math.floor(dom.offsetWidth / 75)
if (name.length > length) {
str = name.substring(0, length - 3) + '...'
}
return str
}
this.chartOption.series[0].data = data.map(d => {
return {
data: d,
name: d[chartParams.nameColumn],
value: parseInt(d[chartParams.valueColumn])
}
})
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)
tableQueryParams[chartParams.nameColumn] = data[0][chartParams.nameColumn]
get(replaceUrlPlaceholder(chartParams.urlTable, tableQueryParams)).then(response2 => {
2021-07-01 15:39:48 +08:00
this.pieTableData = response2.data.result
2021-06-25 19:11:00 +08:00
})
})
this.myChart.on('click', function (echartParams) {
get(replaceUrlPlaceholder(chartParams.urlTable, tableQueryParams)).then(response => {
2021-07-01 15:39:48 +08:00
this.pieTableData = response.data.result
2021-06-25 19:11:00 +08:00
})
})
} else {
2021-06-29 19:45:44 +08:00
const queryParams = { startTime: 1593070343, endTime: this.endTime }
get(replaceUrlPlaceholder(chartParams.url, queryParams)).then(response => {
if (response.code === 200) {
const seriesTemplate = this.chartOption.series[0]
this.chartOption.series = response.data.result.map(r => {
return {
...seriesTemplate,
name: r.legend,
data: r.values
}
})
}
2021-07-01 15:39:48 +08:00
this.myChart.setOption(this.chartOption)
2021-06-29 19:45:44 +08:00
})
2021-06-23 15:57:34 +08:00
}
}
} else if (this.isTable) {
2021-06-24 17:59:51 +08:00
if (chartParams) {
2021-07-01 15:39:48 +08:00
const queryParams = { startTime: 1593070343, endTime: this.endTime, limit: 100, order: 'sessions' }
get(replaceUrlPlaceholder(chartParams.url, queryParams)).then(response => {
if (response.code === 200) {
const tableColumns = new Set()
2021-07-01 15:39:48 +08:00
response.data.result.forEach(d => {
Object.keys(d).forEach(k => {
tableColumns.add(k)
})
})
2021-06-21 20:33:39 +08:00
this.table.tableColumns = tableColumns
2021-07-01 15:39:48 +08:00
this.table.tableData = response.data.result
this.table.orderBy = this.table.tableColumns[0]
this.table.currentPageData = this.getTargetPageData(1, this.table.pageSize, this.table.tableData)
}
2021-07-01 15:39:48 +08:00
})
}
2021-07-01 21:39:10 +08:00
} else if (this.isSingleValue) {
if (chartParams) {
const queryParams = { startTime: 1593070343, endTime: this.endTime }
get(replaceUrlPlaceholder(chartParams.url, queryParams)).then(response => {
if (response.code === 200) {
this.singleValue = response.data.result
}
})
}
}
2021-06-21 20:33:39 +08:00
},
2021-07-01 15:39:48 +08:00
getTitle (data) {
return `Server: ${data.serverRegion ? data.serverRegion : data.serverCountry}
Client: ${data.clientRegion ? data.clientRegion : data.clientCountry}
Sessions: ${data.sessions}
Bytes: ${data.bytes}`
},
2021-06-24 17:59:51 +08:00
initMap (id) {
2021-06-29 19:45:44 +08:00
const chart = am4Core.create(id, am4Maps.MapChart)
chart.geodata = am4GeoDataWorldLow
chart.projection = new am4Maps.projections.Miller()
const polygonSeries = chart.series.push(new am4Maps.MapPolygonSeries())
polygonSeries.useGeodata = true
polygonSeries.exclude = ['AQ'] // 排除南极洲
// 鼠标悬停提示
2021-07-01 15:39:48 +08:00
/*const polygonTemplate = polygonSeries.mapPolygons.template
polygonTemplate.tooltipText = '{name}'
polygonTemplate.fontSize = '12px'
2021-06-29 19:45:44 +08:00
const hs = polygonTemplate.states.create('hover')
2021-07-01 15:39:48 +08:00
hs.properties.fill = am4Core.color('#ccc')*/
return chart
2021-06-24 17:59:51 +08:00
},
2021-06-21 20:33:39 +08:00
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)
}
},
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
}
}
},
mounted () {
this.initChart()
},
setup (props) {
const chartInfo = JSON.parse(JSON.stringify(props.chart))
chartInfo.category = getTypeCategory(props.chart.type)
return {
chartInfo,
layoutConstant,
2021-06-21 20:33:39 +08:00
chartTableTopOptions,
chartOption: getOption(props.chart.type),
isEcharts: isEcharts(props.chart.type),
isEchartsWithTable: isEchartsWithTable(props.chart.type),
isSingleValue: isSingleValue(props.chart.type),
isTable: isTable(props.chart.type),
2021-06-24 17:59:51 +08:00
isMap: isMap(props.chart.type),
2021-06-25 19:11:00 +08:00
isTitle: isTitle(props.chart.type),
2021-06-24 17:59:51 +08:00
isMapLine: isMapLine(props.chart.type),
2021-07-01 21:39:10 +08:00
isTabs: isTabs(props.chart.type),
layout: getLayout(props.chart.type)
}
}
}
</script>
<style>
</style>