2020-05-10 12:42:31 +03:00
|
|
|
<template>
|
2022-06-20 11:38:49 +03:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><XHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<MkSpacer :content-max="800">
|
|
|
|
<div v-for="relay in relays" :key="relay.inbox" class="relaycxt _panel _block" style="padding: 16px;">
|
|
|
|
<div>{{ relay.inbox }}</div>
|
|
|
|
<div class="status">
|
|
|
|
<i v-if="relay.status === 'accepted'" class="fas fa-check icon accepted"></i>
|
|
|
|
<i v-else-if="relay.status === 'rejected'" class="fas fa-ban icon rejected"></i>
|
|
|
|
<i v-else class="fas fa-clock icon requesting"></i>
|
|
|
|
<span>{{ $t(`_relayStatus.${relay.status}`) }}</span>
|
|
|
|
</div>
|
|
|
|
<MkButton class="button" inline danger @click="remove(relay.inbox)"><i class="fas fa-trash-alt"></i> {{ i18n.ts.remove }}</MkButton>
|
2020-05-10 12:42:31 +03:00
|
|
|
</div>
|
2022-06-20 11:38:49 +03:00
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-05-10 12:42:31 +03:00
|
|
|
</template>
|
|
|
|
|
2022-05-17 19:30:49 +03:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-06-20 11:38:49 +03:00
|
|
|
import XHeader from './_header_.vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import * as os from '@/os';
|
2022-05-17 19:30:49 +03:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-05-10 12:42:31 +03:00
|
|
|
|
2022-05-17 19:30:49 +03:00
|
|
|
let relays: any[] = $ref([]);
|
2020-05-10 12:42:31 +03:00
|
|
|
|
2022-05-17 19:30:49 +03:00
|
|
|
async function addRelay() {
|
|
|
|
const { canceled, result: inbox } = await os.inputText({
|
|
|
|
title: i18n.ts.addRelay,
|
|
|
|
type: 'url',
|
2022-06-20 11:38:49 +03:00
|
|
|
placeholder: i18n.ts.inboxUrl,
|
2022-05-17 19:30:49 +03:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
os.api('admin/relays/add', {
|
2022-06-20 11:38:49 +03:00
|
|
|
inbox,
|
2022-05-17 19:30:49 +03:00
|
|
|
}).then((relay: any) => {
|
|
|
|
refresh();
|
|
|
|
}).catch((err: any) => {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
2022-06-20 11:38:49 +03:00
|
|
|
text: err.message || err,
|
2022-05-17 19:30:49 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2020-05-10 12:42:31 +03:00
|
|
|
|
2022-05-17 19:30:49 +03:00
|
|
|
function remove(inbox: string) {
|
|
|
|
os.api('admin/relays/remove', {
|
2022-06-20 11:38:49 +03:00
|
|
|
inbox,
|
2022-05-17 19:30:49 +03:00
|
|
|
}).then(() => {
|
|
|
|
refresh();
|
|
|
|
}).catch((err: any) => {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
2022-06-20 11:38:49 +03:00
|
|
|
text: err.message || err,
|
2022-05-17 19:30:49 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2020-05-10 12:42:31 +03:00
|
|
|
|
2022-05-17 19:30:49 +03:00
|
|
|
function refresh() {
|
|
|
|
os.api('admin/relays/list').then((relayList: any) => {
|
|
|
|
relays = relayList;
|
|
|
|
});
|
|
|
|
}
|
2020-05-10 12:42:31 +03:00
|
|
|
|
2022-05-17 19:30:49 +03:00
|
|
|
refresh();
|
2020-05-10 12:42:31 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const headerActions = $computed(() => [{
|
|
|
|
asFullButton: true,
|
|
|
|
icon: 'fas fa-plus',
|
|
|
|
text: i18n.ts.addRelay,
|
|
|
|
handler: addRelay,
|
|
|
|
}]);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.relays,
|
|
|
|
icon: 'fas fa-globe',
|
|
|
|
bg: 'var(--bg)',
|
2020-05-10 12:42:31 +03:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2022-01-02 20:17:28 +02:00
|
|
|
.relaycxt {
|
|
|
|
> .status {
|
|
|
|
margin: 8px 0;
|
|
|
|
|
|
|
|
> .icon {
|
|
|
|
width: 1em;
|
|
|
|
margin-right: 0.75em;
|
|
|
|
|
|
|
|
&.accepted {
|
|
|
|
color: var(--success);
|
|
|
|
}
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-01-02 20:17:28 +02:00
|
|
|
&.rejected {
|
|
|
|
color: var(--error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-10 12:42:31 +03:00
|
|
|
</style>
|