2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
|
|
|
<div class="mk-federation">
|
2020-03-29 03:15:33 +02:00
|
|
|
<portal to="icon"><fa :icon="faGlobe"/></portal>
|
2020-07-24 18:56:52 +02:00
|
|
|
<portal to="title">{{ $t('federation') }}</portal>
|
2020-03-29 03:15:33 +02:00
|
|
|
|
2020-01-30 03:10:42 +01:00
|
|
|
<section class="_card instances">
|
2020-01-29 20:37:25 +01:00
|
|
|
<div class="_content">
|
2020-07-24 18:56:52 +02:00
|
|
|
<mk-input v-model="host" :debounce="true"><span>{{ $t('host') }}</span></mk-input>
|
2020-01-29 20:37:25 +01:00
|
|
|
<div class="inputs" style="display: flex;">
|
2020-03-29 03:14:33 +02:00
|
|
|
<mk-select v-model="state" style="margin: 0; flex: 1;">
|
|
|
|
<template #label>{{ $t('state') }}</template>
|
2020-07-24 18:56:52 +02:00
|
|
|
<option value="all">{{ $t('all') }}</option>
|
|
|
|
<option value="federating">{{ $t('federating') }}</option>
|
|
|
|
<option value="subscribing">{{ $t('subscribing') }}</option>
|
|
|
|
<option value="publishing">{{ $t('publishing') }}</option>
|
|
|
|
<option value="suspended">{{ $t('suspended') }}</option>
|
|
|
|
<option value="blocked">{{ $t('blocked') }}</option>
|
|
|
|
<option value="notResponding">{{ $t('notResponding') }}</option>
|
2020-01-29 20:37:25 +01:00
|
|
|
</mk-select>
|
2020-03-29 03:14:33 +02:00
|
|
|
<mk-select v-model="sort" style="margin: 0; flex: 1;">
|
|
|
|
<template #label>{{ $t('sort') }}</template>
|
|
|
|
<option value="+pubSub">{{ $t('pubSub') }} ({{ $t('descendingOrder') }})</option>
|
|
|
|
<option value="-pubSub">{{ $t('pubSub') }} ({{ $t('ascendingOrder') }})</option>
|
|
|
|
<option value="+notes">{{ $t('notes') }} ({{ $t('descendingOrder') }})</option>
|
|
|
|
<option value="-notes">{{ $t('notes') }} ({{ $t('ascendingOrder') }})</option>
|
|
|
|
<option value="+users">{{ $t('users') }} ({{ $t('descendingOrder') }})</option>
|
|
|
|
<option value="-users">{{ $t('users') }} ({{ $t('ascendingOrder') }})</option>
|
|
|
|
<option value="+following">{{ $t('following') }} ({{ $t('descendingOrder') }})</option>
|
|
|
|
<option value="-following">{{ $t('following') }} ({{ $t('ascendingOrder') }})</option>
|
|
|
|
<option value="+followers">{{ $t('followers') }} ({{ $t('descendingOrder') }})</option>
|
|
|
|
<option value="-followers">{{ $t('followers') }} ({{ $t('ascendingOrder') }})</option>
|
|
|
|
<option value="+caughtAt">{{ $t('caughtAt') }} ({{ $t('descendingOrder') }})</option>
|
|
|
|
<option value="-caughtAt">{{ $t('caughtAt') }} ({{ $t('ascendingOrder') }})</option>
|
|
|
|
<option value="+lastCommunicatedAt">{{ $t('lastCommunicatedAt') }} ({{ $t('descendingOrder') }})</option>
|
|
|
|
<option value="-lastCommunicatedAt">{{ $t('lastCommunicatedAt') }} ({{ $t('ascendingOrder') }})</option>
|
|
|
|
<option value="+driveUsage">{{ $t('driveUsage') }} ({{ $t('descendingOrder') }})</option>
|
|
|
|
<option value="-driveUsage">{{ $t('driveUsage') }} ({{ $t('ascendingOrder') }})</option>
|
|
|
|
<option value="+driveFiles">{{ $t('driveFiles') }} ({{ $t('descendingOrder') }})</option>
|
|
|
|
<option value="-driveFiles">{{ $t('driveFiles') }} ({{ $t('ascendingOrder') }})</option>
|
|
|
|
</mk-select>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="_content">
|
|
|
|
<mk-pagination :pagination="pagination" #default="{items}" class="instances" ref="instances" :key="host + state">
|
2020-03-29 03:14:33 +02:00
|
|
|
<div class="instance" v-for="instance in items" :key="instance.id" @click="info(instance)">
|
2020-01-29 20:37:25 +01:00
|
|
|
<div class="host"><fa :icon="faCircle" class="indicator" :class="getStatus(instance)"/><b>{{ instance.host }}</b></div>
|
|
|
|
<div class="status">
|
|
|
|
<span class="sub" v-if="instance.followersCount > 0"><fa :icon="faCaretDown" class="icon"/>Sub</span>
|
|
|
|
<span class="sub" v-else><fa :icon="faCaretDown" class="icon"/>-</span>
|
|
|
|
<span class="pub" v-if="instance.followingCount > 0"><fa :icon="faCaretUp" class="icon"/>Pub</span>
|
|
|
|
<span class="pub" v-else><fa :icon="faCaretUp" class="icon"/>-</span>
|
|
|
|
<span class="lastCommunicatedAt"><fa :icon="faExchangeAlt" class="icon"/><mk-time :time="instance.lastCommunicatedAt"/></span>
|
|
|
|
<span class="latestStatus"><fa :icon="faTrafficLight" class="icon"/>{{ instance.latestStatus || '-' }}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</mk-pagination>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import { faGlobe, faCircle, faExchangeAlt, faCaretDown, faCaretUp, faTrafficLight } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import MkButton from '../../components/ui/button.vue';
|
|
|
|
import MkInput from '../../components/ui/input.vue';
|
|
|
|
import MkSelect from '../../components/ui/select.vue';
|
|
|
|
import MkPagination from '../../components/ui/pagination.vue';
|
2020-08-10 13:23:51 +02:00
|
|
|
import MkInstanceInfo from './instance.vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
metaInfo() {
|
|
|
|
return {
|
|
|
|
title: this.$t('federation') as string
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
components: {
|
|
|
|
MkButton,
|
|
|
|
MkInput,
|
|
|
|
MkSelect,
|
|
|
|
MkPagination,
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
host: '',
|
|
|
|
state: 'federating',
|
|
|
|
sort: '+pubSub',
|
|
|
|
pagination: {
|
|
|
|
endpoint: 'federation/instances',
|
|
|
|
limit: 10,
|
|
|
|
offsetMode: true,
|
|
|
|
params: () => ({
|
|
|
|
sort: this.sort,
|
|
|
|
host: this.host != '' ? this.host : null,
|
|
|
|
...(
|
|
|
|
this.state === 'federating' ? { federating: true } :
|
|
|
|
this.state === 'subscribing' ? { subscribing: true } :
|
|
|
|
this.state === 'publishing' ? { publishing: true } :
|
|
|
|
this.state === 'suspended' ? { suspended: true } :
|
|
|
|
this.state === 'blocked' ? { blocked: true } :
|
|
|
|
this.state === 'notResponding' ? { notResponding: true } :
|
|
|
|
{})
|
|
|
|
})
|
|
|
|
},
|
|
|
|
faGlobe, faCircle, faExchangeAlt, faCaretDown, faCaretUp, faTrafficLight
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
host() {
|
|
|
|
this.$refs.instances.reload();
|
|
|
|
},
|
|
|
|
state() {
|
|
|
|
this.$refs.instances.reload();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
getStatus(instance) {
|
|
|
|
if (instance.isSuspended) return 'off';
|
|
|
|
if (instance.isNotResponding) return 'red';
|
|
|
|
return 'green';
|
|
|
|
},
|
|
|
|
|
|
|
|
info(instance) {
|
|
|
|
this.$root.new(MkInstanceInfo, {
|
|
|
|
instance: instance
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mk-federation {
|
|
|
|
> .instances {
|
|
|
|
> ._content {
|
|
|
|
> .instances {
|
|
|
|
> .instance {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
> .host {
|
|
|
|
> .indicator {
|
|
|
|
font-size: 70%;
|
|
|
|
vertical-align: baseline;
|
|
|
|
margin-right: 4px;
|
|
|
|
|
|
|
|
&.green {
|
|
|
|
color: #49c5ba;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.yellow {
|
|
|
|
color: #c5a549;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.red {
|
|
|
|
color: #c54949;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.off {
|
|
|
|
color: rgba(0, 0, 0, 0.5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .status {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 90%;
|
|
|
|
|
|
|
|
> span {
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
> .icon {
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|