phanpy/src/pages/notifications.jsx

249 lines
7.7 KiB
React
Raw Normal View History

2022-12-10 09:14:48 +00:00
import './notifications.css';
import { memo } from 'preact/compat';
2022-12-10 09:14:48 +00:00
import { useEffect, useRef, useState } from 'preact/hooks';
import { useSnapshot } from 'valtio';
import Icon from '../components/icon';
import Link from '../components/link';
2022-12-10 09:14:48 +00:00
import Loader from '../components/loader';
2023-04-26 05:09:44 +00:00
import NavMenu from '../components/nav-menu';
import Notification from '../components/notification';
import { api } from '../utils/api';
import groupNotifications from '../utils/group-notifications';
2023-03-01 12:07:22 +00:00
import niceDateTime from '../utils/nice-date-time';
import states, { saveStatus } from '../utils/states';
import useScroll from '../utils/useScroll';
2022-12-10 09:14:48 +00:00
import useTitle from '../utils/useTitle';
2022-12-19 16:11:55 +00:00
const LIMIT = 30; // 30 is the maximum limit :(
2022-12-10 09:14:48 +00:00
2022-12-16 05:27:04 +00:00
function Notifications() {
useTitle('Notifications', '/notifications');
2023-02-18 16:05:46 +00:00
const { masto, instance } = api();
2022-12-10 09:14:48 +00:00
const snapStates = useSnapshot(states);
const [uiState, setUIState] = useState('default');
const [showMore, setShowMore] = useState(false);
const [onlyMentions, setOnlyMentions] = useState(false);
const scrollableRef = useRef();
const { nearReachEnd, scrollDirection, reachStart, nearReachStart } =
useScroll({
2023-02-28 13:56:41 +00:00
scrollableRef,
});
const hiddenUI = scrollDirection === 'end' && !nearReachStart;
2022-12-10 09:14:48 +00:00
console.debug('RENDER Notifications');
const notificationsIterator = useRef();
2022-12-10 09:14:48 +00:00
async function fetchNotifications(firstLoad) {
2023-02-12 09:38:50 +00:00
if (firstLoad || !notificationsIterator.current) {
// Reset iterator
notificationsIterator.current = masto.v1.notifications.list({
limit: LIMIT,
});
}
const allNotifications = await notificationsIterator.current.next();
2023-02-12 09:38:50 +00:00
const notifications = allNotifications.value;
if (notifications?.length) {
notifications.forEach((notification) => {
saveStatus(notification.status, instance, {
skipThreading: true,
});
});
2023-02-12 09:38:50 +00:00
const groupedNotifications = groupNotifications(notifications);
if (firstLoad) {
2023-02-12 09:38:50 +00:00
states.notificationsLast = notifications[0];
states.notifications = groupedNotifications;
} else {
states.notifications.push(...groupedNotifications);
2022-12-10 09:14:48 +00:00
}
}
2023-02-12 09:38:50 +00:00
states.notificationsShowNew = false;
2022-12-10 09:14:48 +00:00
states.notificationsLastFetchTime = Date.now();
return allNotifications;
}
const loadNotifications = (firstLoad) => {
setUIState('loading');
(async () => {
try {
const { done } = await fetchNotifications(firstLoad);
setShowMore(!done);
setUIState('default');
} catch (e) {
setUIState('error');
}
})();
};
useEffect(() => {
loadNotifications(true);
}, []);
useEffect(() => {
if (reachStart) {
loadNotifications(true);
}
}, [reachStart]);
2022-12-10 09:14:48 +00:00
useEffect(() => {
if (nearReachEnd && showMore) {
loadNotifications();
}
}, [nearReachEnd, showMore]);
2022-12-10 09:14:48 +00:00
const todayDate = new Date();
const yesterdayDate = new Date(todayDate - 24 * 60 * 60 * 1000);
let currentDay = new Date();
const showTodayEmpty = !snapStates.notifications.some(
(notification) =>
new Date(notification.createdAt).toDateString() ===
todayDate.toDateString(),
2022-12-10 09:14:48 +00:00
);
2022-12-10 09:14:48 +00:00
return (
2022-12-30 12:37:57 +00:00
<div
id="notifications-page"
class="deck-container"
ref={scrollableRef}
tabIndex="-1"
>
<div class={`timeline-deck deck ${onlyMentions ? 'only-mentions' : ''}`}>
2022-12-24 09:54:42 +00:00
<header
hidden={hiddenUI}
2023-02-15 03:20:48 +00:00
onClick={(e) => {
if (!e.target.closest('a, button')) {
scrollableRef.current?.scrollTo({ top: 0, behavior: 'smooth' });
}
2022-12-24 09:54:42 +00:00
}}
2023-04-14 07:46:11 +00:00
class={uiState === 'loading' ? 'loading' : ''}
2022-12-24 09:54:42 +00:00
>
2023-02-08 11:11:33 +00:00
<div class="header-grid">
<div class="header-side">
2023-04-26 05:09:44 +00:00
<NavMenu />
2023-02-08 11:11:33 +00:00
<Link to="/" class="button plain">
2023-04-06 11:32:26 +00:00
<Icon icon="home" size="l" alt="Home" />
2023-02-08 11:11:33 +00:00
</Link>
</div>
<h1>Notifications</h1>
<div class="header-side">
2023-04-14 07:46:11 +00:00
{/* <Loader hidden={uiState !== 'loading'} /> */}
2023-02-08 11:11:33 +00:00
</div>
2022-12-10 09:14:48 +00:00
</div>
{snapStates.notificationsShowNew && uiState !== 'loading' && (
<button
2023-02-23 07:56:58 +00:00
class="updates-button shiny-pill"
type="button"
onClick={() => {
loadNotifications(true);
scrollableRef.current?.scrollTo({
top: 0,
behavior: 'smooth',
});
}}
>
<Icon icon="arrow-up" /> New notifications
</button>
)}
2022-12-10 09:14:48 +00:00
</header>
<div id="mentions-option">
<label>
<input
type="checkbox"
checked={onlyMentions}
onChange={(e) => {
setOnlyMentions(e.target.checked);
}}
/>{' '}
Only mentions
</label>
</div>
<h2 class="timeline-header">Today</h2>
{showTodayEmpty && !!snapStates.notifications.length && (
<p class="ui-state insignificant">
{uiState === 'default' ? "You're all caught up." : <>&hellip;</>}
</p>
)}
2022-12-10 09:14:48 +00:00
{snapStates.notifications.length ? (
<>
{snapStates.notifications.map((notification) => {
if (onlyMentions && notification.type !== 'mention') {
return null;
}
const notificationDay = new Date(notification.createdAt);
const differentDay =
notificationDay.toDateString() !== currentDay.toDateString();
if (differentDay) {
currentDay = notificationDay;
}
// if notificationDay is yesterday, show "Yesterday"
// if notificationDay is before yesterday, show date
const heading =
notificationDay.toDateString() === yesterdayDate.toDateString()
? 'Yesterday'
2023-03-01 14:18:45 +00:00
: niceDateTime(currentDay, {
2023-03-01 12:07:22 +00:00
hideTime: true,
});
return (
<>
{differentDay && <h2 class="timeline-header">{heading}</h2>}
<Notification
2023-02-18 16:05:46 +00:00
instance={instance}
notification={notification}
key={notification.id}
/>
</>
);
})}
2022-12-10 09:14:48 +00:00
</>
) : (
<>
{uiState === 'loading' && (
<>
<ul class="timeline flat">
{Array.from({ length: 5 }).map((_, i) => (
<li class="notification skeleton">
<div class="notification-type">
<Icon icon="notification" size="xl" />
</div>
<div class="notification-content">
<p> </p>
</div>
</li>
))}
</ul>
</>
)}
{uiState === 'error' && (
<p class="ui-state">
Unable to load notifications
<br />
<br />
<button type="button" onClick={() => loadNotifications(true)}>
Try again
</button>
</p>
2022-12-10 09:14:48 +00:00
)}
</>
)}
{showMore && (
<button
type="button"
class="plain block"
disabled={uiState === 'loading'}
onClick={() => loadNotifications()}
style={{ marginBlockEnd: '6em' }}
>
{uiState === 'loading' ? <Loader abrupt /> : <>Show more&hellip;</>}
</button>
)}
</div>
</div>
);
}
export default memo(Notifications);