2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-07-25 02:56:56 +00:00
|
|
|
<template>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkContainer :showHeader="widgetProps.showHeader" :foldable="foldable" :scrollable="scrollable" data-cy-mkw-federation class="mkw-federation">
|
2023-01-14 23:30:29 +00:00
|
|
|
<template #icon><i class="ti ti-whirl"></i></template>
|
|
|
|
<template #header>{{ i18n.ts._widgets.federation }}</template>
|
2020-07-25 02:56:56 +00:00
|
|
|
|
|
|
|
<div class="wbrkwalb">
|
2020-10-17 11:12:00 +00:00
|
|
|
<MkLoading v-if="fetching"/>
|
2023-04-01 04:42:40 +00:00
|
|
|
<TransitionGroup v-else tag="div" :name="defaultStore.state.animation ? 'chart' : ''" class="instances">
|
2020-07-26 03:55:46 +00:00
|
|
|
<div v-for="(instance, i) in instances" :key="instance.id" class="instance">
|
2022-12-08 08:33:04 +00:00
|
|
|
<img :src="getInstanceIcon(instance)" alt=""/>
|
2020-07-26 03:55:46 +00:00
|
|
|
<div class="body">
|
2023-01-06 07:32:34 +00:00
|
|
|
<MkA class="a" :to="`/instance-info/${instance.host}`" behavior="window" :title="instance.host">{{ instance.host }}</MkA>
|
2020-07-25 12:01:14 +00:00
|
|
|
<p>{{ instance.softwareName || '?' }} {{ instance.softwareVersion }}</p>
|
2020-07-25 02:56:56 +00:00
|
|
|
</div>
|
2020-10-17 11:12:00 +00:00
|
|
|
<MkMiniChart class="chart" :src="charts[i].requests.received"/>
|
2020-07-25 02:56:56 +00:00
|
|
|
</div>
|
2022-12-30 04:37:14 +00:00
|
|
|
</TransitionGroup>
|
2020-07-25 02:56:56 +00:00
|
|
|
</div>
|
2020-10-17 11:12:00 +00:00
|
|
|
</MkContainer>
|
2020-07-25 02:56:56 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
<script lang="ts" setup>
|
2023-02-16 14:09:41 +00:00
|
|
|
import { ref } from 'vue';
|
2023-05-19 07:20:53 +00:00
|
|
|
import { useWidgetPropsManager, Widget, WidgetComponentEmits, WidgetComponentExpose, WidgetComponentProps } from './widget';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { GetFormResultType } from '@/scripts/form.js';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkContainer from '@/components/MkContainer.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import MkMiniChart from '@/components/MkMiniChart.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { useInterval } from '@/scripts/use-interval.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { getProxiedImageUrlNullable } from '@/scripts/media-proxy.js';
|
|
|
|
import { defaultStore } from '@/store.js';
|
2020-07-25 02:56:56 +00:00
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
const name = 'federation';
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
const widgetPropsDef = {
|
|
|
|
showHeader: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
default: true,
|
2020-07-25 02:56:56 +00:00
|
|
|
},
|
2022-01-08 11:30:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
type WidgetProps = GetFormResultType<typeof widgetPropsDef>;
|
|
|
|
|
2023-05-19 07:20:53 +00:00
|
|
|
const props = defineProps<WidgetComponentProps<WidgetProps>>();
|
|
|
|
const emit = defineEmits<WidgetComponentEmits<WidgetProps>>();
|
2022-01-08 11:30:01 +00:00
|
|
|
|
|
|
|
const { widgetProps, configure } = useWidgetPropsManager(name,
|
|
|
|
widgetPropsDef,
|
|
|
|
props,
|
|
|
|
emit,
|
|
|
|
);
|
|
|
|
|
|
|
|
const instances = ref([]);
|
|
|
|
const charts = ref([]);
|
|
|
|
const fetching = ref(true);
|
|
|
|
|
|
|
|
const fetch = async () => {
|
2022-01-30 12:48:40 +00:00
|
|
|
const fetchedInstances = await os.api('federation/instances', {
|
2023-01-03 00:00:42 +00:00
|
|
|
sort: '+latestRequestReceivedAt',
|
2022-06-25 09:26:31 +00:00
|
|
|
limit: 5,
|
2022-01-08 11:30:01 +00:00
|
|
|
});
|
2022-06-25 09:26:31 +00:00
|
|
|
const fetchedCharts = await Promise.all(fetchedInstances.map(i => os.apiGet('charts/instance', { host: i.host, limit: 16, span: 'hour' })));
|
2022-01-30 12:48:40 +00:00
|
|
|
instances.value = fetchedInstances;
|
|
|
|
charts.value = fetchedCharts;
|
2022-01-08 11:30:01 +00:00
|
|
|
fetching.value = false;
|
|
|
|
};
|
|
|
|
|
2022-06-25 18:12:58 +00:00
|
|
|
useInterval(fetch, 1000 * 60, {
|
|
|
|
immediate: true,
|
|
|
|
afterMounted: true,
|
2022-01-08 11:30:01 +00:00
|
|
|
});
|
|
|
|
|
2022-12-08 08:33:04 +00:00
|
|
|
function getInstanceIcon(instance): string {
|
|
|
|
return getProxiedImageUrlNullable(instance.iconUrl, 'preview') ?? getProxiedImageUrlNullable(instance.faviconUrl, 'preview') ?? '/client-assets/dummy.png';
|
|
|
|
}
|
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
defineExpose<WidgetComponentExpose>({
|
|
|
|
name,
|
|
|
|
configure,
|
|
|
|
id: props.widget ? props.widget.id : null,
|
2020-07-25 02:56:56 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2020-07-25 02:56:56 +00:00
|
|
|
.wbrkwalb {
|
2020-07-26 04:16:32 +00:00
|
|
|
$bodyTitleHieght: 18px;
|
|
|
|
$bodyInfoHieght: 16px;
|
|
|
|
|
2020-07-25 02:56:56 +00:00
|
|
|
height: (62px + 1px) + (62px + 1px) + (62px + 1px) + (62px + 1px) + 62px;
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-07-25 02:56:56 +00:00
|
|
|
|
|
|
|
> .instances {
|
|
|
|
.chart-move {
|
|
|
|
transition: transform 1s ease;
|
|
|
|
}
|
|
|
|
|
2020-07-26 03:55:46 +00:00
|
|
|
> .instance {
|
2020-07-25 02:56:56 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 14px 16px;
|
2021-04-10 03:40:50 +00:00
|
|
|
border-bottom: solid 0.5px var(--divider);
|
2020-07-25 02:56:56 +00:00
|
|
|
|
2020-07-26 03:55:46 +00:00
|
|
|
> img {
|
|
|
|
display: block;
|
2020-07-26 04:16:32 +00:00
|
|
|
width: ($bodyTitleHieght + $bodyInfoHieght);
|
|
|
|
height: ($bodyTitleHieght + $bodyInfoHieght);
|
2020-07-26 03:55:46 +00:00
|
|
|
object-fit: cover;
|
2020-07-26 04:16:32 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
margin-right: 8px;
|
2020-07-26 03:55:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .body {
|
2020-07-25 02:56:56 +00:00
|
|
|
flex: 1;
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-07-25 02:56:56 +00:00
|
|
|
font-size: 0.9em;
|
|
|
|
color: var(--fg);
|
2021-05-11 03:55:38 +00:00
|
|
|
padding-right: 8px;
|
2020-07-25 02:56:56 +00:00
|
|
|
|
|
|
|
> .a {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
white-space: nowrap;
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-07-25 02:56:56 +00:00
|
|
|
text-overflow: ellipsis;
|
2020-07-26 04:16:32 +00:00
|
|
|
line-height: $bodyTitleHieght;
|
2020-07-25 02:56:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> p {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 75%;
|
|
|
|
opacity: 0.7;
|
2020-07-26 04:16:32 +00:00
|
|
|
line-height: $bodyInfoHieght;
|
2021-05-11 03:55:38 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2020-07-25 02:56:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .chart {
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|