2022-12-10 12:14:48 +03:00
|
|
|
import './account.css';
|
|
|
|
|
|
|
|
import { useEffect, useState } from 'preact/hooks';
|
|
|
|
|
2022-12-10 14:16:11 +03:00
|
|
|
import enhanceContent from '../utils/enhance-content';
|
2022-12-10 12:14:48 +03:00
|
|
|
import shortenNumber from '../utils/shorten-number';
|
2022-12-10 14:15:30 +03:00
|
|
|
import store from '../utils/store';
|
2022-12-10 12:14:48 +03:00
|
|
|
|
|
|
|
import Avatar from './avatar';
|
|
|
|
import NameText from './name-text';
|
|
|
|
|
|
|
|
export default ({ 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) {
|
2022-12-10 14:15:30 +03:00
|
|
|
const currentAccount = store.session.get('currentAccount');
|
|
|
|
if (currentAccount === id) {
|
|
|
|
// It's myself!
|
|
|
|
return;
|
|
|
|
}
|
2022-12-10 12:14:48 +03:00
|
|
|
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 (
|
|
|
|
<div
|
|
|
|
id="account-container"
|
|
|
|
class={`sheet ${uiState === 'loading' ? 'skeleton' : ''}`}
|
|
|
|
>
|
|
|
|
{!info || uiState === 'loading' ? (
|
|
|
|
<>
|
|
|
|
<header>
|
|
|
|
<Avatar size="xxl" />
|
|
|
|
███ ████████████
|
|
|
|
</header>
|
|
|
|
<div class="note">
|
|
|
|
<p>████████ ███████</p>
|
|
|
|
<p>███████████████ ███████████████</p>
|
|
|
|
</div>
|
|
|
|
<p class="stats">
|
|
|
|
<span>██ Posts</span>
|
|
|
|
<span>██ Following</span>
|
|
|
|
<span>██ Followers</span>
|
|
|
|
</p>
|
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<header>
|
|
|
|
<Avatar url={avatar} size="xxl" />
|
|
|
|
<NameText account={info} showAcct external />
|
|
|
|
</header>
|
2022-12-10 14:16:11 +03:00
|
|
|
<div
|
|
|
|
class="note"
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
__html: enhanceContent(note, { emojis }),
|
|
|
|
}}
|
|
|
|
/>
|
2022-12-10 12:14:48 +03:00
|
|
|
<p class="stats">
|
|
|
|
<span>
|
|
|
|
<b title={statusesCount}>{shortenNumber(statusesCount)}</b> Posts
|
|
|
|
</span>
|
|
|
|
<span>
|
|
|
|
<b title={followingCount}>{shortenNumber(followingCount)}</b>{' '}
|
|
|
|
Following
|
|
|
|
</span>
|
|
|
|
<span>
|
|
|
|
<b title={followersCount}>{shortenNumber(followersCount)}</b>{' '}
|
|
|
|
Followers
|
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
<p class="actions">
|
|
|
|
{followedBy ? <span class="tag">Following you</span> : <span />}{' '}
|
|
|
|
{relationshipUIState !== 'loading' && relationship && (
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class={following ? 'light' : ''}
|
|
|
|
disabled={relationshipUIState === 'loading'}
|
|
|
|
onClick={() => {
|
|
|
|
setRelationshipUIState('loading');
|
|
|
|
(async () => {
|
|
|
|
try {
|
|
|
|
let newRelationship;
|
|
|
|
if (following) {
|
2022-12-12 05:03:41 +03:00
|
|
|
const yes = confirm(
|
|
|
|
'Are you sure that you want to unfollow this account?',
|
|
|
|
);
|
|
|
|
if (yes) {
|
|
|
|
newRelationship = await masto.accounts.unfollow(id);
|
|
|
|
}
|
2022-12-10 12:14:48 +03:00
|
|
|
} else {
|
|
|
|
newRelationship = await masto.accounts.follow(id);
|
|
|
|
}
|
2022-12-12 05:03:41 +03:00
|
|
|
if (newRelationship) setRelationship(newRelationship);
|
2022-12-10 12:14:48 +03:00
|
|
|
setRelationshipUIState('default');
|
|
|
|
} catch (e) {
|
|
|
|
alert(e);
|
|
|
|
setRelationshipUIState('error');
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{following ? 'Unfollow' : 'Follow'}
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
</p>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|