egirlskey/src/client/app/common/views/widgets/hashtags.chart.vue

83 lines
1.8 KiB
Vue
Raw Normal View History

2018-06-11 02:24:29 +00:00
<template>
2018-06-11 03:52:47 +00:00
<svg :viewBox="`0 0 ${ viewBoxX } ${ viewBoxY }`" style="overflow:visible">
2018-06-11 02:24:29 +00:00
<defs>
<linearGradient :id="gradientId" x1="0" x2="0" y1="1" y2="0">
<stop offset="0%" stop-color="hsl(200, 80%, 70%)"></stop>
<stop offset="100%" stop-color="hsl(90, 80%, 70%)"></stop>
</linearGradient>
<mask :id="maskId" x="0" y="0" :width="viewBoxX" :height="viewBoxY">
<polygon
:points="polygonPoints"
fill="#fff"
fill-opacity="0.5"/>
<polyline
:points="polylinePoints"
fill="none"
stroke="#fff"
2018-06-11 03:52:47 +00:00
stroke-width="2"/>
2018-06-11 02:24:29 +00:00
<circle
:cx="headX"
:cy="headY"
2018-06-11 03:52:47 +00:00
r="3"
2018-06-11 02:24:29 +00:00
fill="#fff"/>
</mask>
</defs>
<rect
2018-06-11 03:52:47 +00:00
x="-10" y="-10"
:width="viewBoxX + 20" :height="viewBoxY + 20"
2018-06-11 02:24:29 +00:00
:style="`stroke: none; fill: url(#${ gradientId }); mask: url(#${ maskId })`"/>
</svg>
</template>
<script lang="ts">
import Vue from 'vue';
import * as uuid from 'uuid';
export default Vue.extend({
props: {
src: {
type: Array,
required: true
}
},
data() {
return {
viewBoxX: 50,
viewBoxY: 30,
gradientId: uuid(),
maskId: uuid(),
polylinePoints: '',
polygonPoints: '',
headX: null,
headY: null
};
},
watch: {
src() {
this.draw();
}
},
created() {
this.draw();
},
methods: {
draw() {
const stats = this.src.slice().reverse();
const peak = Math.max.apply(null, stats) || 1;
2018-06-11 03:52:47 +00:00
const polylinePoints = stats.map((n, i) => [
i * (this.viewBoxX / (stats.length - 1)),
(1 - (n / peak)) * this.viewBoxY
]);
2018-06-11 02:24:29 +00:00
this.polylinePoints = polylinePoints.map(xy => `${xy[0]},${xy[1]}`).join(' ');
2018-06-11 03:52:47 +00:00
this.polygonPoints = `0,${ this.viewBoxY } ${ this.polylinePoints } ${ this.viewBoxX },${ this.viewBoxY }`;
2018-06-11 02:24:29 +00:00
this.headX = polylinePoints[polylinePoints.length - 1][0];
this.headY = polylinePoints[polylinePoints.length - 1][1];
}
}
});
</script>