2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2021-11-28 12:07:37 +01:00
|
|
|
<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>
|
2021-04-25 05:31:11 +02:00
|
|
|
</div>
|
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
<MkKeyValue class="_formBlock">
|
|
|
|
<template #key>{{ $ts.description }}</template>
|
|
|
|
<template #value>{{ $instance.description }}</template>
|
|
|
|
</MkKeyValue>
|
2021-04-25 05:31:11 +02:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
<FormSection>
|
|
|
|
<MkKeyValue class="_formBlock" :copy="version">
|
|
|
|
<template #key>Misskey</template>
|
|
|
|
<template #value>{{ version }}</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
<FormLink to="/about-misskey">{{ $ts.aboutMisskey }}</FormLink>
|
|
|
|
</FormSection>
|
2020-11-28 04:44:39 +01:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
<FormSection>
|
2021-12-04 10:27:31 +01:00
|
|
|
<div class="_inputSplit _formBlock">
|
2021-11-28 12:07:37 +01:00
|
|
|
<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>
|
2021-12-04 10:27:31 +01:00
|
|
|
<FormLink v-if="$instance.tosUrl" :to="$instance.tosUrl" class="_formBlock" external>{{ $ts.tos }}</FormLink>
|
2021-11-28 12:07:37 +01:00
|
|
|
</FormSection>
|
2020-11-29 14:59:09 +01:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
<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>
|
2021-04-25 05:31:11 +02:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
<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>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineComponent } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { version, instanceName } from '@/config';
|
2021-11-28 12:07:37 +01:00
|
|
|
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';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
|
|
|
import number from '@/filters/number';
|
|
|
|
import * as symbols from '@/symbols';
|
|
|
|
import { host } from '@/config';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-02-16 18:21:27 +01:00
|
|
|
components: {
|
2021-11-28 12:07:37 +01:00
|
|
|
MkKeyValue,
|
|
|
|
FormSection,
|
2020-11-28 04:44:39 +01:00
|
|
|
FormLink,
|
2021-04-25 05:31:11 +02:00
|
|
|
FormSuspense,
|
2020-02-16 18:21:27 +01:00
|
|
|
},
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
data() {
|
|
|
|
return {
|
2021-04-10 05:54:12 +02:00
|
|
|
[symbols.PAGE_INFO]: {
|
2020-12-26 02:47:36 +01:00
|
|
|
title: this.$ts.instanceInfo,
|
2021-04-20 16:22:59 +02:00
|
|
|
icon: 'fas fa-info-circle'
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
2021-04-25 05:31:11 +02:00
|
|
|
host,
|
2020-01-29 20:37:25 +01:00
|
|
|
version,
|
2020-11-28 04:44:39 +01:00
|
|
|
instanceName,
|
2020-12-30 16:11:06 +01:00
|
|
|
stats: null,
|
2021-04-25 05:31:11 +02:00
|
|
|
initStats: () => os.api('stats', {
|
|
|
|
}).then((stats) => {
|
|
|
|
this.stats = stats;
|
|
|
|
})
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-12-30 16:11:06 +01:00
|
|
|
methods: {
|
|
|
|
number
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2021-04-25 05:31:11 +02:00
|
|
|
.fwhjspax {
|
|
|
|
text-align: center;
|
2021-11-28 12:07:37 +01:00
|
|
|
border-radius: 10px;
|
|
|
|
overflow: clip;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center center;
|
2020-11-28 04:44:39 +01:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
> .content {
|
|
|
|
overflow: hidden;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
> .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));
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|