feat: show followers from account's instance

This commit is contained in:
Shinigami92 2023-05-05 21:05:09 +02:00
parent 5ffb96baf6
commit 7d987cd49d
1 changed files with 14 additions and 0 deletions

View File

@ -14,6 +14,20 @@ if (account) {
useHydratedHead({
title: () => `${t('account.following')} | ${getDisplayName(account)} (@${account.acct})`,
})
const currentUserInstance = currentUser.value?.account.url.split('/@')[0]
const accountInstance = account.url.split('/@')[0]
if (currentUserInstance !== accountInstance) {
const otherMasto = createMasto()
otherMasto.setParams({ url: accountInstance })
const otherAccount = await otherMasto.client.value.v1.accounts.lookup({ acct: account.acct })
const otherPaginator = otherMasto.client.value.v1.accounts.listFollowing(otherAccount.id, {})
console.log((await otherPaginator.next()).value)
}
}
</script>