Add swiper to about
This commit is contained in:
parent
f7ed1b77cc
commit
d5ed3dbe9d
|
@ -1,86 +1,104 @@
|
||||||
<template>
|
<template>
|
||||||
<MkStickyContainer>
|
<MkStickyContainer>
|
||||||
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
||||||
<MkSpacer v-if="tab === 'overview'" :content-max="600" :margin-min="20">
|
<swiper
|
||||||
<div class="_formRoot">
|
:modules="[Virtual]"
|
||||||
<div class="_formBlock fwhjspax" :style="{ backgroundImage: `url(${ $instance.bannerUrl })` }">
|
:space-between="20"
|
||||||
<div class="content">
|
:virtual="true"
|
||||||
<img :src="$instance.iconUrl || $instance.faviconUrl || '/favicon.ico'" alt="" class="icon"/>
|
@swiper="setSwiperRef"
|
||||||
<div class="name">
|
@slide-change="onSlideChange"
|
||||||
<b>{{ $instance.name || host }}</b>
|
>
|
||||||
|
<swiper-slide>
|
||||||
|
<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>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<MkKeyValue class="_formBlock">
|
|
||||||
<template #key>{{ i18n.ts.description }}</template>
|
|
||||||
<template #value>{{ $instance.description }}</template>
|
|
||||||
</MkKeyValue>
|
|
||||||
|
|
||||||
<FormSection>
|
|
||||||
<MkKeyValue class="_formBlock" :copy="version">
|
|
||||||
<template #key>Calckey</template>
|
|
||||||
<template #value>{{ version }}</template>
|
|
||||||
</MkKeyValue>
|
|
||||||
<FormLink to="/about-misskey">{{ i18n.ts.aboutMisskey }}</FormLink>
|
|
||||||
</FormSection>
|
|
||||||
|
|
||||||
<FormSection>
|
|
||||||
<FormSplit>
|
|
||||||
<MkKeyValue class="_formBlock">
|
<MkKeyValue class="_formBlock">
|
||||||
<template #key>{{ i18n.ts.administrator }}</template>
|
<template #key>{{ i18n.ts.description }}</template>
|
||||||
<template #value>{{ $instance.maintainerName }}</template>
|
<template #value>{{ $instance.description }}</template>
|
||||||
</MkKeyValue>
|
</MkKeyValue>
|
||||||
<MkKeyValue class="_formBlock">
|
|
||||||
<template #key>{{ i18n.ts.contact }}</template>
|
|
||||||
<template #value>{{ $instance.maintainerEmail }}</template>
|
|
||||||
</MkKeyValue>
|
|
||||||
</FormSplit>
|
|
||||||
<FormLink v-if="$instance.tosUrl" :to="$instance.tosUrl" class="_formBlock" external>{{ i18n.ts.tos }}</FormLink>
|
|
||||||
</FormSection>
|
|
||||||
|
|
||||||
<FormSuspense :p="initStats">
|
<FormSection>
|
||||||
<FormSection>
|
<MkKeyValue class="_formBlock" :copy="version">
|
||||||
<template #label>{{ i18n.ts.statistics }}</template>
|
<template #key>Calckey</template>
|
||||||
<FormSplit>
|
<template #value>{{ version }}</template>
|
||||||
<MkKeyValue class="_formBlock">
|
|
||||||
<template #key>{{ i18n.ts.users }}</template>
|
|
||||||
<template #value>{{ number(stats.originalUsersCount) }}</template>
|
|
||||||
</MkKeyValue>
|
</MkKeyValue>
|
||||||
<MkKeyValue class="_formBlock">
|
<FormLink to="/about-misskey">{{ i18n.ts.aboutMisskey }}</FormLink>
|
||||||
<template #key>{{ i18n.ts.notes }}</template>
|
</FormSection>
|
||||||
<template #value>{{ number(stats.originalNotesCount) }}</template>
|
|
||||||
</MkKeyValue>
|
|
||||||
</FormSplit>
|
|
||||||
</FormSection>
|
|
||||||
</FormSuspense>
|
|
||||||
|
|
||||||
<FormSection>
|
<FormSection>
|
||||||
<template #label>Well-known resources</template>
|
<FormSplit>
|
||||||
<div class="_formLinks">
|
<MkKeyValue class="_formBlock">
|
||||||
<FormLink :to="`/.well-known/host-meta`" external>host-meta</FormLink>
|
<template #key>{{ i18n.ts.administrator }}</template>
|
||||||
<FormLink :to="`/.well-known/host-meta.json`" external>host-meta.json</FormLink>
|
<template #value>{{ $instance.maintainerName }}</template>
|
||||||
<FormLink :to="`/.well-known/nodeinfo`" external>nodeinfo</FormLink>
|
</MkKeyValue>
|
||||||
<FormLink :to="`/robots.txt`" external>robots.txt</FormLink>
|
<MkKeyValue class="_formBlock">
|
||||||
<FormLink :to="`/manifest.json`" external>manifest.json</FormLink>
|
<template #key>{{ i18n.ts.contact }}</template>
|
||||||
|
<template #value>{{ $instance.maintainerEmail }}</template>
|
||||||
|
</MkKeyValue>
|
||||||
|
</FormSplit>
|
||||||
|
<FormLink v-if="$instance.tosUrl" :to="$instance.tosUrl" class="_formBlock" external>{{ i18n.ts.tos }}</FormLink>
|
||||||
|
</FormSection>
|
||||||
|
|
||||||
|
<FormSuspense :p="initStats">
|
||||||
|
<FormSection>
|
||||||
|
<template #label>{{ i18n.ts.statistics }}</template>
|
||||||
|
<FormSplit>
|
||||||
|
<MkKeyValue class="_formBlock">
|
||||||
|
<template #key>{{ i18n.ts.users }}</template>
|
||||||
|
<template #value>{{ number(stats.originalUsersCount) }}</template>
|
||||||
|
</MkKeyValue>
|
||||||
|
<MkKeyValue class="_formBlock">
|
||||||
|
<template #key>{{ i18n.ts.notes }}</template>
|
||||||
|
<template #value>{{ number(stats.originalNotesCount) }}</template>
|
||||||
|
</MkKeyValue>
|
||||||
|
</FormSplit>
|
||||||
|
</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>
|
</div>
|
||||||
</FormSection>
|
</MkSpacer>
|
||||||
</div>
|
</swiper-slide>
|
||||||
</MkSpacer>
|
<swiper-slide>
|
||||||
<MkSpacer v-else-if="tab === 'emojis'" :content-max="1000" :margin-min="20">
|
<MkSpacer :content-max="1000" :margin-min="20">
|
||||||
<XEmojis/>
|
<XEmojis/>
|
||||||
</MkSpacer>
|
</MkSpacer>
|
||||||
<MkSpacer v-else-if="tab === 'federation'" :content-max="1000" :margin-min="20">
|
</swiper-slide>
|
||||||
<XFederation/>
|
<swiper-slide>
|
||||||
</MkSpacer>
|
<MkSpacer :content-max="1000" :margin-min="20">
|
||||||
<MkSpacer v-else-if="tab === 'charts'" :content-max="1000" :margin-min="20">
|
<XFederation/>
|
||||||
<MkInstanceStats :chart-limit="500" :detailed="true"/>
|
</MkSpacer>
|
||||||
</MkSpacer>
|
</swiper-slide>
|
||||||
|
<swiper-slide>
|
||||||
|
<MkSpacer :content-max="1000" :margin-min="20">
|
||||||
|
<MkInstanceStats :chart-limit="500" :detailed="true"/>
|
||||||
|
</MkSpacer>
|
||||||
|
</swiper-slide>
|
||||||
|
</swiper>
|
||||||
</MkStickyContainer>
|
</MkStickyContainer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { ref, computed } from 'vue';
|
import { ref, computed } from 'vue';
|
||||||
|
import { Virtual } from 'swiper';
|
||||||
|
import { Swiper, SwiperSlide } from 'swiper/vue';
|
||||||
import XEmojis from './about.emojis.vue';
|
import XEmojis from './about.emojis.vue';
|
||||||
import XFederation from './about.federation.vue';
|
import XFederation from './about.federation.vue';
|
||||||
import { version, instanceName , host } from '@/config';
|
import { version, instanceName , host } from '@/config';
|
||||||
|
@ -95,6 +113,8 @@ import number from '@/filters/number';
|
||||||
import { i18n } from '@/i18n';
|
import { i18n } from '@/i18n';
|
||||||
import { definePageMetadata } from '@/scripts/page-metadata';
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
||||||
import { iAmModerator } from '@/account';
|
import { iAmModerator } from '@/account';
|
||||||
|
import 'swiper/scss';
|
||||||
|
import 'swiper/scss/virtual';
|
||||||
|
|
||||||
const props = withDefaults(defineProps<{
|
const props = withDefaults(defineProps<{
|
||||||
initialTab?: string;
|
initialTab?: string;
|
||||||
|
@ -104,6 +124,8 @@ const props = withDefaults(defineProps<{
|
||||||
|
|
||||||
let stats = $ref(null);
|
let stats = $ref(null);
|
||||||
let tab = $ref(props.initialTab);
|
let tab = $ref(props.initialTab);
|
||||||
|
let tabs = ['overview', 'emojis','charts'];
|
||||||
|
if (iAmModerator) tabs.push('federation');
|
||||||
|
|
||||||
const initStats = () => os.api('stats', {
|
const initStats = () => os.api('stats', {
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
|
@ -142,6 +164,21 @@ definePageMetadata(computed(() => ({
|
||||||
title: i18n.ts.instanceInfo,
|
title: i18n.ts.instanceInfo,
|
||||||
icon: 'fas fa-info-circle',
|
icon: 'fas fa-info-circle',
|
||||||
})));
|
})));
|
||||||
|
|
||||||
|
let swiperRef = null;
|
||||||
|
|
||||||
|
function setSwiperRef(swiper) {
|
||||||
|
swiperRef = swiper;
|
||||||
|
syncSlide(tabs.indexOf(tab));
|
||||||
|
}
|
||||||
|
|
||||||
|
function onSlideChange() {
|
||||||
|
tab = tabs[swiperRef.activeIndex];
|
||||||
|
}
|
||||||
|
|
||||||
|
function syncSlide(index) {
|
||||||
|
swiperRef.slideTo(index);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|
Loading…
Reference in New Issue