summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/views/widgets/trends.vue
blob: c33bf2f2f2f0352e404b71ddddbcfc6b8533f990 (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
<template>
<div class="mkw-trends">
	<mk-widget-container :show-header="!props.compact">
		<template slot="header">%fa:fire%%i18n:@title%</template>
		<button slot="func" title="%i18n:@refresh%" @click="fetch">%fa:sync%</button>

		<div class="mkw-trends--body">
			<p class="fetching" v-if="fetching">%fa:spinner .pulse .fw%%i18n:common.loading%<mk-ellipsis/></p>
			<div class="note" v-else-if="note != null">
				<p class="text"><router-link :to="note | notePage">{{ note.text }}</router-link></p>
				<p class="author"><router-link :to="note.user | userPage">@{{ note.user | acct }}</router-link></p>
			</div>
			<p class="empty" v-else>%i18n:@nothing%</p>
		</div>
	</mk-widget-container>
</div>
</template>

<script lang="ts">
import define from '../../../common/define-widget';

export default define({
	name: 'trends',
	props: () => ({
		compact: false
	})
}).extend({
	data() {
		return {
			note: null,
			fetching: true,
			offset: 0
		};
	},
	mounted() {
		this.fetch();
	},
	methods: {
		func() {
			this.props.compact = !this.props.compact;
			this.save();
		},
		fetch() {
			this.fetching = true;
			this.note = null;

			(this as any).api('notes/trend', {
				limit: 1,
				offset: this.offset,
				renote: false,
				reply: false,
				media: false,
				poll: false
			}).then(notes => {
				const note = notes ? notes[0] : null;
				if (note == null) {
					this.offset = 0;
				} else {
					this.offset++;
				}
				this.note = note;
				this.fetching = false;
			});
		}
	}
});
</script>

<style lang="stylus" scoped>
root(isDark)
	.mkw-trends--body
		> .note
			padding 16px
			font-size 12px
			font-style oblique
			color #555

			> p
				margin 0

			> .text,
			> .author
				> a
					color inherit

		> .empty
			margin 0
			padding 16px
			text-align center
			color #aaa

		> .fetching
			margin 0
			padding 16px
			text-align center
			color #aaa

			> [data-fa]
				margin-right 4px

.mkw-trends[data-darkmode]
	root(true)

.mkw-trends:not([data-darkmode])
	root(false)

</style>