This commit is contained in:
syuilo 2018-06-09 06:21:13 +09:00
parent 0ce9c057e1
commit e0a6d9740c
1 changed files with 9 additions and 1 deletions

View File

@ -12,6 +12,10 @@
<stop offset="100%" stop-color="hsl(90, 80%, 70%)"></stop>
</linearGradient>
<mask :id="fediMaskId" x="0" y="0" :width="viewBoxX" :height="viewBoxY">
<polygon
:points="fediPolygonPoints"
fill="#fff"
fill-opacity="0.5"/>
<polyline
:points="fediPolylinePoints"
fill="none"
@ -32,6 +36,10 @@
<stop offset="100%" stop-color="hsl(90, 80%, 70%)"></stop>
</linearGradient>
<mask :id="localMaskId" x="0" y="0" :width="viewBoxX" :height="viewBoxY">
<polygon
:points="localPolygonPoints"
fill="#fff"
fill-opacity="0.5"/>
<polyline
:points="localPolylinePoints"
fill="none"
@ -121,7 +129,7 @@ export default define({
this.save();
},
draw() {
const stats = this.props.view == 0 ? this.stats.slice(50, 100) : this.stats;
const stats = this.props.view == 0 ? this.stats.slice(-50) : this.stats;
const fediPeak = Math.max.apply(null, stats.map(x => x.all)) || 1;
const localPeak = Math.max.apply(null, stats.map(x => x.local)) || 1;