summaryrefslogtreecommitdiff
path: root/src/client/app/admin/views/dashboard.vue
blob: 3fd024a133bbdc0af630442c1c534d45375e1e7f (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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
<template>
<div class="obdskegsannmntldydackcpzezagxqfy">
	<header v-if="meta">
		<p><b>Misskey</b><span>{{ meta.version }}</span></p>
		<p><b>Machine</b><span>{{ meta.machine }}</span></p>
		<p><b>OS</b><span>{{ meta.os }}</span></p>
		<p><b>Node</b><span>{{ meta.node }}</span></p>
		<p>{{ $t('@.ai-chan-kawaii') }}</p>
	</header>

	<marquee-text v-if="instances.length > 0" class="instances" :repeat="10" :duration="60">
		<span v-for="instance in instances" class="instance">
			<b :style="{ background: instance.bg }">{{ instance.host }}</b>{{ instance.notesCount | number }} / {{ instance.usersCount | number }}
		</span>
	</marquee-text>

	<div v-if="stats" class="stats">
		<div>
			<div>
				<div><fa icon="user"/></div>
				<div>
					<span>{{ $t('accounts') }}</span>
					<b>{{ stats.originalUsersCount | number }}</b>
				</div>
			</div>
			<div>
				<span><fa icon="home"/> {{ $t('this-instance') }}</span>
				<span @click="setChartSrc('users')"><fa :icon="['far', 'chart-bar']"/></span>
			</div>
		</div>
		<div>
			<div>
				<div><fa icon="pencil-alt"/></div>
				<div>
					<span>{{ $t('notes') }}</span>
					<b>{{ stats.originalNotesCount | number }}</b>
				</div>
			</div>
			<div>
				<span><fa icon="home"/> {{ $t('this-instance') }}</span>
				<span @click="setChartSrc('notes')"><fa :icon="['far', 'chart-bar']"/></span>
			</div>
		</div>
		<div>
			<div>
				<div><fa :icon="faDatabase"/></div>
				<div>
					<span>{{ $t('drive') }}</span>
					<b>{{ stats.driveUsageLocal | bytes }}</b>
				</div>
			</div>
			<div>
				<span><fa icon="home"/> {{ $t('this-instance') }}</span>
				<span @click="setChartSrc('drive')"><fa :icon="['far', 'chart-bar']"/></span>
			</div>
		</div>
		<div>
			<div>
				<div><fa :icon="['far', 'hdd']"/></div>
				<div>
					<span>{{ $t('instances') }}</span>
					<b>{{ stats.instances | number }}</b>
				</div>
			</div>
			<div>
				<span><fa icon="globe"/> {{ $t('federated') }}</span>
				<span @click="setChartSrc('federation-instances-total')"><fa :icon="['far', 'chart-bar']"/></span>
			</div>
		</div>
	</div>

	<div class="charts">
		<x-charts ref="charts"/>
	</div>

	<div class="cpu-memory">
		<x-cpu-memory :connection="connection"/>
	</div>

	<div class="ap">
		<x-ap-log/>
	</div>
</div>
</template>

<script lang="ts">
import Vue from 'vue';
import i18n from '../../i18n';
import XCpuMemory from "./cpu-memory.vue";
import XCharts from "./charts.vue";
import XApLog from "./ap-log.vue";
import { faDatabase } from '@fortawesome/free-solid-svg-icons';
import MarqueeText from 'vue-marquee-text-component';
import randomColor from 'randomcolor';

export default Vue.extend({
	i18n: i18n('admin/views/dashboard.vue'),

	components: {
		XCpuMemory,
		XCharts,
		XApLog,
		MarqueeText
	},

	data() {
		return {
			stats: null,
			connection: null,
			meta: null,
			instances: [],
			clock: null,
			faDatabase
		};
	},

	created() {
		this.connection = this.$root.stream.useSharedConnection('serverStats');

		this.updateStats();
		this.clock = setInterval(this.updateStats, 1000);

		this.$root.getMeta().then(meta => {
			this.meta = meta;
		});

		this.$root.api('instances', {
			sort: '+notes'
		}).then(instances => {
			instances.forEach(i => {
				i.bg = randomColor({
					seed: i.host,
					luminosity: 'dark'
				});
			});
			this.instances = instances;
		});
	},

	beforeDestroy() {
		this.connection.dispose();
		clearInterval(this.clock);
	},

	methods: {
		setChartSrc(src) {
			this.$refs.charts.setSrc(src);
		},

		updateStats() {
			this.$root.api('stats', {}, false, true).then(stats => {
				this.stats = stats;
			});
		}
	}
});
</script>

<style lang="stylus" scoped>
.obdskegsannmntldydackcpzezagxqfy
	padding 16px

	@media (min-width 500px)
		padding 32px

	> header
		display flex
		padding-bottom 16px
		border-bottom solid 1px var(--adminDashboardHeaderBorder)
		color var(--adminDashboardHeaderFg)
		font-size 14px
		white-space nowrap

		@media (max-width 1000px)
			display none

		> p
			display block
			margin 0 32px 0 0
			overflow hidden
			text-overflow ellipsis

			> b
				&:after
					content ':'
					margin-right 8px

			&:last-child
				margin-left auto
				margin-right 0

	> .instances
		padding 16px
		color var(--adminDashboardHeaderFg)
		font-size 13px

		>>> .instance
			margin 0 10px

			> b
				padding 2px 6px
				margin-right 4px
				border-radius 4px
				color #fff

	> .stats
		display flex
		justify-content space-between
		margin-bottom 16px

		> div
			flex 1
			margin-right 16px
			color var(--adminDashboardCardFg)
			box-shadow 0 2px 4px rgba(0, 0, 0, 0.1)
			background var(--adminDashboardCardBg)
			border-radius 8px

			&:last-child
				margin-right 0

			> div:first-child
				display flex
				align-items center
				text-align center

				&:last-child
					margin-right 0

				> div:first-child
					padding 16px 24px
					font-size 28px

				> div:last-child
					flex 1
					padding 16px 32px 16px 0
					text-align right

					> span
						font-size 70%
						opacity 0.7

					> b
						display block

			> div:last-child
				display flex
				padding 6px 16px
				border-top solid 1px var(--adminDashboardCardDivider)

				> span
					font-size 70%
					opacity 0.7

					&:last-child
						margin-left auto
						cursor pointer

		@media (max-width 900px)
			display grid
			grid-template-columns 1fr 1fr
			grid-template-rows 1fr 1fr
			gap 16px

			> div
				margin-right 0

		@media (max-width 500px)
			display block

			> div:not(:last-child)
				margin-bottom 16px

	> .charts
		margin-bottom 16px

	> .cpu-memory
		margin-bottom 16px

</style>