summaryrefslogtreecommitdiff
path: root/packages/client/src/pages/about.vue
blob: a3a3d3cfb76d9395366a31d5628f1df80461cb1f (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
<template>
<MkSpacer :content-max="600" :margin-min="20">
	<div class="_formRoot">
		<div class="_formBlock fwhjspax" :style="{ backgroundImage: `url(${ $instance.bannerUrl })` }">
			<div class="content">
				<img :src="$instance.iconUrl || $instance.faviconUrl || '/favicon.ico'" alt="" class="icon"/>
				<div class="name">
					<b>{{ $instance.name || host }}</b>
				</div>
			</div>
		</div>

		<MkKeyValue class="_formBlock">
			<template #key>{{ $ts.description }}</template>
			<template #value>{{ $instance.description }}</template>
		</MkKeyValue>

		<FormSection>
			<MkKeyValue class="_formBlock" :copy="version">
				<template #key>Misskey</template>
				<template #value>{{ version }}</template>
			</MkKeyValue>
			<FormLink to="/about-misskey">{{ $ts.aboutMisskey }}</FormLink>
		</FormSection>

		<FormSection>
			<div class="_inputSplit">
				<MkKeyValue class="_formBlock">
					<template #key>{{ $ts.administrator }}</template>
					<template #value>{{ $instance.maintainerName }}</template>
				</MkKeyValue>
				<MkKeyValue class="_formBlock">
					<template #key>{{ $ts.contact }}</template>
					<template #value>{{ $instance.maintainerEmail }}</template>
				</MkKeyValue>
			</div>
		</FormSection>

		<FormLink v-if="$instance.tosUrl" :to="$instance.tosUrl" external>{{ $ts.tos }}</FormLink>

		<FormSuspense :p="initStats">
			<FormSection>
				<template #label>{{ $ts.statistics }}</template>
				<div class="_inputSplit">
					<MkKeyValue class="_formBlock">
						<template #key>{{ $ts.users }}</template>
						<template #value>{{ number(stats.originalUsersCount) }}</template>
					</MkKeyValue>
					<MkKeyValue class="_formBlock">
						<template #key>{{ $ts.notes }}</template>
						<template #value>{{ number(stats.originalNotesCount) }}</template>
					</MkKeyValue>
				</div>
			</FormSection>
		</FormSuspense>

		<FormSection>
			<template #label>Well-known resources</template>
			<div class="_formLinks">
				<FormLink :to="`/.well-known/host-meta`" external>host-meta</FormLink>
				<FormLink :to="`/.well-known/host-meta.json`" external>host-meta.json</FormLink>
				<FormLink :to="`/.well-known/nodeinfo`" external>nodeinfo</FormLink>
				<FormLink :to="`/robots.txt`" external>robots.txt</FormLink>
				<FormLink :to="`/manifest.json`" external>manifest.json</FormLink>
			</div>
		</FormSection>
	</div>
</MkSpacer>
</template>

<script lang="ts">
import { defineComponent } from 'vue';
import { version, instanceName } from '@/config';
import FormLink from '@/components/form/link.vue';
import FormSection from '@/components/form/section.vue';
import FormSuspense from '@/components/form/suspense.vue';
import MkKeyValue from '@/components/key-value.vue';
import * as os from '@/os';
import number from '@/filters/number';
import * as symbols from '@/symbols';
import { host } from '@/config';

export default defineComponent({
	components: {
		MkKeyValue,
		FormSection,
		FormLink,
		FormSuspense,
	},

	data() {
		return {
			[symbols.PAGE_INFO]: {
				title: this.$ts.instanceInfo,
				icon: 'fas fa-info-circle'
			},
			host,
			version,
			instanceName,
			stats: null,
			initStats: () => os.api('stats', {
			}).then((stats) => {
				this.stats = stats;
			})
		}
	},

	methods: {
		number
	}
});
</script>

<style lang="scss" scoped>
.fwhjspax {
	text-align: center;
	border-radius: 10px;
	overflow: clip;
	background-size: cover;
	background-position: center center;

	> .content {
		overflow: hidden;

		> .icon {
			display: block;
			margin: 16px auto 0 auto;
			height: 64px;
			border-radius: 8px;
		}

		> .name {
			display: block;
			padding: 16px;
			color: #fff;
			text-shadow: 0 0 8px #000;
			background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
		}
	}
}
</style>