import './account.css'; import { useEffect, useState } from 'preact/hooks'; import enhanceContent from '../utils/enhance-content'; import shortenNumber from '../utils/shorten-number'; import store from '../utils/store'; import Avatar from './avatar'; import Icon from './icon'; import NameText from './name-text'; function Account({ account }) { const [uiState, setUIState] = useState('default'); const isString = typeof account === 'string'; const [info, setInfo] = useState(isString ? null : account); useEffect(() => { if (isString) { setUIState('loading'); (async () => { try { const info = await masto.accounts.lookup({ acct: account, skip_webfinger: false, }); setInfo(info); setUIState('default'); } catch (e) { alert(e); setUIState('error'); } })(); } }, []); const { acct, avatar, avatarStatic, bot, createdAt, displayName, emojis, fields, followersCount, followingCount, group, header, headerStatic, id, lastStatusAt, locked, note, statusesCount, url, username, } = info || {}; const [relationshipUIState, setRelationshipUIState] = useState('default'); const [relationship, setRelationship] = useState(null); useEffect(() => { if (info) { const currentAccount = store.session.get('currentAccount'); if (currentAccount === id) { // It's myself! return; } setRelationshipUIState('loading'); (async () => { try { const relationships = await masto.accounts.fetchRelationships([id]); console.log('fetched relationship', relationships); if (relationships.length) { setRelationship(relationships[0]); } setRelationshipUIState('default'); } catch (e) { console.error(e); setRelationshipUIState('error'); } })(); } }, [info]); const { following, showingReblogs, notifying, followedBy, blocking, blockedBy, muting, mutingNotifications, requested, domainBlocking, endorsed, } = relationship || {}; return (
{!info || uiState === 'loading' ? ( <>
███ ████████████

████████ ███████

███████████████ ███████████████

██ Posts ██ Following ██ Followers

) : ( <>
{fields?.length > 0 && ( )}

{shortenNumber(statusesCount)}{' '} Posts {shortenNumber(followingCount)}{' '} Following {shortenNumber(followersCount)}{' '} Followers {!!createdAt && ( Joined:{' '} )}

{followedBy ? Following you : }{' '} {relationshipUIState !== 'loading' && relationship && ( )}

)}
); } export default Account;