mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-27 12:48:14 +03:00
101 lines
2.6 KiB
JavaScript
101 lines
2.6 KiB
JavaScript
import { useEffect, useRef, useState } from 'preact/hooks';
|
|
import { useParams } from 'react-router-dom';
|
|
import { useSnapshot } from 'valtio';
|
|
|
|
import Timeline from '../components/timeline';
|
|
import { api } from '../utils/api';
|
|
import emojifyText from '../utils/emojify-text';
|
|
import states from '../utils/states';
|
|
import useTitle from '../utils/useTitle';
|
|
|
|
const LIMIT = 20;
|
|
|
|
function AccountStatuses() {
|
|
const snapStates = useSnapshot(states);
|
|
const { id, ...params } = useParams();
|
|
const { masto, instance } = api({ instance: params.instance });
|
|
const accountStatusesIterator = useRef();
|
|
async function fetchAccountStatuses(firstLoad) {
|
|
const results = [];
|
|
if (firstLoad) {
|
|
const { value: pinnedStatuses } = await masto.v1.accounts
|
|
.listStatuses(id, {
|
|
pinned: true,
|
|
})
|
|
.next();
|
|
if (pinnedStatuses?.length) {
|
|
pinnedStatuses.forEach((status) => {
|
|
status._pinned = true;
|
|
});
|
|
results.push(...pinnedStatuses);
|
|
}
|
|
}
|
|
if (firstLoad || !accountStatusesIterator.current) {
|
|
accountStatusesIterator.current = masto.v1.accounts.listStatuses(id, {
|
|
limit: LIMIT,
|
|
});
|
|
}
|
|
const { value, done } = await accountStatusesIterator.current.next();
|
|
if (value?.length) {
|
|
results.push(...value);
|
|
}
|
|
return {
|
|
value: results,
|
|
done,
|
|
};
|
|
}
|
|
|
|
const [account, setAccount] = useState({});
|
|
useTitle(
|
|
`${account?.acct ? '@' + account.acct : 'Posts'}`,
|
|
'/:instance?/a/:id',
|
|
);
|
|
useEffect(() => {
|
|
(async () => {
|
|
try {
|
|
const acc = await masto.v1.accounts.fetch(id);
|
|
console.log(acc);
|
|
setAccount(acc);
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
})();
|
|
}, [id]);
|
|
|
|
const { displayName, acct, emojis } = account;
|
|
|
|
return (
|
|
<Timeline
|
|
key={id}
|
|
title={`${account?.acct ? '@' + account.acct : 'Posts'}`}
|
|
titleComponent={
|
|
<h1
|
|
class="header-account"
|
|
// onClick={() => {
|
|
// states.showAccount = {
|
|
// account,
|
|
// instance,
|
|
// };
|
|
// }}
|
|
>
|
|
<b
|
|
dangerouslySetInnerHTML={{
|
|
__html: emojifyText(displayName, emojis),
|
|
}}
|
|
/>
|
|
<div>
|
|
<span>@{acct}</span>
|
|
</div>
|
|
</h1>
|
|
}
|
|
id="account_statuses"
|
|
instance={instance}
|
|
emptyText="Nothing to see here yet."
|
|
errorText="Unable to load statuses"
|
|
fetchItems={fetchAccountStatuses}
|
|
boostsCarousel={snapStates.settings.boostsCarousel}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default AccountStatuses;
|