mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-28 05:08:15 +03:00
175 lines
4.5 KiB
JavaScript
175 lines
4.5 KiB
JavaScript
import { useMemo, useRef, useState } from 'preact/hooks';
|
|
import { useSearchParams } from 'react-router-dom';
|
|
|
|
import Link from '../components/link';
|
|
import Timeline from '../components/timeline';
|
|
import { api } from '../utils/api';
|
|
import { saveStatus } from '../utils/states';
|
|
import useTitle from '../utils/useTitle';
|
|
|
|
const LIMIT = 20;
|
|
const emptySearchParams = new URLSearchParams();
|
|
|
|
function Mentions({ columnMode, ...props }) {
|
|
useTitle('Mentions', '/mentions');
|
|
const { masto, instance } = api();
|
|
const [searchParams] = columnMode ? [emptySearchParams] : useSearchParams();
|
|
const [stateType, setStateType] = useState(null);
|
|
const type = props?.type || searchParams.get('type') || stateType;
|
|
|
|
const mentionsIterator = useRef();
|
|
const latestItem = useRef();
|
|
|
|
async function fetchMentions(firstLoad) {
|
|
if (firstLoad || !mentionsIterator.current) {
|
|
mentionsIterator.current = masto.v1.notifications.list({
|
|
limit: LIMIT,
|
|
types: ['mention'],
|
|
});
|
|
}
|
|
const results = await mentionsIterator.current.next();
|
|
let { value } = results;
|
|
if (value?.length) {
|
|
if (firstLoad) {
|
|
latestItem.current = value[0].id;
|
|
console.log('First load', latestItem.current);
|
|
}
|
|
|
|
value.forEach(({ status: item }) => {
|
|
saveStatus(item, instance);
|
|
});
|
|
}
|
|
return {
|
|
...results,
|
|
value: value?.map((item) => item.status),
|
|
};
|
|
}
|
|
|
|
const conversationsIterator = useRef();
|
|
const latestConversationItem = useRef();
|
|
async function fetchConversations(firstLoad) {
|
|
if (firstLoad || !conversationsIterator.current) {
|
|
conversationsIterator.current = masto.v1.conversations.list({
|
|
limit: LIMIT,
|
|
});
|
|
}
|
|
const results = await conversationsIterator.current.next();
|
|
let { value } = results;
|
|
value = value?.filter((item) => item.lastStatus);
|
|
if (value?.length) {
|
|
if (firstLoad) {
|
|
latestConversationItem.current = value[0].lastStatus.id;
|
|
console.log('First load', latestConversationItem.current);
|
|
}
|
|
|
|
value.forEach(({ lastStatus: item }) => {
|
|
saveStatus(item, instance);
|
|
});
|
|
}
|
|
console.log('results', results);
|
|
return {
|
|
...results,
|
|
value: value?.map((item) => item.lastStatus),
|
|
};
|
|
}
|
|
|
|
function fetchItems(...args) {
|
|
if (type === 'private') {
|
|
return fetchConversations(...args);
|
|
}
|
|
return fetchMentions(...args);
|
|
}
|
|
|
|
async function checkForUpdates() {
|
|
if (type === 'private') {
|
|
try {
|
|
const results = await masto.v1.conversations
|
|
.list({
|
|
limit: 1,
|
|
since_id: latestConversationItem.current,
|
|
})
|
|
.next();
|
|
let { value } = results;
|
|
console.log(
|
|
'checkForUpdates PRIVATE',
|
|
latestConversationItem.current,
|
|
value,
|
|
);
|
|
if (value?.length) {
|
|
latestConversationItem.current = value[0].lastStatus.id;
|
|
return true;
|
|
}
|
|
return false;
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
} else {
|
|
try {
|
|
const results = await masto.v1.notifications
|
|
.list({
|
|
limit: 1,
|
|
types: ['mention'],
|
|
since_id: latestItem.current,
|
|
})
|
|
.next();
|
|
let { value } = results;
|
|
console.log('checkForUpdates ALL', latestItem.current, value);
|
|
if (value?.length) {
|
|
latestItem.current = value[0].id;
|
|
return true;
|
|
}
|
|
return false;
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
const TimelineStart = useMemo(() => {
|
|
return (
|
|
<div class="filter-bar centered">
|
|
<Link
|
|
to="/mentions"
|
|
class={!type ? 'is-active' : ''}
|
|
onClick={(e) => {
|
|
if (columnMode) {
|
|
e.preventDefault();
|
|
setStateType(null);
|
|
}
|
|
}}
|
|
>
|
|
All
|
|
</Link>
|
|
<Link
|
|
to="/mentions?type=private"
|
|
class={type === 'private' ? 'is-active' : ''}
|
|
onClick={(e) => {
|
|
if (columnMode) {
|
|
e.preventDefault();
|
|
setStateType('private');
|
|
}
|
|
}}
|
|
>
|
|
Private
|
|
</Link>
|
|
</div>
|
|
);
|
|
}, [type]);
|
|
|
|
return (
|
|
<Timeline
|
|
title="Mentions"
|
|
id="mentions"
|
|
emptyText="No one mentioned you :("
|
|
errorText="Unable to load mentions."
|
|
instance={instance}
|
|
fetchItems={fetchItems}
|
|
checkForUpdates={checkForUpdates}
|
|
useItemID
|
|
timelineStart={TimelineStart}
|
|
refresh={type}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default Mentions;
|