From c9c500a07d58fbbbe8bfd1cbc326140872ccc785 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Wed, 14 Feb 2024 10:51:09 +0300 Subject: Fetch ActivityPub profiles --- vnext/src/App.js | 2 +- vnext/src/api/index.js | 11 +++++------ vnext/src/ui/UserInfo.js | 9 ++------- 3 files changed, 8 insertions(+), 14 deletions(-) (limited to 'vnext') diff --git a/vnext/src/App.js b/vnext/src/App.js index f20d8db3..b14e50ab 100644 --- a/vnext/src/App.js +++ b/vnext/src/App.js @@ -13,7 +13,7 @@ import Header from './ui/Header' import Post from './ui/Post' import Thread from './ui/Thread' -import { loginUrl, me, trends } from './api' +import { me, trends } from './api' import { useVisitor } from './ui/VisitorContext' import Avatar from './ui/Avatar' import { Toaster } from 'react-hot-toast' diff --git a/vnext/src/api/index.js b/vnext/src/api/index.js index 7cb56c0e..095e18b8 100644 --- a/vnext/src/api/index.js +++ b/vnext/src/api/index.js @@ -71,8 +71,7 @@ const apiBaseUrl = 'https://beta.juick.com' const client = axios.create({ - baseURL: apiBaseUrl, - withCredentials: true + baseURL: apiBaseUrl }) /** @@ -225,10 +224,10 @@ export function fetchUserUri(profileUrl) { if (profileCache[profileUrl]) { resolve(profileCache[profileUrl]) } else { - client.get(profileUrl, { - headers: { - 'Accept': 'application/ld+json' - } + let data = new FormData() + data.append('uri', profileUrl) + client.post('/api/u/', data, { + withCredentials: false }).then(response => { profileCache[profileUrl] = response.data resolve(response.data) diff --git a/vnext/src/ui/UserInfo.js b/vnext/src/ui/UserInfo.js index f71dfcdc..3ea78d6f 100644 --- a/vnext/src/ui/UserInfo.js +++ b/vnext/src/ui/UserInfo.js @@ -97,12 +97,7 @@ export function UserLink(props) { if (userRef.current.uri) { fetchUserUri(userRef.current.uri).then(remote_user => { if (isMounted) { - setUser({ - uid: 0, - uname: remote_user.preferredUsername, - avatar: remote_user.icon && remote_user.icon.url, - uri: userRef.current.uri - }) + setUser(remote_user) } }).catch(() => { setUser({ @@ -122,7 +117,7 @@ export function UserLink(props) { {user.uname} - : + : {user.uname} ) -- cgit v1.2.3