2018-06-10 21:24:29 -05:00
|
|
|
<template>
|
2018-06-10 22:52:47 -05:00
|
|
|
<svg :viewBox="`0 0 ${ viewBoxX } ${ viewBoxY }`" style="overflow:visible">
|
2018-06-10 21:24:29 -05: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"
|
2022-06-21 00:39:23 -05:00
|
|
|
fill-opacity="0.5"
|
|
|
|
/>
|
2018-06-10 21:24:29 -05:00
|
|
|
<polyline
|
|
|
|
:points="polylinePoints"
|
|
|
|
fill="none"
|
|
|
|
stroke="#fff"
|
2022-06-21 00:39:23 -05:00
|
|
|
stroke-width="2"
|
|
|
|
/>
|
2018-06-10 21:24:29 -05:00
|
|
|
<circle
|
|
|
|
:cx="headX"
|
|
|
|
:cy="headY"
|
2018-06-10 22:52:47 -05:00
|
|
|
r="3"
|
2022-06-21 00:39:23 -05:00
|
|
|
fill="#fff"
|
|
|
|
/>
|
2018-06-10 21:24:29 -05:00
|
|
|
</mask>
|
|
|
|
</defs>
|
|
|
|
<rect
|
2018-06-10 22:52:47 -05:00
|
|
|
x="-10" y="-10"
|
|
|
|
:width="viewBoxX + 20" :height="viewBoxY + 20"
|
2022-06-21 00:39:23 -05:00
|
|
|
:style="`stroke: none; fill: url(#${ gradientId }); mask: url(#${ maskId })`"
|
|
|
|
/>
|
2018-06-10 21:24:29 -05:00
|
|
|
</svg>
|
|
|
|
</template>
|
|
|
|
|
2022-06-21 00:39:23 -05:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onUnmounted, watch } from 'vue';
|
2019-08-17 22:42:58 -05:00
|
|
|
import { v4 as uuid } from 'uuid';
|
2018-06-10 21:24:29 -05:00
|
|
|
|
2022-06-21 00:39:23 -05:00
|
|
|
const props = defineProps<{
|
|
|
|
src: number[];
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const viewBoxX = 50;
|
|
|
|
const viewBoxY = 50;
|
|
|
|
const gradientId = uuid();
|
|
|
|
const maskId = uuid();
|
|
|
|
let polylinePoints = $ref('');
|
|
|
|
let polygonPoints = $ref('');
|
|
|
|
let headX = $ref<number | null>(null);
|
|
|
|
let headY = $ref<number | null>(null);
|
|
|
|
let clock = $ref<number | null>(null);
|
|
|
|
|
|
|
|
function draw(): void {
|
|
|
|
const stats = props.src.slice().reverse();
|
|
|
|
const peak = Math.max.apply(null, stats) || 1;
|
|
|
|
|
|
|
|
const _polylinePoints = stats.map((n, i) => [
|
|
|
|
i * (viewBoxX / (stats.length - 1)),
|
|
|
|
(1 - (n / peak)) * viewBoxY,
|
|
|
|
]);
|
|
|
|
|
|
|
|
polylinePoints = _polylinePoints.map(xy => `${xy[0]},${xy[1]}`).join(' ');
|
2018-06-11 12:18:29 -05:00
|
|
|
|
2022-06-21 00:39:23 -05:00
|
|
|
polygonPoints = `0,${ viewBoxY } ${ polylinePoints } ${ viewBoxX },${ viewBoxY }`;
|
2018-06-10 21:24:29 -05:00
|
|
|
|
2022-06-21 00:39:23 -05:00
|
|
|
headX = _polylinePoints[_polylinePoints.length - 1][0];
|
|
|
|
headY = _polylinePoints[_polylinePoints.length - 1][1];
|
|
|
|
}
|
2018-06-10 22:52:47 -05:00
|
|
|
|
2022-06-21 00:39:23 -05:00
|
|
|
watch(() => props.src, draw, { immediate: true });
|
2018-06-10 21:24:29 -05:00
|
|
|
|
2022-06-21 00:39:23 -05:00
|
|
|
// Vueが何故かWatchを発動させない場合があるので
|
|
|
|
clock = window.setInterval(draw, 1000);
|
2018-06-10 21:24:29 -05:00
|
|
|
|
2022-06-21 00:39:23 -05:00
|
|
|
onUnmounted(() => {
|
|
|
|
window.clearInterval(clock);
|
2018-06-10 21:24:29 -05:00
|
|
|
});
|
|
|
|
</script>
|