225 lines
6.9 KiB
Vue
225 lines
6.9 KiB
Vue
<template>
|
|
<div class="playerChart" ref="container">
|
|
<Scatter :data="chart" :options="chartOptions" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import {
|
|
Chart as ChartJS,
|
|
LinearScale,
|
|
PointElement,
|
|
LineElement,
|
|
Tooltip,
|
|
Legend
|
|
} from 'chart.js'
|
|
import annotationPlugin from 'chartjs-plugin-annotation'
|
|
import dataLabel from 'chartjs-plugin-datalabels'
|
|
import { Store, useStore } from 'vuex'
|
|
import { Player, Weapon } from '@/store/index'
|
|
|
|
import { Scatter } from 'vue-chartjs'
|
|
import { defineComponent } from 'vue'
|
|
|
|
ChartJS.register(LinearScale, PointElement, LineElement, Tooltip, Legend, annotationPlugin, dataLabel)
|
|
|
|
export default defineComponent({
|
|
name: 'PlayerChart',
|
|
props: {
|
|
filters: Object,
|
|
playerHighlighted: String
|
|
},
|
|
emits: ['highlightPlayer'],
|
|
components: {
|
|
Scatter
|
|
},
|
|
mounted () {
|
|
this.refreshColors++
|
|
},
|
|
computed: {
|
|
colors () {
|
|
// eslint-disable-next-line no-unused-expressions
|
|
this.refreshColors
|
|
const colors = {} as {[key:string]:string}
|
|
if (this.$refs.container) {
|
|
const style = getComputedStyle(this.$refs.container as Element)
|
|
colors.fg = style.getPropertyValue('--foreground')
|
|
colors.bg = style.getPropertyValue('--bg-color')
|
|
colors.orange = style.getPropertyValue('--orange')
|
|
colors.cyan = style.getPropertyValue('--cyan')
|
|
colors.currentLine = style.getPropertyValue('--current-line')
|
|
} else {
|
|
colors.fg = '#ffffff'
|
|
}
|
|
return colors
|
|
},
|
|
chart () {
|
|
const chartData = {
|
|
datasets: [
|
|
{
|
|
label: 'Players',
|
|
labels: [] as string[],
|
|
borderColor: [this.colors.fg],
|
|
backgroundColor: [this.colors.fg],
|
|
pointRadius: [1],
|
|
pointStyle: ['dot'],
|
|
hoverRadius: [4],
|
|
data: [] as {x:number, y:number}[]
|
|
}
|
|
]
|
|
}
|
|
if (!this.players) {
|
|
return chartData
|
|
}
|
|
chartData.datasets[0].labels = this.playerIdList
|
|
chartData.datasets[0].data = this.playerIdList.map(e => {
|
|
if (!this.players) {
|
|
return { x: 0, y: 0 }
|
|
}
|
|
return { x: this.players[e].deaths, y: this.players[e].kills }
|
|
})
|
|
chartData.datasets[0].pointRadius = Array(chartData.datasets[0].labels.length).fill(1)
|
|
chartData.datasets[0].pointStyle = Array(chartData.datasets[0].labels.length).fill('dot')
|
|
chartData.datasets[0].borderColor = Array(chartData.datasets[0].labels.length).fill(this.colors.cyan)
|
|
chartData.datasets[0].backgroundColor = chartData.datasets[0].borderColor
|
|
chartData.datasets[0].hoverRadius = Array(chartData.datasets[0].labels.length).fill(4)
|
|
if (this.$props.playerHighlighted) {
|
|
const index = this.playerIdList.indexOf(this.$props.playerHighlighted)
|
|
chartData.datasets[0].pointRadius[index] = 20
|
|
chartData.datasets[0].pointStyle[index] = 'crossRot'
|
|
chartData.datasets[0].borderColor[index] = this.colors.orange
|
|
// No need to do that since arrays are already the same (reference)
|
|
// chartData.datasets[0].backgroundColor[index] = chartData.datasets[0].borderColor[index]
|
|
chartData.datasets[0].hoverRadius[index] = 30
|
|
}
|
|
return chartData
|
|
},
|
|
chartOptions () {
|
|
const options = {
|
|
responsive: true,
|
|
maintainAspectRatio: true,
|
|
animation: { duration: 500 },
|
|
layout: { autoPadding: false },
|
|
scales: {
|
|
y: {
|
|
title: {
|
|
text: 'Kills',
|
|
display: true,
|
|
color: this.colors.fg
|
|
},
|
|
ticks: {
|
|
color: this.colors.fg
|
|
}
|
|
},
|
|
x: {
|
|
title: {
|
|
text: 'Deaths',
|
|
display: true,
|
|
color: this.colors.fg
|
|
},
|
|
ticks: {
|
|
color: this.colors.fg
|
|
}
|
|
}
|
|
},
|
|
plugins: {
|
|
tooltip: {
|
|
callbacks: {
|
|
label: (ctx:any) => {
|
|
let label:string
|
|
if (!this.players) {
|
|
label = ctx.dataset.labels[ctx.dataIndex]
|
|
} else {
|
|
label = this.players[ctx.dataset.labels[ctx.dataIndex]].username
|
|
}
|
|
label += ' (' + ctx.parsed.y + ' kills ' + ctx.parsed.x + ' deaths)'
|
|
return label
|
|
}
|
|
}
|
|
},
|
|
annotation: {},
|
|
legend: { display: false },
|
|
datalabels: {
|
|
formatter: (value:any, context:any) => {
|
|
return this.players[this.playerIdList[context.dataIndex]].username
|
|
},
|
|
backgroundColor: Array(this.playerIdList.length).fill(null),
|
|
borderColor: this.colors.fg,
|
|
borderWidth: Array(this.playerIdList.length).fill(0),
|
|
borderRadius: 5,
|
|
display: Array(this.playerIdList.length).fill('auto'),
|
|
align: '-45',
|
|
anchor: 'end',
|
|
clamp: true,
|
|
color: Array(this.playerIdList.length).fill(this.colors.fg)
|
|
}
|
|
},
|
|
onClick: (e:Event, element:any) => {
|
|
this.$emit('highlightPlayer', element.length > 0 ? this.playerIdList[element[0].index] : undefined)
|
|
},
|
|
onHover: (e:any, element:any) => {
|
|
if (!e.native.target) return
|
|
(e.native.target as HTMLElement).style.cursor = element[0] ? 'pointer' : 'default'
|
|
}
|
|
}
|
|
if (!this.players) {
|
|
return options
|
|
}
|
|
const maxX = Math.max(...Object.values(this.players).map(e => e.deaths))
|
|
const maxY = Math.max(...Object.values(this.players).map(e => e.kills))
|
|
let endX, endY
|
|
if (maxY > maxX) {
|
|
endX = maxX
|
|
endY = (maxX / maxY) * maxY
|
|
} else {
|
|
endY = maxY
|
|
endX = (maxY / maxX) * maxX
|
|
}
|
|
options.plugins.annotation = {
|
|
annotations: {
|
|
line: {
|
|
type: 'line',
|
|
yMin: 0,
|
|
xMin: 0,
|
|
yMax: endY,
|
|
xMax: endX,
|
|
borderWidth: 2,
|
|
borderColor: this.colors.orange,
|
|
borderDash: [1, 5]
|
|
}
|
|
}
|
|
}
|
|
|
|
if (this.$props.playerHighlighted) {
|
|
const index = this.playerIdList.indexOf(this.$props.playerHighlighted)
|
|
options.plugins.datalabels.display[index] = true
|
|
options.plugins.datalabels.backgroundColor[index] = this.colors.orange
|
|
options.plugins.datalabels.borderWidth[index] = 1
|
|
options.plugins.datalabels.color[index] = this.colors.bg
|
|
}
|
|
return options
|
|
},
|
|
players ():{[key:string]:Player} { return this.store.getters.getPlayerList(this.filters) || {} },
|
|
playerIdList ():string[] { return Object.keys(this.players) }
|
|
|
|
},
|
|
data () {
|
|
return {
|
|
store: useStore(),
|
|
refreshColors: 0
|
|
}
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style scoped>
|
|
canvas {
|
|
background: var(--accent);
|
|
}
|
|
@media only screen and (max-width: 922px) {
|
|
canvas{
|
|
display:none !important
|
|
}
|
|
}
|
|
</style>
|