2021-04-16 10:34:06 +02:00
|
|
|
<template>
|
|
|
|
<FormBase>
|
2021-11-19 11:36:12 +01:00
|
|
|
<FormSuspense v-slot="{ result: ap }" :p="apPromiseFactory">
|
2021-04-16 16:04:25 +02:00
|
|
|
<FormGroup>
|
|
|
|
<template #label>ActivityPub</template>
|
2021-04-16 10:34:06 +02:00
|
|
|
<FormKeyValueView>
|
|
|
|
<template #key>Type</template>
|
|
|
|
<template #value><span class="_monospace">{{ ap.type }}</span></template>
|
|
|
|
</FormKeyValueView>
|
|
|
|
<FormKeyValueView>
|
|
|
|
<template #key>URI</template>
|
|
|
|
<template #value><span class="_monospace">{{ ap.id }}</span></template>
|
|
|
|
</FormKeyValueView>
|
|
|
|
<FormKeyValueView>
|
|
|
|
<template #key>URL</template>
|
|
|
|
<template #value><span class="_monospace">{{ ap.url }}</span></template>
|
|
|
|
</FormKeyValueView>
|
|
|
|
<FormGroup>
|
|
|
|
<FormKeyValueView>
|
|
|
|
<template #key>Inbox</template>
|
|
|
|
<template #value><span class="_monospace">{{ ap.inbox }}</span></template>
|
|
|
|
</FormKeyValueView>
|
|
|
|
<FormKeyValueView>
|
|
|
|
<template #key>Shared Inbox</template>
|
2021-04-17 07:06:32 +02:00
|
|
|
<template #value><span class="_monospace">{{ ap.sharedInbox || ap.endpoints.sharedInbox }}</span></template>
|
2021-04-16 10:34:06 +02:00
|
|
|
</FormKeyValueView>
|
|
|
|
<FormKeyValueView>
|
|
|
|
<template #key>Outbox</template>
|
|
|
|
<template #value><span class="_monospace">{{ ap.outbox }}</span></template>
|
|
|
|
</FormKeyValueView>
|
|
|
|
</FormGroup>
|
|
|
|
<FormTextarea readonly tall code pre :value="ap.publicKey.publicKeyPem">
|
|
|
|
<span>Public Key</span>
|
|
|
|
</FormTextarea>
|
|
|
|
<FormKeyValueView>
|
|
|
|
<template #key>Discoverable</template>
|
|
|
|
<template #value>{{ ap.discoverable ? $ts.yes : $ts.no }}</template>
|
|
|
|
</FormKeyValueView>
|
|
|
|
<FormKeyValueView>
|
|
|
|
<template #key>ManuallyApprovesFollowers</template>
|
|
|
|
<template #value>{{ ap.manuallyApprovesFollowers ? $ts.yes : $ts.no }}</template>
|
|
|
|
</FormKeyValueView>
|
|
|
|
<FormObjectView tall :value="ap">
|
|
|
|
<span>Raw</span>
|
|
|
|
</FormObjectView>
|
2021-04-17 04:29:44 +02:00
|
|
|
<FormGroup>
|
|
|
|
<FormLink :to="`https://${user.host}/.well-known/webfinger?resource=acct:${user.username}`" external>WebFinger</FormLink>
|
|
|
|
</FormGroup>
|
2021-04-16 10:34:06 +02:00
|
|
|
<FormLink v-if="user.host" :to="`/instance-info/${user.host}`">{{ $ts.instanceInfo }}<template #suffix>{{ user.host }}</template></FormLink>
|
|
|
|
<FormKeyValueView v-else>
|
|
|
|
<template #key>{{ $ts.instanceInfo }}</template>
|
|
|
|
<template #value>(Local user)</template>
|
|
|
|
</FormKeyValueView>
|
2021-04-16 16:04:25 +02:00
|
|
|
</FormGroup>
|
|
|
|
</FormSuspense>
|
2021-04-16 10:34:06 +02:00
|
|
|
</FormBase>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineAsyncComponent, defineComponent } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import FormObjectView from '@/components/debobigego/object-view.vue';
|
|
|
|
import FormTextarea from '@/components/debobigego/textarea.vue';
|
|
|
|
import FormLink from '@/components/debobigego/link.vue';
|
|
|
|
import FormBase from '@/components/debobigego/base.vue';
|
|
|
|
import FormGroup from '@/components/debobigego/group.vue';
|
|
|
|
import FormButton from '@/components/debobigego/button.vue';
|
|
|
|
import FormKeyValueView from '@/components/debobigego/key-value-view.vue';
|
|
|
|
import FormSuspense from '@/components/debobigego/suspense.vue';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import number from '@/filters/number';
|
|
|
|
import bytes from '@/filters/bytes';
|
|
|
|
import * as symbols from '@/symbols';
|
|
|
|
import { url } from '@/config';
|
2021-04-16 10:34:06 +02:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
FormBase,
|
|
|
|
FormTextarea,
|
|
|
|
FormObjectView,
|
|
|
|
FormButton,
|
|
|
|
FormLink,
|
|
|
|
FormGroup,
|
|
|
|
FormKeyValueView,
|
|
|
|
FormSuspense,
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
userId: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: this.$ts.userInfo,
|
2021-04-20 16:22:59 +02:00
|
|
|
icon: 'fas fa-info-circle'
|
2021-04-16 10:34:06 +02:00
|
|
|
},
|
|
|
|
user: null,
|
|
|
|
apPromiseFactory: null,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
this.fetch();
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
number,
|
|
|
|
bytes,
|
|
|
|
|
|
|
|
async fetch() {
|
|
|
|
this.user = await os.api('users/show', {
|
|
|
|
userId: this.userId
|
|
|
|
});
|
|
|
|
|
|
|
|
this.apPromiseFactory = () => os.api('ap/get', {
|
|
|
|
uri: this.user.uri || `${url}/users/${this.user.id}`
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|