2018-09-03 12:09:56 -05:00
|
|
|
<template>
|
|
|
|
<div class="csqvmxybqbycalfhkxvyfrgbrdalkaoc">
|
2018-11-08 12:44:35 -06:00
|
|
|
<p class="fetching" v-if="fetching"><fa icon="spinner .pulse" fixed-width/>{{ $t('@.loading') }}<mk-ellipsis/></p>
|
|
|
|
<p class="empty" v-else-if="stats.length == 0"><fa icon="exclamation-circle"/>{{ $t('empty') }}</p>
|
2018-09-03 12:09:56 -05:00
|
|
|
<!-- トランジションを有効にするとなぜかメモリリークする -->
|
2018-09-15 13:46:53 -05:00
|
|
|
<transition-group v-else tag="div" name="chart">
|
2018-09-03 12:09:56 -05:00
|
|
|
<div v-for="stat in stats" :key="stat.tag">
|
|
|
|
<div class="tag">
|
|
|
|
<router-link :to="`/tags/${ encodeURIComponent(stat.tag) }`" :title="stat.tag">#{{ stat.tag }}</router-link>
|
2018-11-09 06:42:36 -06:00
|
|
|
<p>{{ $t('count').replace('{}', stat.usersCount) }}</p>
|
2018-09-03 12:09:56 -05:00
|
|
|
</div>
|
|
|
|
<x-chart class="chart" :src="stat.chart"/>
|
|
|
|
</div>
|
2018-09-15 13:46:53 -05:00
|
|
|
</transition-group>
|
2018-09-03 12:09:56 -05:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 12:44:35 -06:00
|
|
|
import i18n from '../../../i18n';
|
2018-09-03 12:09:56 -05:00
|
|
|
import XChart from './trends.chart.vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 12:44:35 -06:00
|
|
|
i18n: i18n('common/views/components/trends.vue'),
|
2018-09-03 12:09:56 -05:00
|
|
|
components: {
|
|
|
|
XChart
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
stats: [],
|
|
|
|
fetching: true,
|
|
|
|
clock: null
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.fetch();
|
|
|
|
this.clock = setInterval(this.fetch, 1000 * 60);
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
clearInterval(this.clock);
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
fetch() {
|
2018-11-08 17:13:34 -06:00
|
|
|
this.$root.api('hashtags/trend').then(stats => {
|
2018-09-03 12:09:56 -05:00
|
|
|
this.stats = stats;
|
|
|
|
this.fetching = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-28 05:59:19 -05:00
|
|
|
.csqvmxybqbycalfhkxvyfrgbrdalkaoc
|
2018-09-03 12:09:56 -05:00
|
|
|
> .fetching
|
|
|
|
> .empty
|
|
|
|
margin 0
|
|
|
|
padding 16px
|
|
|
|
text-align center
|
2018-09-28 05:59:19 -05:00
|
|
|
color var(--text)
|
|
|
|
opacity 0.7
|
2018-09-03 12:09:56 -05:00
|
|
|
|
2018-11-05 10:40:11 -06:00
|
|
|
> [data-icon]
|
2018-09-03 12:09:56 -05:00
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
> div
|
|
|
|
.chart-move
|
|
|
|
transition transform 1s ease
|
|
|
|
|
|
|
|
> div
|
|
|
|
display flex
|
|
|
|
align-items center
|
|
|
|
padding 14px 16px
|
|
|
|
|
|
|
|
&:not(:last-child)
|
2018-09-28 05:59:19 -05:00
|
|
|
border-bottom solid 1px var(--faceDivider)
|
2018-09-03 12:09:56 -05:00
|
|
|
|
|
|
|
> .tag
|
|
|
|
flex 1
|
|
|
|
overflow hidden
|
|
|
|
font-size 14px
|
2018-09-28 05:59:19 -05:00
|
|
|
color var(--text)
|
2018-09-03 12:09:56 -05:00
|
|
|
|
|
|
|
> a
|
|
|
|
display block
|
|
|
|
width 100%
|
|
|
|
white-space nowrap
|
|
|
|
overflow hidden
|
|
|
|
text-overflow ellipsis
|
|
|
|
color inherit
|
|
|
|
|
|
|
|
> p
|
|
|
|
margin 0
|
|
|
|
font-size 75%
|
|
|
|
opacity 0.7
|
|
|
|
|
|
|
|
> .chart
|
|
|
|
height 30px
|
|
|
|
|
|
|
|
</style>
|