2020-07-25 05:56:56 +03:00
|
|
|
<template>
|
|
|
|
<mk-container :show-header="props.showHeader">
|
|
|
|
<template #header><fa :icon="faGlobe"/>{{ $t('_widgets.federation') }}</template>
|
|
|
|
|
|
|
|
<div class="wbrkwalb">
|
|
|
|
<mk-loading v-if="fetching"/>
|
|
|
|
<transition-group tag="div" name="chart" class="instances" v-else>
|
2020-07-25 10:31:21 +03:00
|
|
|
<div v-for="(instance, i) in instances" :key="instance.id">
|
2020-07-25 05:56:56 +03:00
|
|
|
<div class="instance">
|
2020-07-25 10:37:08 +03:00
|
|
|
<a class="a" :href="'https://' + instance.host" target="_blank" :title="instance.host">{{ instance.host }}</a>
|
2020-07-25 05:56:56 +03:00
|
|
|
<p>{{ instance.softwareName }} {{ instance.softwareVersion }}</p>
|
|
|
|
</div>
|
2020-07-25 10:31:21 +03:00
|
|
|
<mk-mini-chart class="chart" :src="charts[i].requests.received"/>
|
2020-07-25 05:56:56 +03:00
|
|
|
</div>
|
|
|
|
</transition-group>
|
|
|
|
</div>
|
|
|
|
</mk-container>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { faGlobe } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import MkContainer from '../components/ui/container.vue';
|
|
|
|
import define from './define';
|
2020-07-25 10:31:21 +03:00
|
|
|
import MkMiniChart from '../components/mini-chart.vue';
|
2020-07-25 05:56:56 +03:00
|
|
|
|
|
|
|
export default define({
|
|
|
|
name: 'federation',
|
|
|
|
props: () => ({
|
|
|
|
showHeader: {
|
|
|
|
type: 'boolean',
|
|
|
|
default: true,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}).extend({
|
|
|
|
components: {
|
2020-07-25 10:31:21 +03:00
|
|
|
MkContainer, MkMiniChart
|
2020-07-25 05:56:56 +03:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
instances: [],
|
2020-07-25 10:31:21 +03:00
|
|
|
charts: [],
|
2020-07-25 05:56:56 +03:00
|
|
|
fetching: true,
|
|
|
|
faGlobe
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.fetch();
|
|
|
|
this.clock = setInterval(this.fetch, 1000 * 60);
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
clearInterval(this.clock);
|
|
|
|
},
|
|
|
|
methods: {
|
2020-07-25 10:31:21 +03:00
|
|
|
async fetch() {
|
|
|
|
const instances = await this.$root.api('federation/instances', {
|
2020-07-25 05:56:56 +03:00
|
|
|
sort: '+lastCommunicatedAt',
|
|
|
|
limit: 5
|
|
|
|
});
|
2020-07-25 10:31:21 +03:00
|
|
|
const charts = await Promise.all(instances.map(i => this.$root.api('charts/instance', { host: i.host, limit: 16, span: 'hour' })));
|
|
|
|
this.instances = instances;
|
|
|
|
this.charts = charts;
|
|
|
|
this.fetching = false;
|
2020-07-25 05:56:56 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.wbrkwalb {
|
|
|
|
height: (62px + 1px) + (62px + 1px) + (62px + 1px) + (62px + 1px) + 62px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
> .instances {
|
|
|
|
.chart-move {
|
|
|
|
transition: transform 1s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
> div {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 14px 16px;
|
|
|
|
border-bottom: solid 1px var(--divider);
|
|
|
|
|
|
|
|
> .instance {
|
|
|
|
flex: 1;
|
|
|
|
overflow: hidden;
|
|
|
|
font-size: 0.9em;
|
|
|
|
color: var(--fg);
|
|
|
|
|
|
|
|
> .a {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> p {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 75%;
|
|
|
|
opacity: 0.7;
|
|
|
|
line-height: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .chart {
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|