2020-07-25 02:56:56 +00:00
|
|
|
<template>
|
2022-05-28 05:28:12 +00:00
|
|
|
<MkContainer :show-header="widgetProps.showHeader" :foldable="foldable" :scrollable="scrollable" class="mkw-federation">
|
2021-04-20 14:22:59 +00:00
|
|
|
<template #header><i class="fas fa-globe"></i>{{ $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"/>
|
2022-01-25 14:18:21 +00:00
|
|
|
<transition-group v-else tag="div" :name="$store.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">
|
2020-07-26 03:57:08 +00:00
|
|
|
<img v-if="instance.iconUrl" :src="instance.iconUrl" alt=""/>
|
2020-07-26 03:55:46 +00:00
|
|
|
<div class="body">
|
2020-07-25 07:37:08 +00:00
|
|
|
<a class="a" :href="'https://' + instance.host" target="_blank" :title="instance.host">{{ instance.host }}</a>
|
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>
|
|
|
|
</transition-group>
|
|
|
|
</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>
|
|
|
|
import { onMounted, onUnmounted, ref } from 'vue';
|
|
|
|
import { useWidgetPropsManager, Widget, WidgetComponentEmits, WidgetComponentExpose, WidgetComponentProps } from './widget';
|
2022-06-25 09:26:31 +00:00
|
|
|
import { GetFormResultType } from '@/scripts/form';
|
2021-11-11 17:02:25 +00:00
|
|
|
import MkContainer from '@/components/ui/container.vue';
|
|
|
|
import MkMiniChart from '@/components/mini-chart.vue';
|
|
|
|
import * as os from '@/os';
|
2022-06-25 18:12:58 +00:00
|
|
|
import { useInterval } from '@/scripts/use-interval';
|
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>;
|
|
|
|
|
|
|
|
// 現時点ではvueの制限によりimportしたtypeをジェネリックに渡せない
|
|
|
|
//const props = defineProps<WidgetComponentProps<WidgetProps> & { foldable?: boolean; scrollable?: boolean; }>();
|
|
|
|
//const emit = defineEmits<WidgetComponentEmits<WidgetProps>>();
|
|
|
|
const props = defineProps<{ widget?: Widget<WidgetProps>; foldable?: boolean; scrollable?: boolean; }>();
|
2022-05-25 07:43:12 +00:00
|
|
|
const emit = defineEmits<{ (ev: 'updateProps', props: 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', {
|
2022-01-08 11:30:01 +00:00
|
|
|
sort: '+lastCommunicatedAt',
|
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
|
|
|
});
|
|
|
|
|
|
|
|
defineExpose<WidgetComponentExpose>({
|
|
|
|
name,
|
|
|
|
configure,
|
|
|
|
id: props.widget ? props.widget.id : null,
|
2020-07-25 02:56:56 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.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>
|