2018-02-19 08:37:09 -06:00
|
|
|
<template>
|
|
|
|
<svg viewBox="0 0 21 7" preserveAspectRatio="none">
|
|
|
|
<rect v-for="record in data" class="day"
|
|
|
|
width="1" height="1"
|
|
|
|
:x="record.x" :y="record.date.weekday"
|
|
|
|
rx="1" ry="1"
|
|
|
|
fill="transparent">
|
|
|
|
<title>{{ record.date.year }}/{{ record.date.month }}/{{ record.date.day }}</title>
|
|
|
|
</rect>
|
|
|
|
<rect v-for="record in data" class="day"
|
|
|
|
:width="record.v" :height="record.v"
|
|
|
|
:x="record.x + ((1 - record.v) / 2)" :y="record.date.weekday + ((1 - record.v) / 2)"
|
|
|
|
rx="1" ry="1"
|
|
|
|
:fill="record.color"
|
|
|
|
style="pointer-events: none;"/>
|
|
|
|
<rect class="today"
|
|
|
|
width="1" height="1"
|
|
|
|
:x="data[data.length - 1].x" :y="data[data.length - 1].date.weekday"
|
|
|
|
rx="1" ry="1"
|
|
|
|
fill="none"
|
|
|
|
stroke-width="0.1"
|
|
|
|
stroke="#f73520"/>
|
|
|
|
</svg>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
props: ['data'],
|
|
|
|
created() {
|
2018-04-07 12:30:37 -05:00
|
|
|
this.data.forEach(d => d.total = d.notes + d.replies + d.renotes);
|
2018-02-19 08:37:09 -06:00
|
|
|
const peak = Math.max.apply(null, this.data.map(d => d.total));
|
|
|
|
|
|
|
|
let x = 0;
|
|
|
|
this.data.reverse().forEach(d => {
|
|
|
|
d.x = x;
|
|
|
|
d.date.weekday = (new Date(d.date.year, d.date.month - 1, d.date.day)).getDay();
|
|
|
|
|
2018-02-22 05:52:39 -06:00
|
|
|
d.v = peak == 0 ? 0 : d.total / (peak / 2);
|
2018-02-19 08:37:09 -06:00
|
|
|
if (d.v > 1) d.v = 1;
|
|
|
|
const ch = d.date.weekday == 0 || d.date.weekday == 6 ? 275 : 170;
|
|
|
|
const cs = d.v * 100;
|
|
|
|
const cl = 15 + ((1 - d.v) * 80);
|
|
|
|
d.color = `hsl(${ch}, ${cs}%, ${cl}%)`;
|
|
|
|
|
|
|
|
if (d.date.weekday == 6) x++;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
svg
|
|
|
|
display block
|
|
|
|
padding 10px
|
|
|
|
width 100%
|
|
|
|
|
|
|
|
> rect
|
|
|
|
transform-origin center
|
|
|
|
|
|
|
|
&.day
|
|
|
|
&:hover
|
2018-04-28 18:51:17 -05:00
|
|
|
fill rgba(#000, 0.05)
|
2018-02-19 08:37:09 -06:00
|
|
|
|
|
|
|
</style>
|