egirlskey/src/client/widgets/trends.vue

112 lines
2.1 KiB
Vue
Raw Normal View History

<template>
<div>
<mk-container :show-header="!props.compact">
<template #header><fa :icon="faHashtag"/>{{ $t('_widgets.trends') }}</template>
<div class="wbrkwala">
2020-02-14 17:16:11 +00:00
<mk-loading v-if="fetching"/>
<transition-group tag="div" name="chart" class="tags" v-else>
<div v-for="stat in stats" :key="stat.tag">
<div class="tag">
2020-02-14 17:16:11 +00:00
<router-link class="a" :to="`/tags/${ encodeURIComponent(stat.tag) }`" :title="stat.tag">#{{ stat.tag }}</router-link>
2020-01-29 21:11:35 +00:00
<p>{{ $t('nUsersMentioned', { n: stat.usersCount }) }}</p>
</div>
<x-chart class="chart" :src="stat.chart"/>
</div>
</transition-group>
</div>
</mk-container>
</div>
</template>
<script lang="ts">
import { faHashtag } from '@fortawesome/free-solid-svg-icons';
import MkContainer from '../components/ui/container.vue';
import define from './define';
import XChart from './trends.chart.vue';
export default define({
name: 'hashtags',
props: () => ({
compact: false
})
}).extend({
components: {
MkContainer, XChart
},
data() {
return {
stats: [],
fetching: true,
faHashtag
};
},
mounted() {
this.fetch();
this.clock = setInterval(this.fetch, 1000 * 60);
},
beforeDestroy() {
clearInterval(this.clock);
},
methods: {
func() {
this.props.compact = !this.props.compact;
this.save();
},
fetch() {
this.$root.api('hashtags/trend').then(stats => {
this.stats = stats;
this.fetching = false;
});
}
}
});
</script>
<style lang="scss" scoped>
.wbrkwala {
2020-02-14 17:16:11 +00:00
height: (62px + 1px) + (62px + 1px) + (62px + 1px) + (62px + 1px) + 62px;
overflow: hidden;
2020-02-14 17:16:11 +00:00
> .tags {
.chart-move {
transition: transform 1s ease;
}
> div {
display: flex;
align-items: center;
padding: 14px 16px;
2020-02-15 09:47:50 +00:00
border-bottom: solid 1px var(--divider);
> .tag {
flex: 1;
overflow: hidden;
2020-02-14 17:16:11 +00:00
font-size: 0.9em;
color: var(--fg);
2020-02-14 17:16:11 +00:00
> .a {
display: block;
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2020-02-14 17:16:11 +00:00
line-height: 18px;
}
> p {
margin: 0;
font-size: 75%;
opacity: 0.7;
2020-02-14 17:16:11 +00:00
line-height: 16px;
}
}
> .chart {
height: 30px;
}
}
}
}
</style>