summaryrefslogtreecommitdiff
path: root/src/client/widgets/trends.vue
blob: 51ef80bfeb67e82bb0ac5281d007a61455978cf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<template>
<div>
	<mk-container :show-header="!props.compact">
		<template #header><fa :icon="faHashtag"/>{{ $t('_widgets.trends') }}</template>

		<div class="wbrkwala">
			<transition-group tag="div" name="chart">
				<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>
						<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 i18n from '../i18n';
import XChart from './trends.chart.vue';

export default define({
	name: 'hashtags',
	props: () => ({
		compact: false
	})
}).extend({
	i18n,
	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 {
	> .fetching,
	> .empty {
		margin: 0;
		padding: 16px;
		text-align: center;
		color: var(--text);
		opacity: 0.7;

		> [data-icon] {
			margin-right: 4px;
		}
	}

	> div {
		.chart-move {
			transition: transform 1s ease;
		}

		> div {
			display: flex;
			align-items: center;
			padding: 14px 16px;

			&:not(:last-child) {
				border-bottom: solid 1px var(--divider);
			}

			> .tag {
				flex: 1;
				overflow: hidden;
				font-size: 14px;
				color: var(--fg);

				> 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>