Fix users with no profile record not being shown (#7)
Some checks failed
Deploy / Deploy (push) Has been cancelled

Co-authored-by: Casey <hatkidchan@gmail.com>
Co-authored-by: Ari <ariadna@hey.com>
Reviewed-on: https://git.witchcraft.systems/scientific-witchery/pds-dash/pulls/7
Reviewed-by: Ariadna <ariadna@hey.com>
This commit is contained in:
Astra 2025-05-30 03:05:05 +00:00
parent 273741d221
commit c348ed5d46
4 changed files with 35 additions and 13 deletions

View file

@ -12,10 +12,14 @@
alt="avatar of {account.displayName}" alt="avatar of {account.displayName}"
src="{Config.PDS_URL}/xrpc/com.atproto.sync.getBlob?did={account.did}&cid={account.avatarCid}" src="{Config.PDS_URL}/xrpc/com.atproto.sync.getBlob?did={account.did}&cid={account.avatarCid}"
/> />
{/if}
<div id="accountName"> <div id="accountName">
{account.displayName || account.handle || account.did} {account.displayName || account.handle || account.did}
</div> </div>
{:else}
<div id="accountName" class="no-avatar">
{account.displayName || account.handle || account.did}
</div>
{/if}
</div> </div>
</a> </a>

View file

@ -132,7 +132,13 @@ const getDidsFromPDS = async (): Promise<At.Did[]> => {
const getAccountMetadata = async ( const getAccountMetadata = async (
did: `did:${string}:${string}`, did: `did:${string}:${string}`,
) => { ) => {
// gonna assume self exists in the app.bsky.actor.profile const account: AccountMetadata = {
did: did,
handle: "", // Guaranteed to be filled out later
displayName: "",
avatarCid: null,
};
try { try {
const { data } = await rpc.get("com.atproto.repo.getRecord", { const { data } = await rpc.get("com.atproto.repo.getRecord", {
params: { params: {
@ -142,21 +148,22 @@ const getAccountMetadata = async (
}, },
}); });
const value = data.value as AppBskyActorProfile.Record; const value = data.value as AppBskyActorProfile.Record;
const handle = await blueskyHandleFromDid(did); account.displayName = value.displayName || "";
const account: AccountMetadata = {
did: did,
handle: handle,
displayName: value.displayName || "",
avatarCid: null,
};
if (value.avatar) { if (value.avatar) {
account.avatarCid = value.avatar.ref["$link"]; account.avatarCid = value.avatar.ref["$link"];
} }
return account;
} catch (e) { } catch (e) {
console.error(`Error fetching metadata for ${did}:`, e); console.warn(`Error fetching profile for ${did}:`, e);
}
try {
account.handle = await blueskyHandleFromDid(did);
} catch (e) {
console.error(`Error fetching handle for ${did}:`, e);
return null; return null;
} }
return account;
}; };
const getAllMetadataFromPds = async (): Promise<AccountMetadata[]> => { const getAllMetadataFromPds = async (): Promise<AccountMetadata[]> => {

View file

@ -237,6 +237,7 @@ a:hover {
margin-right: 4px; margin-right: 4px;
border: 4px solid var(--border-color); border: 4px solid var(--border-color);
box-shadow: var(--border-color) 10px 10px; box-shadow: var(--border-color) 10px 10px;
min-height: 30px;
} }
#accountName { #accountName {
margin-left: 10px; margin-left: 10px;
@ -249,6 +250,10 @@ a:hover {
white-space: nowrap; white-space: nowrap;
} }
.no-avatar {
margin-left: 40px !important;
}
/* App.Svelte */ /* App.Svelte */
/* desktop style */ /* desktop style */

View file

@ -235,6 +235,7 @@ a:hover {
padding: 0px; padding: 0px;
margin-bottom: 15px; margin-bottom: 15px;
border: 1px solid var(--border-color); border: 1px solid var(--border-color);
min-height: 30px;
} }
#accountName { #accountName {
margin-left: 10px; margin-left: 10px;
@ -247,6 +248,11 @@ a:hover {
white-space: nowrap; white-space: nowrap;
} }
.no-avatar {
margin-left: 70px !important;
}
/* App.Svelte */ /* App.Svelte */
/* desktop style */ /* desktop style */