fix: getRobohash function will do the conversion of pubkey

This commit is contained in:
Davinci 2024-05-16 08:55:24 +02:00 committed by Yury
parent b2d7461128
commit a2232cd420
4 changed files with 12 additions and 9 deletions

View File

@ -46,12 +46,12 @@ export const AppBar = () => {
useEffect(() => { useEffect(() => {
if (metadataState && metadataState.content) { if (metadataState && metadataState.content) {
const { picture, display_name, name } = JSON.parse(metadataState.content) const { picture, display_name, name } = JSON.parse(metadataState.content)
const npub = authState?.usersPubkey ? hexToNpub(authState.usersPubkey) : '' const pubkey = authState?.usersPubkey || ''
if (picture) { if (picture) {
setUserAvatar(picture) setUserAvatar(picture)
} else { } else {
setUserAvatar(getRoboHashPicture(npub)) setUserAvatar(getRoboHashPicture(pubkey))
} }
setUsername(shorten(display_name || name || '', 7)) setUsername(shorten(display_name || name || '', 7))

View File

@ -490,8 +490,7 @@ const DisplayUser = ({
}, [users]) }, [users])
const imageLoadError = (event: any, pubkey: string) => { const imageLoadError = (event: any, pubkey: string) => {
const npub = hexToNpub(pubkey) event.target.src = getRoboHashPicture(pubkey)
event.target.src = getRoboHashPicture(npub)
} }
return ( return (

View File

@ -632,8 +632,7 @@ const DisplayMeta = ({ meta, nextSigner }: DisplayMetaProps) => {
} }
const getRoboImageUrl = (pubkey: string) => { const getRoboImageUrl = (pubkey: string) => {
const npub = hexToNpub(pubkey) return getRoboHashPicture(pubkey)
return getRoboHashPicture(npub)
} }
return ( return (
@ -719,8 +718,7 @@ const DisplayMeta = ({ meta, nextSigner }: DisplayMetaProps) => {
<TableBody> <TableBody>
{users.map((user, index) => { {users.map((user, index) => {
const userMeta = metadata[user.pubkey] const userMeta = metadata[user.pubkey]
const npub = hexToNpub(user.pubkey) const roboUrl = getRoboHashPicture(user.pubkey)
const roboUrl = getRoboHashPicture(npub)
let signedStatus = '-' let signedStatus = '-'

View File

@ -140,6 +140,12 @@ export const base64DecodeAuthToken = (authToken: string): SignedEvent => {
} }
} }
export const getRoboHashPicture = (npub: string): string => { /**
*
* @param pubkey in hex or npub format
* @returns robohash.org url for the avatar
*/
export const getRoboHashPicture = (pubkey: string): string => {
const npub = hexToNpub(pubkey)
return `https://robohash.org/${npub}.png?set=set3` return `https://robohash.org/${npub}.png?set=set3`
} }